diff --git a/Examples/MPIInterpolationFMM.hpp b/Examples/MPIInterpolationFMM.hpp
index 6f2f46e189ce3098e15d0771d477d7d0fe7dae83..27dffbf3a68bc7f09af11be643693f255233c88a 100644
--- a/Examples/MPIInterpolationFMM.hpp
+++ b/Examples/MPIInterpolationFMM.hpp
@@ -253,7 +253,7 @@ int main(int argc, char* argv[])
       }
     //
     // FMM exectution  FFmmFarField FFmmNearField
-    algorithm->execute(FFmmFarField);
+    algorithm->execute();
     //
     algorithm->getMortonLeafDistribution(mortonLeafDistribution);
 
diff --git a/Examples/sharedMemoryInterpolationFMM.hpp b/Examples/sharedMemoryInterpolationFMM.hpp
index 164e1f32a5e919c114e39e2e9bbc427f0e838346..d597994b0ad449d2a6d257171121ee5723ff0fae 100644
--- a/Examples/sharedMemoryInterpolationFMM.hpp
+++ b/Examples/sharedMemoryInterpolationFMM.hpp
@@ -199,7 +199,7 @@ int main(int argc, char* argv[])
 
       }
     //
-    algorithm->execute(FFmmFarField);   // Here the call of the FMM algorithm
+    algorithm->execute();   // Here the call of the FMM algorithm
     //
     time.tac();
     std::cout << "Timers Far Field \n"