MCPcopy Create free account
hub / github.com/ERGO-Code/HiGHS / to_string

Function to_string

extern/catch/catch.hpp:12144–12152  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12142namespace Catch {
12143template <typename T>
12144std::string to_string(T const& t) {
12145#if defined(CATCH_CONFIG_CPP11_TO_STRING)
12146 return std::to_string(t);
12147#else
12148 ReusableStringStream rss;
12149 rss << t;
12150 return rss.str();
12151#endif
12152}
12153} // end namespace Catch
12154
12155// end catch_to_string.hpp

Callers 15

printConstraintInfoMethod · 0.85
preprocessLpMethod · 0.85
postprocessMethod · 0.85
highsTimeToStringFunction · 0.85
readModelFromFileMethod · 0.85
normaliseNamesFunction · 0.85
findModelObjectiveNameFunction · 0.85
elasticityFilterMethod · 0.85
validLinearObjectiveMethod · 0.85

Calls 1

strMethod · 0.80

Tested by

no test coverage detected