├── .gitignore ├── EC ├── agent.py ├── automatic_control_GRAIC.py ├── t3_collision.txt ├── waypoints │ ├── shanghai_intl_circuit │ ├── t1_triple │ ├── t2_triple │ ├── t3 │ └── t4 └── wrapper.py ├── README.md ├── agent.py ├── automatic_control_GRAIC.py ├── scenario.py ├── waypoints ├── shanghai_intl_circuit ├── t1_triple ├── t2_triple ├── t3 └── t4 └── wrapper.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoPGRI/Race/HEAD/.gitignore -------------------------------------------------------------------------------- /EC/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoPGRI/Race/HEAD/EC/agent.py -------------------------------------------------------------------------------- /EC/automatic_control_GRAIC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoPGRI/Race/HEAD/EC/automatic_control_GRAIC.py -------------------------------------------------------------------------------- /EC/t3_collision.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoPGRI/Race/HEAD/EC/t3_collision.txt -------------------------------------------------------------------------------- /EC/waypoints/shanghai_intl_circuit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoPGRI/Race/HEAD/EC/waypoints/shanghai_intl_circuit -------------------------------------------------------------------------------- /EC/waypoints/t1_triple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoPGRI/Race/HEAD/EC/waypoints/t1_triple -------------------------------------------------------------------------------- /EC/waypoints/t2_triple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoPGRI/Race/HEAD/EC/waypoints/t2_triple -------------------------------------------------------------------------------- /EC/waypoints/t3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoPGRI/Race/HEAD/EC/waypoints/t3 -------------------------------------------------------------------------------- /EC/waypoints/t4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoPGRI/Race/HEAD/EC/waypoints/t4 -------------------------------------------------------------------------------- /EC/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoPGRI/Race/HEAD/EC/wrapper.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoPGRI/Race/HEAD/README.md -------------------------------------------------------------------------------- /agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoPGRI/Race/HEAD/agent.py -------------------------------------------------------------------------------- /automatic_control_GRAIC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoPGRI/Race/HEAD/automatic_control_GRAIC.py -------------------------------------------------------------------------------- /scenario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoPGRI/Race/HEAD/scenario.py -------------------------------------------------------------------------------- /waypoints/shanghai_intl_circuit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoPGRI/Race/HEAD/waypoints/shanghai_intl_circuit -------------------------------------------------------------------------------- /waypoints/t1_triple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoPGRI/Race/HEAD/waypoints/t1_triple -------------------------------------------------------------------------------- /waypoints/t2_triple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoPGRI/Race/HEAD/waypoints/t2_triple -------------------------------------------------------------------------------- /waypoints/t3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoPGRI/Race/HEAD/waypoints/t3 -------------------------------------------------------------------------------- /waypoints/t4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoPGRI/Race/HEAD/waypoints/t4 -------------------------------------------------------------------------------- /wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoPGRI/Race/HEAD/wrapper.py --------------------------------------------------------------------------------