├── .gitignore ├── LICENSE ├── README.md ├── examples ├── lazy.py ├── monte_carlo.py ├── simple.ork └── simple_plot.py ├── orhelper ├── __init__.py ├── _enums.py └── _orhelper.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentSys/orhelper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentSys/orhelper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentSys/orhelper/HEAD/README.md -------------------------------------------------------------------------------- /examples/lazy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentSys/orhelper/HEAD/examples/lazy.py -------------------------------------------------------------------------------- /examples/monte_carlo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentSys/orhelper/HEAD/examples/monte_carlo.py -------------------------------------------------------------------------------- /examples/simple.ork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentSys/orhelper/HEAD/examples/simple.ork -------------------------------------------------------------------------------- /examples/simple_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentSys/orhelper/HEAD/examples/simple_plot.py -------------------------------------------------------------------------------- /orhelper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentSys/orhelper/HEAD/orhelper/__init__.py -------------------------------------------------------------------------------- /orhelper/_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentSys/orhelper/HEAD/orhelper/_enums.py -------------------------------------------------------------------------------- /orhelper/_orhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentSys/orhelper/HEAD/orhelper/_orhelper.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentSys/orhelper/HEAD/setup.py --------------------------------------------------------------------------------