예제 #1
0
 public Euler(double dt_, Model myModel_)
     : base(dt_, myModel_)
 {
 }
예제 #2
0
 public Discretization(double dt_, Model myModel_)
 {
     this.dt=dt_;
     this.myModel = myModel_;
 }