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