├── .github └── FUNDING.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── MANIFEST.in ├── README.md ├── setup.py ├── sympytorch ├── __init__.py ├── hide_floats_m.py ├── py.typed └── sympy_module.py └── tests ├── test_hide_floats.py └── test_sympymodule.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [patrick-kidger] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/__pycache__ 2 | *.egg-info 3 | build/ 4 | dist/ 5 | 6 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-kidger/sympytorch/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-kidger/sympytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE 2 | prune tests 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-kidger/sympytorch/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-kidger/sympytorch/HEAD/setup.py -------------------------------------------------------------------------------- /sympytorch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-kidger/sympytorch/HEAD/sympytorch/__init__.py -------------------------------------------------------------------------------- /sympytorch/hide_floats_m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-kidger/sympytorch/HEAD/sympytorch/hide_floats_m.py -------------------------------------------------------------------------------- /sympytorch/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sympytorch/sympy_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-kidger/sympytorch/HEAD/sympytorch/sympy_module.py -------------------------------------------------------------------------------- /tests/test_hide_floats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-kidger/sympytorch/HEAD/tests/test_hide_floats.py -------------------------------------------------------------------------------- /tests/test_sympymodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrick-kidger/sympytorch/HEAD/tests/test_sympymodule.py --------------------------------------------------------------------------------