@@ -11,27 +11,40 @@ def test_data_analyst_constructor():
1111 _ = DataAnalyst ()
1212 assert True
1313
14+
1415def test_data_analyst_plot_dfs_one_pddl ():
1516 da = DataAnalyst ()
16- da .plot_dfs (domain = "pddl-examples/flip/domain.pddl" , problem = "pddl-examples/flip/problem.pddl" )
17+ da .plot_dfs (
18+ domain = "pddl-examples/flip/domain.pddl" ,
19+ problem = "pddl-examples/flip/problem.pddl" ,
20+ )
1721 assert True
1822
1923
2024def test_data_analyst_plot_bfs_one_pddl ():
2125 da = DataAnalyst ()
22- da .plot_bfs (domain = "pddl-examples/flip/domain.pddl" , problem = "pddl-examples/flip/problem.pddl" )
26+ da .plot_bfs (
27+ domain = "pddl-examples/flip/domain.pddl" ,
28+ problem = "pddl-examples/flip/problem.pddl" ,
29+ )
2330 assert True
2431
2532
2633def test_data_analyst_plot_dijkstra_one_pddl ():
2734 da = DataAnalyst ()
28- da .plot_dijkstra (domain = "pddl-examples/flip/domain.pddl" , problem = "pddl-examples/flip/problem.pddl" )
35+ da .plot_dijkstra (
36+ domain = "pddl-examples/flip/domain.pddl" ,
37+ problem = "pddl-examples/flip/problem.pddl" ,
38+ )
2939 assert True
3040
3141
3242def test_data_analyst_plot_astar_h_goal_count_one_pddl ():
3343 da = DataAnalyst ()
34- da .plot_astar_data (domain = "pddl-examples/flip/domain.pddl" , problem = "pddl-examples/flip/problem.pddl" )
44+ da .plot_astar_data (
45+ domain = "pddl-examples/flip/domain.pddl" ,
46+ problem = "pddl-examples/flip/problem.pddl" ,
47+ )
3548 assert True
3649
3750
@@ -98,22 +111,29 @@ def test_comparative_no_dfs():
98111def test_comparative_one_pddl ():
99112 da = DataAnalyst ()
100113 da .comparative_data_plot (
101- dfs = False , bfs = False , domain = "pddl-examples/flip/domain.pddl" , problem = "pddl-examples/flip/problem.pddl"
114+ dfs = False ,
115+ bfs = False ,
116+ domain = "pddl-examples/flip/domain.pddl" ,
117+ problem = "pddl-examples/flip/problem.pddl" ,
102118 )
103119 assert True
104120
105121
106122def test_comparative_use_data_json ():
107123 da = DataAnalyst ()
108124 da .comparative_data_plot (
109- domain = "pddl-examples/flip/domain.pddl" , problem = "pddl-examples/flip/problem.pddl" , collect_new_data = False
125+ domain = "pddl-examples/flip/domain.pddl" ,
126+ problem = "pddl-examples/flip/problem.pddl" ,
127+ collect_new_data = False ,
110128 )
111129 assert True
112130
113131
114132def test_comparative_zero_h ():
115133 da = DataAnalyst ()
116134 da .comparative_data_plot (
117- domain = "pddl-examples/flip/domain.pddl" , problem = "pddl-examples/flip/problem.pddl" , heuristic_key = "zero"
135+ domain = "pddl-examples/flip/domain.pddl" ,
136+ problem = "pddl-examples/flip/problem.pddl" ,
137+ heuristic_key = "zero" ,
118138 )
119139 assert True
0 commit comments