Skip to content

Commit d6ac5b4

Browse files
committed
add informed_rrt_star code
1 parent 0b7a33b commit d6ac5b4

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed
-55 KB
Binary file not shown.
4.76 MB
Loading

tests/test_informed_rrt_star.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
from unittest import TestCase
2+
3+
from PathPlanning.InformedRRTStar import informed_rrt_star as m
4+
5+
print(__file__)
6+
7+
8+
class Test(TestCase):
9+
10+
def test1(self):
11+
m.show_animation = False
12+
m.main()

0 commit comments

Comments
 (0)