Issue381

Title ehc(ff()) crashes when initial state is a dead end
Priority bug Status resolved
Superseder Nosy List erez, florian, jendrik, malte
Assigned To erez Keywords
Optional summary

Created on 2013-05-31.14:10:13 by florian, last changed by jendrik.

Messages
msg2493 (view) Author: jendrik Date: 2013-06-19.10:04:55
Merged. Thanks Erez!
msg2492 (view) Author: erez Date: 2013-06-18.14:40:09
Jendrik - you should have read access now
msg2491 (view) Author: jendrik Date: 2013-06-18.14:00:18
Erez, can you give me access to your repo, please? Then I will merge the change.
msg2490 (view) Author: erez Date: 2013-06-17.16:02:58
Done
msg2489 (view) Author: malte Date: 2013-06-17.15:50:52
We have a function "exit_with" now that should be used instead (for more
consistent output). Can you change it to use this instead? Otherwise looks good
to me -- Florian or Jendrik, feel free to merge after the change if the diff
looks good to you, too.
msg2488 (view) Author: erez Date: 2013-06-17.15:00:40
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);
msg2477 (view) Author: erez Date: 2013-05-31.15:13:20
I'll take care of this
msg2476 (view) Author: florian Date: 2013-05-31.14:10:13
This happens for example with

./plan ../benchmarks/mystery/prob07.pddl --search "ehc(ff())"

The output is

[...]
Conducting Enforced Hill Climbing Search
(real) g-bound = 2147483647
Initializing FF heuristic...
Initializing additive heuristic...
Simplifying 5268 unary operators... done! [5268 unary operators]
Initial state is a dead end, no solution
Peak memory: 8192 KB
caught signal 11 -- exiting
Running single search parser

Instead of crashing, the planner should return an exit code of 4
(EXIT_UNSOLVABLE) if the heuristic guarantees the dead end or 5
(EXIT_UNSOLVED_INCOMPLETE) if it does not.
History
Date User Action Args
2013-06-19 10:04:55jendriksetstatus: reviewing -> resolved
messages: + msg2493
2013-06-18 14:40:09erezsetmessages: + msg2492
2013-06-18 14:00:18jendriksetmessages: + msg2491
2013-06-17 16:02:58erezsetmessages: + msg2490
2013-06-17 15:50:52maltesetmessages: + msg2489
2013-06-17 15:01:10erezsetstatus: chatting -> reviewing
2013-06-17 15:00:40erezsetmessages: + msg2488
2013-05-31 15:13:20erezsetstatus: unread -> chatting
assignedto: erez
messages: + msg2477
nosy: + erez
2013-05-31 14:10:13floriancreate