Esempio n. 1
0
 public InitialAssignment(Model model, SBase variable)
 {
     this.model = model;
     this.variable = variable;
 }
Esempio n. 2
0
 public AssignmentRule(Model model, SBase variable)
 {
     this.model = model;
     this.variable = variable; // check for null
 }
Esempio n. 3
0
 public EventAssignment(Model model, SBase variable)
 {
     this.model = model;
     this.variable = variable;
     // check variable exists in model.IdTable
     // and that it's not set to constant
 }
Esempio n. 4
0
 public RateRule(Model model, SBase variable)
 {
     this.model = model;
     this.variable = variable; // check for null
 }