class TSPRowSolver extends MyObject
implements Runnable{
private int myRow = 0;
private Matrix costMat = null;
private Matrix totMat = null;
private Matrix dirMat = null;
private Thread t = null;
public TSPRowSolver(int row, Matrix cost,
Matrix tot, Matrix dir){
myRow = row;
costMat = cost;
totMat = tot;
dirMat = dir;
t = new Thread(this);
t.start();
}
Previous slide | Next slide | Back to first slide | View graphic version |