Auto Commit

This commit is contained in:
2020-03-31 01:41:13 -06:00
parent fe2ee738f5
commit 74af5ace34
9 changed files with 6 additions and 13 deletions

View File

@@ -10,7 +10,8 @@
int main(int argc, char* argv[])
{
int rank, size, citiesSize;
std::chrono::time_point<std::chrono::steady_clock> start, stop;
auto start = std::chrono::high_resolution_clock::now();
auto stop = std::chrono::high_resolution_clock::now();
long double lowestCost = 0;
MPI_Init(&argc, &argv);
MPI_Comm_rank(MCW, &rank);