| 6 | void computation_2() { std::this_thread::sleep_for(200ms); } |
| 7 | void computation_3() { std::this_thread::sleep_for(400ms); } |
| 8 | void computation_4() { std::this_thread::sleep_for(600ms); } |
| 9 | void computation_5() { std::this_thread::sleep_for(100ms); } |
| 10 | |
| 11 | int main() { |