Files @ 4eb46a5b9c2b
Branch filter:

Location: OneEye/src/benchmark.py

Laman
Sansa board detection module
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()""")