Beispiel #1
0
 //constructor
 protected Solvable(string s, UnitOpSystem aSystem) : base()
 {
     this.name            = s;
     this.unitOpSystem    = aSystem;
     this.solveController = aSystem.SequentialSolvingController;
     solveState           = SolveState.NotSolved;
 }
Beispiel #2
0
 protected UnitOperationSystem(string name)
 {
     this.name       = name;
     solveController = new SequentialSolvingController();
 }
Beispiel #3
0
 //persistence
 protected UnitOperationSystem(SerializationInfo info, StreamingContext context) : base(info, context)
 {
     solveController = new SequentialSolvingController();
 }
Beispiel #4
0
 protected virtual void RecallInitialization()
 {
     this.solveController = unitOpSystem.SequentialSolvingController;
 }
Beispiel #5
0
 //constructor
 protected Solvable(UnitOperationSystem aSystem)
     : base()
 {
     this.unitOpSystem    = aSystem;
     this.solveController = aSystem.SequentialSolvingController;
 }