Skip to content

Latest commit

 

History

History
52 lines (30 loc) · 1.29 KB

DEBUG.md

File metadata and controls

52 lines (30 loc) · 1.29 KB

Paladinus: Debug

Paladinus provides a state-space debugger that shows the expanded states for every iteration of our algorithms. Our state-space debugger outputs a DOT file for every state expansion during the search.

For every iteration step, we our state-space debugger outputs the expanded states and their corresponding state-space. A DOT file corresponds to a state-space in an iteration step. For example:

- iteration\_1-statespace\_0;
- iteration\_1-statespace\_1;

- iteration\_2-statespace\_0;
- iteration\_2-statespace\_1;
- iteration\_2-statespace\_2;

...

State-spaces explored for Blocks-World-Original pb10.pddl:

iteration_1-statespace_0:

i0_s0

iteration_2-statespace_0:

i2_s0

iteration_2-statespace_1:

i2_s1

iteration_2-statespace_2:

i2_s2

iteration_2-statespace_3:

i2_s3

...

iteration_2-statespace_17.dot:

i2_s17

All State-spaces for pb10.pddl

You can find here the entire set of state-spaces for pb10.pddl.