diff --git a/test/common/geometry/test_graham_convex_hull.cc b/test/common/geometry/test_graham_convex_hull.cc index 150dd4015bc82e6977f6d36e6d1153c13e54b955..5a663e4e41c51845c9fe60725af7d08f2d1186fe 100644 --- a/test/common/geometry/test_graham_convex_hull.cc +++ b/test/common/geometry/test_graham_convex_hull.cc @@ -13,6 +13,7 @@ #include <dune/common/timer.hh> #include <dumux/common/math.hh> +#include <dumux/common/geometry/triangulation.hh> #include <dumux/common/geometry/grahamconvexhull.hh> #include <test/common/geometry/writetriangulation.hh> @@ -115,7 +116,7 @@ int main(int argc, char* argv[]) try writeVTKPolyData(convexHullPoints, "convexhull"); Dune::Timer timer2; - auto triangles = Dumux::triangulateConvexHull(convexHullPoints); + auto triangles = Dumux::triangulate<2, 3>(convexHullPoints); std::cout << "Computed triangulation of convex hull with " << convexHullPoints.size() << " points in " << timer2.elapsed() << " seconds." << std::endl;