Skip to content

Commit 5412df7

Browse files
#2693 default value shouldbe true
1 parent 8c235c4 commit 5412df7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/OSPSuite.Core/Domain/SolverSettingsFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public SolverSettings Create(string solverName)
3939

4040
public void AddCheckNegativeValuesParameter(SolverSettings solverSettings)
4141
{
42-
solverSettings.Add(newSimulationSolverParameter(Constants.Parameters.CHECK_FOR_NEGATIVE_VALUES, 0));
42+
solverSettings.Add(newSimulationSolverParameter(Constants.Parameters.CHECK_FOR_NEGATIVE_VALUES, 1));
4343
}
4444

4545
private IParameter newSimulationSolverParameter(string name, double value)

0 commit comments

Comments
 (0)