We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d2e075 commit e784790Copy full SHA for e784790
tests/test_elastic_bands.py
@@ -0,0 +1,14 @@
1
+import conftest
2
+import numpy as np
3
+from PathPlanning.ElasticBands.elastic_bands import ElasticBands
4
+
5
6
+def test_1():
7
+ path = np.load("PathPlanning/ElasticBands/points.npy")
8
+ obstacles = np.load("PathPlanning/ElasticBands/obstacles.npy")
9
+ elastic_bands = ElasticBands(path, obstacles)
10
+ elastic_bands.update_bubbles()
11
12
13
+if __name__ == "__main__":
14
+ conftest.run_this_test(__file__)
0 commit comments