| 19 | void System(const std::string &filename); |
| 20 | |
| 21 | int main() |
| 22 | { |
| 23 | bool test_polytree = false;//true;// |
| 24 | srand((unsigned)time(0)); |
| 25 | DoBenchmark(1000, 7000, 1000, test_polytree); |
| 26 | //RecheckLastBenchmark(test_polytree); |
| 27 | |
| 28 | std::cout << std::endl; |
| 29 | //#ifdef _DEBUG |
| 30 | std::string s; |
| 31 | std::cout << "Press Enter to continue" << std::endl; |
| 32 | std::getline(std::cin, s); |
| 33 | //#endif |
| 34 | return 0; |
| 35 | } |
| 36 | |
| 37 | void RecheckLastBenchmark(bool use_polytree) |
| 38 | { |
nothing calls this directly
no test coverage detected