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 6974655 commit d3d8f68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search/search_algorithms/lazy_search.cc
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ void LazySearch::generate_successors() {

SearchStatus LazySearch::fetch_next_state() {
if (open_list->empty()) {
log << "Completely explored state space -- no solution!" << endl;
log << "No solution - FAILED" << endl;
return FAILED;
}

Expand Down

0 comments on commit d3d8f68

Please sign in to comment.