diff --git a/opm/simulators/linalg/PreconditionerFactory.hpp b/opm/simulators/linalg/PreconditionerFactory.hpp index 6a3d5ffde..e8015cbc8 100644 --- a/opm/simulators/linalg/PreconditionerFactory.hpp +++ b/opm/simulators/linalg/PreconditionerFactory.hpp @@ -157,7 +157,7 @@ private: // smootherArgs.overlap=SmootherArgs::vertex; // smootherArgs.overlap=SmootherArgs::none; // smootherArgs.overlap=SmootherArgs::aggregate; - smootherArgs.relaxationFactor = prm.get("relaxation", 0.9); + smootherArgs.relaxationFactor = prm.get("relaxation", 1.0); return smootherArgs; } @@ -175,7 +175,7 @@ private: // smootherArgs.overlap=SmootherArgs::vertex; // smootherArgs.overlap=SmootherArgs::none; // smootherArgs.overlap=SmootherArgs::aggregate; - smootherArgs.relaxationFactor = prm.get("relaxation", 0.9); + smootherArgs.relaxationFactor = prm.get("relaxation", 1.0); return smootherArgs; }