You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[issue1190] Update documentation on the Fast Downward website.
The online documentation for Fast Downward has been updated.
Especially the steps for getting started with Fast Downward and running
the planner should be clearer now.
- The PDDL task is translated into a SAS+ task internally without the need to explicitly call the `translate` component.
40
+
Instead of a PDDL task a SAS+ translator output file could be given as input. In this case the translation step is omitted.
41
+
- Giving the domain file as input is optional.
42
+
In case no domain file is specified, the component will search for a file called `domain.pddl` located in the same directory as the task file.
43
+
-`<some-search-algorithm>` can be any of the [search algorithms](search/SearchAlgorithm.md) with corresponding `<algorithm-parameters>` as input.
44
+
- Search component options can be specified anywhere after the input files.
45
+
Search component options following translator component options need to first be escaped with the `--search-options` flag.
46
+
47
+
### Example
48
+
49
+
The following example is a recommended search algorithm configuration:
50
+
[A* algorithm](search/SearchAlgorithm/#a_search_eager) with the [LM-cut heuristic](search/Evaluator/#landmark-cut_heuristic), which can be run as follows:
-[VAL](https://github.com/KCL-Planning/VAL) must be available locally and added to the PATH (see [Plan Validator](https://github.com/aibasel/downward/blob/main/BUILD.md#optional-plan-validator)).
100
+
- The search algorithm must be specified (see [Search component](#search_component)).
101
+
102
+
## Exit codes
103
+
104
+
The driver exits with 0 if no errors are encountered. Otherwise, it
105
+
returns the exit code of the first component that failed (cf. [documentation of
106
+
exit codes](exit-codes.md)).
107
+
30
108
31
109
## Different builds
32
110
@@ -45,11 +123,6 @@ whether to do a debug or release build and creates subdirectories in the
45
123
output folder. Use the full path to the binaries as the value of
0 commit comments