diff --git a/src/myblockproblem.hh b/src/myblockproblem.hh
index 6e3bb6083bfae286e85fb693944b6702b9b56c55..1457c813ee9b650c69e2b3d10ae3205b2c969f23 100644
--- a/src/myblockproblem.hh
+++ b/src/myblockproblem.hh
@@ -121,7 +121,7 @@ class MyBlockProblem<ConvexProblemTypeTEMPLATE>::IterateObject {
       LocalVectorType ui_copy = ui;
 
       LocalVectorType correction;
-      for (size_t i = 1; i <= 5; ++i) {
+      for (size_t i = 1; i <= 10; ++i) { // FIXME: hardcoded value
         Dune::minimise(localJ, ui_copy, correction);
         ui_copy += correction;
       }