As the title suggests, I need to compute the convex hull of a number of d-dimensional points (where the number of points is usually around 20 and d is around 50). I spent a good day or so reading the documentation and searching the net, but it seems everything is either outdated (still using convex_hull_d), or only concerns dimensions <= 3.
The documentation site redirects from "dD Convex Hulls and Delaunay Triangulations" to "dD Triangulation". My problem is that I can't find a simple implementation of a convex hull retrieval function there. Although I'm pretty sure this is most likely done in 1 line of code.
How can I compute the convex hull of a d-dimensional convex using CGAL?