| 882 | } |
| 883 | |
| 884 | std::string get_backend_string(backends backend) { |
| 885 | auto& backend_information = get_backend_information(); |
| 886 | std::map<backends, std::string>::const_iterator it; |
| 887 | it = backend_information.backend_name_map.find(backend); |
| 888 | if (it != backend_information.backend_name_map.end()) |
| 889 | return it->second; |
| 890 | else |
| 891 | return {""}; |
| 892 | } |
| 893 | |
| 894 | } /* namespace CoolProp */ |
| 895 |
no outgoing calls
no test coverage detected