We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07e7324 commit ed6e0cfCopy full SHA for ed6e0cf
1 file changed
tests/test_search.py
@@ -7,14 +7,16 @@
7
import coloredlogs
8
import sys
9
10
+
11
def test_searchDFS():
12
apla = AutomatedPlanner("data/domain.pddl", "data/problem.pddl")
13
dfs = DepthFirstSearch(apla)
- _,ct = dfs.search()
14
+ _, ct = dfs.search()
15
assert ct != 0
16
17
18
def test_searchBFS():
19
20
bfs = BreadthFirstSearch(apla)
- _,ct = bfs.search()
21
+ _, ct = bfs.search()
22
0 commit comments