Fixed newline in output (TS)

이 커밋은 다음에 포함됨:
Jan Potocki
2020-01-20 19:22:07 +01:00
부모 01f2e91aac
커밋 0b6e9418f9
2개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
+1 -1
파일 보기
@@ -679,5 +679,5 @@ void Graph::travellingSalesmanTabuSearchEngine(Graph &graph, unsigned tabuSteps,
stopCounter = 0;
}
std::cout << std::endl;
//std::cout << std::endl;
}
+1
파일 보기
@@ -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;