Write a string to standard output, synchronized across all test runners
| 383 | |
| 384 | /// Write a string to standard output, synchronized across all test runners |
| 385 | void write_output(std::string output) { |
| 386 | Gecode::Support::Lock lock(output_mutex); |
| 387 | std::cout << output; |
| 388 | std::cout.flush(); |
| 389 | } |
| 390 | }; |
| 391 | |
| 392 | /** |