Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Graph class and add basic search algorithms #35

Merged
merged 15 commits into from
May 11, 2024
Prev Previous commit
Next Next commit
Fix typo
  • Loading branch information
eholum committed May 10, 2024
commit e843e4bdf4d9808dbd4f3e6360423aebac659272
2 changes: 1 addition & 1 deletion test/planning/test_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def test_str_and_parse():
assert edgeAB == Edge.parse(eAB)


def atest_save_and_load():
def test_save_and_load():
nodeA = Node([1.0, 1.0], cost=1.0)
nodeB = Node([1.0, 2.0], cost=1.0)
edgeAB = Edge(nodeA, nodeB, 1.0)
Expand Down