Added solution to problem 35

This commit is contained in:
2021-06-02 17:23:32 -04:00
parent d2f863d2a6
commit 8e36887d49
6 changed files with 196 additions and 4 deletions

View File

@@ -42,7 +42,7 @@ std::string getBenchmarkResults(Problem* problem, double totalTime, unsigned int
//Variables
//Valid menu options
enum BENCHMARK_OPTIONS {RUN_SPECIFIC = 1, RUN_ALL_SHORT, RUN_ALL, BENCHMARK_EXIT, BENCHMARK_SIZE};
std::vector<unsigned int> tooLong = {5, 15, 23, 24, 29}; //The list of problems that take "too long" to run. (Over 1 second on my machine)
std::vector<unsigned int> tooLong = {5, 15, 23, 24, 29, 35}; //The list of problems that take "too long" to run. (Over 1 second on my machine)
//The driver function for the benchmark selection