File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,9 +13,6 @@ def test_node_equality_cost():
1313 "pddl-examples/tsp/domain.pddl" , "pddl-examples/tsp/problem.pddl"
1414 )
1515 actions = apla .available_actions (apla .initial_state )
16- if not actions :
17- assert 0 == 1
18- return
1916 next_state = apla .transition (apla .initial_state , actions [0 ])
2017 next_node = Node (next_state , apla , heuristic_based = True )
2118 next_node_v2 = Node (next_state , apla )
@@ -31,9 +28,6 @@ def test_node_equality_no_cost():
3128 "pddl-examples/dinner/domain.pddl" , "pddl-examples/dinner/problem.pddl"
3229 )
3330 actions = apla .available_actions (apla .initial_state )
34- if not actions :
35- assert 0 == 1
36- return
3731 next_state = apla .transition (apla .initial_state , actions [0 ])
3832 next_node = Node (next_state , apla , heuristic_based = True )
3933 next_node_v2 = Node (next_state , apla )
You can’t perform that action at this time.
0 commit comments