| 2568 | } |
| 2569 | |
| 2570 | bool 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 | |
| 2579 | bool readSolutionFileIdDoubleIntLineOk(std::string& id, double& value, |
| 2580 | HighsInt& index, |