Hide keyboard shortcuts

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 

5 

6__all__ = ['run', 'help', 'mpi_run', 'inputregen'] 

7 

8__version__ = c.version 

9 

10 

11def run(opts): 

12 _main_run(False, opts) 

13 

14 

15def mpi_run(opts): 

16 ismpi(opts, False) 

17 

18 

19def help(arg='-h'): 

20 run(arg)