| 138 | return (fluid_string.find('[') != std::string::npos && fluid_string.find(']') != std::string::npos); |
| 139 | } |
| 140 | bool has_solution_concentration(const std::string& fluid_string) { |
| 141 | // If can find "-", expect mass fractions encoded as string |
| 142 | return (fluid_string.find('-') != std::string::npos && fluid_string.find('%') != std::string::npos); |
| 143 | } |
| 144 | |
| 145 | struct delim : std::numpunct<char> |
| 146 | { |
no outgoing calls
no test coverage detected