Exemple #1
0
 public InitialAssignment(Model model, SBase variable)
 {
     this.model = model;
     this.variable = variable;
 }
Exemple #2
0
 public AssignmentRule(Model model, SBase variable)
 {
     this.model = model;
     this.variable = variable; // check for null
 }
Exemple #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
 }
Exemple #4
0
 public RateRule(Model model, SBase variable)
 {
     this.model = model;
     this.variable = variable; // check for null
 }