uncomment method in model_solver C#

This commit is contained in:
Laurent Perron
2023-11-04 19:40:58 +01:00
parent 86b9f58fd3
commit 56464545db

View File

@@ -77,10 +77,10 @@ public class ModelSolver
}
/** Sets the time limit for the solve in seconds. */
// public void SetTimeLimit(Duration limit)
// {
// helper_.SetTimeLimitInSeconds((double)limit.toMillis() / 1000.0);
// }
public void SetTimeLimitInSeconds(double limit)
{
helper_.SetTimeLimitInSeconds(limit);
}
/** Sets solver specific parameters as string. */
public void SetSolverSpecificParameters(String parameters)