示例#1
0
 public void AddValue(double time, double val)
 {
     TimeValueNode toAdd = new TimeValueNode(time, val);
     toAdd.next = head;
     head = toAdd;
 }
示例#2
0
 public Variable(string Name, Equation DiffEquation, double startingValue, double time)
 {
     this.Name = Name;
     this.DiffEquation = DiffEquation;
     head = new TimeValueNode(time, startingValue);
 }