-
Notifications
You must be signed in to change notification settings - Fork 0
/
run.py
54 lines (37 loc) · 890 Bytes
/
run.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
"""
This is the main file for running all algorithms and displaying results.
All files written in python 3
See ReadMe.txt for help
"""
from partA import*
from partB import*
import numpy as np
def main():
"""
File path to ds1 in top of grid.py
"""
# Run all the requirements for part A
##############################
# Question 3
# runs naive A*
question_3()
##############################
# Question 5
# runs online A*
question_5()
##############################
# Question 7
# runs online A* on fine grid
question_7()
# Run all the requirements for part B
##############################
# Question 9
question_9()
##############################
# Question 10
question_10()
##############################
# Question 1
question_11()
if __name__ == "__main__":
main()