| 3 | using namespace std::chrono_literals; |
| 4 | |
| 5 | void computation_1() { std::this_thread::sleep_for(300ms); } |
| 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); } |