Beispiel #1
0
 public DifferentialsSolver(TransportTask task)
 {
     this.task       = task.clone();
     this.workedArea = this.task.clone();
 }
Beispiel #2
0
 public MinElementSolver(TransportTask task)
 {
     this.task = task.clone();
 }
Beispiel #3
0
 public VogelApproximationSolver(TransportTask task)
 {
     this.task = task.clone();
 }
Beispiel #4
0
 public NorthWestCornerSolver(TransportTask task)
 {
     this.task = task.clone();
 }