0

I'm using this domain/problem with the fast-downward planner like this:

./fast-downward.py --plan-file plan.out ../test_domain.pddl ../test_problem.pddl

The issue here is that the output.sas contains hundreds of thousands of lines without a clear reference to the solution plan!

Here is the full output log of the planner:

$ ./fast-downward.py --plan-file plan.out ../test_domain.pddl ../test_problem.pddl
INFO     planner time limit: None
INFO     planner memory limit: None

INFO     Running translator.
INFO     translator stdin: None
INFO     translator time limit: None
INFO     translator memory limit: None
INFO     translator command line string: /usr/bin/python3 /media/belal/WD//Planning/downward/builds/release/bin/translate/translate.py ../test_domain.pddl ../test_problem.pddl --sas-file output.sas
Parsing...
Parsing: [0.000s CPU, 0.001s wall-clock]
Normalizing task... [0.000s CPU, 0.000s wall-clock]
Instantiating...
Generating Datalog program... [0.000s CPU, 0.000s wall-clock]
Normalizing Datalog program...
Normalizing Datalog program: [0.000s CPU, 0.001s wall-clock]
Preparing model... [0.000s CPU, 0.000s wall-clock]
Generated 9 rules.
Computing model... [0.000s CPU, 0.000s wall-clock]
73 relevant atoms
28 auxiliary atoms
101 final queue length
157 total queue pushes
Completing instantiation... [0.000s CPU, 0.001s wall-clock]
Instantiating: [0.000s CPU, 0.003s wall-clock]
Computing fact groups...
Finding invariants...
5 initial candidates
Finding invariants: [0.000s CPU, 0.001s wall-clock]
Checking invariant weight... [0.000s CPU, 0.000s wall-clock]
Instantiating groups... [0.000s CPU, 0.000s wall-clock]
Collecting mutex groups... [0.000s CPU, 0.000s wall-clock]
Choosing groups...
4 uncovered facts
Choosing groups: [0.000s CPU, 0.000s wall-clock]
Building translation key... [0.000s CPU, 0.000s wall-clock]
Computing fact groups: [0.000s CPU, 0.001s wall-clock]
Building STRIPS to SAS dictionary... [0.000s CPU, 0.000s wall-clock]
Building dictionary for full mutex groups... [0.000s CPU, 0.000s wall-clock]
Building mutex information...
Building mutex information: [0.000s CPU, 0.000s wall-clock]
Translating task...
Processing axioms...
Simplifying axioms... [0.000s CPU, 0.000s wall-clock]
Translator axioms removed by simplifying: 0
Computing negative axioms... [0.000s CPU, 0.000s wall-clock]
Processing axioms: [0.000s CPU, 0.000s wall-clock]
Translating task: [0.000s CPU, 0.001s wall-clock]
24 effect conditions simplified
0 implied preconditions added
Detecting unreachable propositions...
0 operators removed
0 axioms removed
2 propositions removed
Detecting unreachable propositions: [0.000s CPU, 0.000s wall-clock]
Reordering and filtering variables...
6 of 6 variables necessary.
4 of 6 mutex groups necessary.
24 of 24 operators necessary.
0 of 0 axiom rules necessary.
Reordering and filtering variables: [0.000s CPU, 0.000s wall-clock]
Translator variables: 6
Translator derived variables: 0
Translator facts: 16
Translator goal facts: 2
Translator mutex groups: 4
Translator total mutex groups size: 12
Translator operators: 24
Translator axioms: 0
Translator task size: 204
Translator peak memory: 31884 KB
Writing output... [0.000s CPU, 0.000s wall-clock]
Done! [0.000s CPU, 0.007s wall-clock]
translate exit code: 0

INFO     Running search (release).
search needs --alias, --portfolio, or search options

Can you please tell me how can I interpret the generated plan?

Bilal
  • 105
  • 5
  • Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. – Community Jun 30 '22 at 03:01

1 Answers1

2

Fun domain!

You shouldn't have to be parsing the FD output for the plan. Just use --plan-file plan.out as a command-line option to write the plan to the plan.out file. Chances are that it's already creating a file for you locally and you may not have noticed.

haz
  • 191
  • 2
  • Can you post the command line you're using? – haz Jul 01 '22 at 10:58
  • Aye, but what's the actual command and what files exist after running it? – haz Jul 03 '22 at 21:21
  • I have added more details to the question, I hope it will be clearer now, note that I'm not getting any plan: neither plan.out nor the default plan name! – Bilal Jul 04 '22 at 06:57
  • it turns out that I didn't specify the type of search algortihm `--search "astar(lmcut())"` for example. – Bilal Jul 04 '22 at 07:24
  • 1
    Yep, that's the issue. You can run it with `--show-aliases` to see the `--alias` options. Quite often that's how it's run. – haz Jul 05 '22 at 12:02