/trunk/Examples/python/performance/hierarchy_operator/runme.py
# · Python · 12 lines · 8 code · 3 blank · 1 comment · 1 complexity · ad3da7bd67df88a747f638d1e4975c15 MD5 · raw file
- #!/usr/bin/env
- import sys
- sys.path.append('..')
- import harness
- def proc (mod) :
- x = mod.H()
- for i in range(10000000) :
- x += i
- harness.run(proc)