From 94d09563e5481130ad67208ead26d3baa284907a Mon Sep 17 00:00:00 2001
From: Serhii Yaskovets <yaskovet@mpi-cbg.de>
Date: Thu, 12 Oct 2023 11:19:16 +0200
Subject: [PATCH] Fix Closest-point sphere redistancing example

---
 example/Numerics/Closest_point/0_sphere_redistancing/main.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/example/Numerics/Closest_point/0_sphere_redistancing/main.cpp b/example/Numerics/Closest_point/0_sphere_redistancing/main.cpp
index dc79e3055..c8b218c1d 100644
--- a/example/Numerics/Closest_point/0_sphere_redistancing/main.cpp
+++ b/example/Numerics/Closest_point/0_sphere_redistancing/main.cpp
@@ -158,7 +158,7 @@ int main(int argc, char* argv[])
     estimateClosestPoint<phi, cp, POLY_ORDER>(gdist, 3.0);
 
     // Redistance Levelset - This would try to get the SDF based on CP estimate.
-    reinitializeLS<phi, cp, POLY_ORDER>(gdist, 3.0);
+    reinitializeLS<phi, cp>(gdist, 3.0);
 
     // Compute the errors
     estimateErrorInReinit(gdist, params);
-- 
GitLab