Skip to content

Commit

Permalink
improve log message.
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonDold authored Oct 4, 2023
1 parent d3d8f68 commit 04ec940
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search/search_algorithms/eager_search.cc
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ SearchStatus EagerSearch::step() {
optional<SearchNode> node;
while (true) {
if (open_list->empty()) {
log << "Completely explored state space -- no solution!" << endl;
log << "No solution - FAILED" << endl;
return FAILED;
}
StateID id = open_list->remove_min();
Expand Down

0 comments on commit 04ec940

Please sign in to comment.