mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-11 13:17:56 -05:00
This commit adds "Code Link" sections to documentation across various path planning modules, linking to relevant class and function APIs. Additionally, several class renaming changes were made, such as `Dijkstra` to `DijkstraPlanner` and `eta3_trajectory` to `Eta3SplineTrajectory`, to enhance naming consistency. Minor fixes include file restructuring and image renaming for the RRT module.
15 lines
263 B
Python
15 lines
263 B
Python
import random
|
|
|
|
import conftest
|
|
from PathPlanning.BatchInformedRRTStar import batch_informed_rrt_star as m
|
|
|
|
|
|
def test_1():
|
|
m.show_animation = False
|
|
random.seed(12345)
|
|
m.main(maxIter=10)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
conftest.run_this_test(__file__)
|