Beispiel #1
0
        public LPModel(LPModel otherModel)
        {
            _constraint = new List<LPConstraint>(otherModel.GetConstraint);

            GoalKind = otherModel.GoalKind;
            Objective = otherModel.Objective;
            Name = otherModel.Name;
        }
 public MicrosoftSolverFoundation(LPModel model)
 {
     _dataModel = new LPModel(model);
 }
 public LPReportWindow(LPModel innerModel)
 {
     InitializeComponent();
     _model = new LPModel(innerModel);
 }