| 83 | MPI_Comm adiak_comm; // Dedicated Adiak communicator. |
| 84 | |
| 85 | std::vector<std::string> split(std::string const str, |
| 86 | std::string const regex_str) |
| 87 | { |
| 88 | std::regex regexz(regex_str); |
| 89 | std::vector<std::string> list( |
| 90 | std::sregex_token_iterator(str.begin(), str.end(), regexz, -1), |
| 91 | std::sregex_token_iterator()); |
| 92 | return list; |
| 93 | } |
| 94 | |
| 95 | std::string as_lowercase(std::string str) |
| 96 | { |
no test coverage detected