Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1from mango.mango import _main_run
2from mango.constants import c
3from mango.io import inputregen
4from mango.multiproc import ismpi
6__all__ = ['run', 'help', 'mpi_run', 'inputregen']
8__version__ = c.version
11def run(opts):
12 _main_run(False, opts)
15def mpi_run(opts):
16 ismpi(opts, False)
19def help(arg='-h'):
20 run(arg)