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
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -100,11 +100,11 @@ Make sure you have a pddl-examples folder where you run your environment that co
100
100
from jupyddl import DataAnalyst
101
101
102
102
da = DataAnalyst()
103
-
da.plot_astar_data() # plots complexity statistics for all the problem.pddl/domain.pddl couples in the pddl-examples/ folder
103
+
da.plot_astar() # plots complexity statistics for all the problem.pddl/domain.pddl couples in the pddl-examples/ folder
104
104
105
-
da.plot_astar_data(problem="pddl-examples/flip/problem.pddl", domain="pddl-examples/flip/domain.pddl") # scatter complexity statistics for the provided pddl
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_data(heuristic_key="zero") # use h=0 instead of goal_count for your computation
107
+
da.plot_astar(heuristic_key="zero") # use h=0 instead of goal_count for your computation
0 commit comments