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

Function readSolutionFileIdIgnoreLineOk

highs/lp_data/HighsLpUtils.cpp:2563–2568  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2561}
2562
2563bool readSolutionFileIdIgnoreLineOk(std::string& id, std::ifstream& in_file) {
2564 if (in_file.eof()) return false;
2565 in_file >> id; // Id
2566 in_file.ignore(kMaxLineLength, '\n');
2567 return true;
2568}
2569
2570bool readSolutionFileIdDoubleLineOk(std::string& id, double& value,
2571 std::ifstream& in_file) {

Callers 1

readSolutionFileFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected