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

Function readSolutionFileIdDoubleLineOk

highs/lp_data/HighsLpUtils.cpp:2570–2577  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2568}
2569
2570bool readSolutionFileIdDoubleLineOk(std::string& id, double& value,
2571 std::ifstream& in_file) {
2572 if (in_file.eof()) return false;
2573 in_file >> id; // Id
2574 if (in_file.eof()) return false;
2575 in_file >> value; // double value
2576 return true;
2577}
2578
2579bool readSolutionFileIdDoubleIntLineOk(std::string& id, double& value,
2580 HighsInt& index,

Callers 1

readSolutionFileFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected