mirror of
https://gitlab.com/scemama/irpf90.git
synced 2024-11-19 12:32:22 +01:00
15 lines
241 B
Bash
Executable File
15 lines
241 B
Bash
Executable File
#!/usr/bin/python
|
|
|
|
import os
|
|
import sys
|
|
|
|
wd = os.path.abspath(os.path.dirname(__file__))
|
|
sys.path.insert(0,(wd+"/../src/"))
|
|
sys.path.insert(0,(wd+"/../share/irpf90/src/"))
|
|
|
|
def main():
|
|
import irpf90
|
|
import cProfile
|
|
cProfile.run('main()')
|
|
|