Ejemplo n.º 1
0
 public ProductionSolver()
 {
     this.solver       = GoogleSolver.Create();
     this.objective    = solver.Objective();
     this.allVariables = new Dictionary <object, Variable>();
     this.nodes        = new List <ProductionNode>();
 }