示例#1
0
文件: Model.cs 项目: dorchard/mucell
 public InitialAssignment(Model model, SBase variable)
 {
     this.model = model;
     this.variable = variable;
 }
示例#2
0
文件: Model.cs 项目: dorchard/mucell
 public AssignmentRule(Model model, SBase variable)
 {
     this.model = model;
     this.variable = variable; // check for null
 }
示例#3
0
文件: Model.cs 项目: dorchard/mucell
 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
 }
示例#4
0
文件: Model.cs 项目: dorchard/mucell
 public RateRule(Model model, SBase variable)
 {
     this.model = model;
     this.variable = variable; // check for null
 }