Fix was pushed to my fixes repository:
https://bitbucket.org/batman/downward-fixes
under branch
issue381
This is the diff of the change:
--- a/src/search/enforced_hill_climbing_search.cc Tue Jun 11 12:47:36 2013
+0200
+++ b/src/search/enforced_hill_climbing_search.cc Mon Jun 17 16:00:12 2013
+0300
@@ -65,12 +65,16 @@
SearchNode node = search_space.get_node(current_state);
evaluate(node.get_state(), NULL, node.get_state());
+ if (heuristic->is_dead_end()) {
+ cout << "Initial state is a dead end, no solution" << endl;
+ if (heuristic->dead_ends_are_reliable())
+ exit(EXIT_UNSOLVABLE);
+ else
+ exit(EXIT_UNSOLVED_INCOMPLETE);
+ }
+
search_progress.get_initial_h_values();
- if (heuristic->is_dead_end()) {
- cout << "Initial state is a dead end, no solution" << endl;
- return;
- }
current_h = heuristic->get_heuristic();
node.open_initial(current_h);
|