Files @ 7cb01d4080c9
Branch filter:

Location: OneEye/src/benchmark.py - annotation

Laman
a hinted neural network (failed)
import sys
import cProfile

from tests.testEngine import TestTransitions
from tests.testStatebag import TestStateBag


arg=sys.argv[1]

if arg=="engine":
	t=TestTransitions()
	cProfile.run(r"""t.testReal()""")
elif arg=="statebag":
	t=TestStateBag()
	cProfile.run(r"""t.testNoise()""")