19 lines
455 B
Python
19 lines
455 B
Python
from __builtins__ import *
|
|
from __utils__ import *
|
|
|
|
filename = "maze_test"
|
|
sim_unlocks = Unlocks
|
|
sim_items = {
|
|
Items.Weird_Substance: 100000
|
|
}
|
|
sim_globals = {}
|
|
seed = 11
|
|
speedup = 10
|
|
times = []
|
|
|
|
for i in range(2):
|
|
seed = i
|
|
run_time = simulate(filename, sim_unlocks, sim_items, sim_globals, seed, speedup)/300
|
|
times.append(run_time)
|
|
print("Simulation completed in ", sum(times), " seconds")
|
|
print("Average time per simulation: ", avg(times), " seconds") |