| 2561 | } |
| 2562 | |
| 2563 | bool 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 | |
| 2570 | bool readSolutionFileIdDoubleLineOk(std::string& id, double& value, |
| 2571 | std::ifstream& in_file) { |