swig/Examples/python/performance/hierarchy_operator/runme.py
2014-02-16 17:30:41 +00:00

10 lines
147 B
Python

import sys
sys.path.append('..')
import harness
def proc (mod) :
x = mod.H()
for i in range(10000000) :
x += i
harness.run(proc)