| 2521 | } |
| 2522 | |
| 2523 | bool readSolutionFileIgnoreLineOk(std::ifstream& in_file) { |
| 2524 | if (in_file.eof()) return false; |
| 2525 | in_file.ignore(kMaxLineLength, '\n'); |
| 2526 | return true; |
| 2527 | } |
| 2528 | |
| 2529 | bool readSolutionFileKeywordLineOk(std::string& keyword, |
| 2530 | std::ifstream& in_file) { |