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
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -104,15 +104,15 @@ da.plot_astar() # plots complexity statistics for all the problem.pddl/domain.pd
104
104
105
105
da.plot_astar(problem="pddl-examples/flip/problem.pddl", domain="pddl-examples/flip/domain.pddl") # scatter complexity statistics for the provided pddl
106
106
107
-
da.plot_astar(heuristic_key="zero") # use h=0 instead of goal_count for your computation
107
+
da.plot_astar(heuristic_key="basic/zero") # use h=0 instead of goal_count for your computation
108
108
109
109
da.plot_dfs() # same as astar
110
110
111
111
da.comparative_data_plot() # Run all planners on the pddl-examples folder and plots them on the same figure, data is stored in a data.json file
112
112
113
113
da.comparative_data_plot(astar=False) # Exclude astar from the comparative plot
114
114
115
-
da.comparative_data_plot(heuristic_key="zero") # use zero heuristic for h based planners
115
+
da.comparative_data_plot(heuristic_key="basic/zero") # use zero heuristic for h based planners
116
116
117
117
da.comparative_data_plot(collect_new_data=False) # uses data.json to plot the data
0 commit comments