Currently, the planner allows duplicate variables in patterns both in debug and release mode:
./fast-downward.py --debug ../benchmarks/gripper/prob01.pddl --search "astar(cpdbs(manual_patterns([[0, 0]])))"
./fast-downward.py --debug ../benchmarks/gripper/prob01.pddl --search "astar(pdb(manual_pattern([0, 0])))"
./fast-downward.py ../benchmarks/gripper/prob01.pddl --search "astar(cpdbs(manual_patterns([[0, 0]])))"
All invocations remove the duplicate variable (in the ctor of PDB), print a warning to stdout and successfully find a
plan. I think it would be better to abort with an input error in this case or at least print the warning to stderr.
|