Issue83

Title bound for iterated search ignores action costs
Priority bug Status resolved
Superseder Nosy List erez, gabi, malte, silvia
Assigned To Keywords
Optional summary

Created on 2010-03-18.08:59:05 by malte, last changed by erez.

Messages
msg282 (view) Author: erez Date: 2010-03-18.16:31:49
Fixed
msg281 (view) Author: malte Date: 2010-03-18.08:59:05
The iterative search code in planner.cc/main looks like this:

        if (engine->found_solution()) {
            save_plan(engine->get_plan());
            wastar_bound = engine->get_plan().size();
        } else {
            iterative_search = false;
        }

The line
            wastar_bound = engine->get_plan().size();
is fine for unit-cost problems, but in general this should be the total cost of
the plan, not its length.
History
Date User Action Args
2010-03-18 16:31:49erezsetstatus: chatting -> resolved
messages: + msg282
2010-03-18 08:59:05maltecreate