| 15 | |
| 16 | |
| 17 | void rootPrint(qindex num) { |
| 18 | |
| 19 | if (getQuESTEnv().rank != 0) |
| 20 | return; |
| 21 | |
| 22 | std::cout << "\n\n>> set number of reported items to " << num; |
| 23 | |
| 24 | if (num == 0) |
| 25 | std::cout << " (which means report all)"; |
| 26 | |
| 27 | std::cout << "\n" << std::endl; // flush |
| 28 | } |
| 29 | |
| 30 | |
| 31 |
no test coverage detected