public string StartTsp(int MaxTime, string filename, bool isGenetic, int population) { //try //{ problem = TravelingSalesmanProblem.FromFile(filename); // create TravelingSalesmanProblem object switch (problem.Type) // type of nodes { case ProblemType.TSP: if (isGenetic == false) { status = new TSPSymetric(problem, MaxTime).SolveTSP(); } else { status = new TSPGenetic().SolveTSP(problem, MaxTime, population, null, false); } break; case ProblemType.ATSP: _matrixTable = new MatrixTable(filename); if (isGenetic == false) { status = new TSPAsymetric(MaxTime, _matrixTable).SolveTSP(); } else { status = new TSPGenetic().SolveTSP(null, MaxTime, population, _matrixTable.Matrix, true); } break; default: MessageBox.Show("Loaded file is not tsp/atsp file. returning."); return(status); } //} //catch (Exception) //{ // MessageBox.Show("Can't load file " + filename); //} return(status); }
public TSPAsymetric(int maxTimeInSeconds, MatrixTable matrixTable) { _maxTimeInSeconds = maxTimeInSeconds; _matrixTable = matrixTable; }