diff --git a/Graph.cpp b/Graph.cpp index f8c1def..413f50d 100755 --- a/Graph.cpp +++ b/Graph.cpp @@ -693,6 +693,4 @@ void Graph::travellingSalesmanTabuSearchEngine(Graph &graph, unsigned tabuSteps, // Reset licznika iteracji przed restartem stopCounter = 0; } - -std::cout << std::endl; } diff --git a/pea2plus.cpp b/pea2plus.cpp index a8079be..1b30fa4 100755 --- a/pea2plus.cpp +++ b/pea2plus.cpp @@ -448,6 +448,7 @@ int main(int argc, char *argv[]) cout << route.at(i) << '\t' << length << '\t' << distFromStart << endl; } + cout << endl; cout << "Dlugosc trasy: " << distFromStart << endl; cout << endl; cout << "Czas wykonania algorytmu [s]: " << clock.read() << endl;