コード例 #1
0
 internal SolverContext(string modelName)
 {
     Solver = new Solver(modelName);
     Assert.That(Solver.ModelName(), Is.EqualTo(modelName));
     Expressions = new List <IntExpr>();
     Constraints = new List <Constraint>();
     Monitors    = new List <SearchMonitor>();
 }