Updated how results are retrieved

This commit is contained in:
2020-07-20 00:53:08 -04:00
parent 22871b71e9
commit 2616dabe6d
67 changed files with 132 additions and 434 deletions

View File

@@ -120,7 +120,7 @@ void solveProblem(Problem* problem){
//Solve the problem
problem->solve();
//Print the results
std::cout << problem->getString()
std::cout << problem->getResults()
<< "\nIt took " << problem->getTime() << " to solve this problem.\n\n" << std::endl;
}