Ejemplo n.º 1
0
        public LPModel(LPModel otherModel)
        {
            _constraint = new List<LPConstraint>(otherModel.GetConstraint);

            GoalKind = otherModel.GoalKind;
            Objective = otherModel.Objective;
            Name = otherModel.Name;
        }
Ejemplo n.º 2
0
 public MicrosoftSolverFoundation(LPModel model)
 {
     _dataModel = new LPModel(model);
 }
Ejemplo n.º 3
0
 public LPReportWindow(LPModel innerModel)
 {
     InitializeComponent();
     _model = new LPModel(innerModel);
 }