mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-14 10:48:04 -05:00
* enable_mpc_test * enable_mpc_test * enable_mpc_test * enable_mpc_test * enable_mpc_test * enable_mpc_test * enable_mpc_test * enable_mpc_test
13 lines
329 B
Python
13 lines
329 B
Python
import conftest # Add root path to sys.path
|
|
import numpy as np
|
|
from PathPlanning.ProbabilisticRoadMap import probabilistic_road_map
|
|
|
|
|
|
def test1():
|
|
probabilistic_road_map.show_animation = False
|
|
probabilistic_road_map.main(rng=np.random.default_rng(1233))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
conftest.run_this_test(__file__)
|