Skip to content

Commit

Permalink
don't capture start and goals as part of solution
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinShetty committed May 22, 2024
1 parent 6bffc95 commit 4ee9a93
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ int main(int argc, char *argv[])
std::string line;
std::smatch m, results;
while (getline(solution_file, line)) {
// so we only process real solution lines
if(line.find(":(") == std::string::npos) continue;

auto iter = line.cbegin();
Config c;
while (iter < line.cend()) {
Expand Down

0 comments on commit 4ee9a93

Please sign in to comment.