├── .travis.yml ├── LICENSE ├── README.md ├── demo ├── __init__.py ├── trg.py └── trg_demo.py ├── docs ├── Makefile ├── make.bat └── source │ ├── conf.py │ └── index.rst ├── figs ├── classdiagram.svg └── trg_performance.svg ├── setup.py ├── src └── abeliantensors │ ├── __init__.py │ ├── abeliantensor.py │ ├── symmetrytensors.py │ ├── tensor.py │ └── tensorcommon.py └── tests ├── __init__.py ├── conftest.py ├── ndarray_decomp.py └── test_tensors.py /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhauru/abeliantensors/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhauru/abeliantensors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhauru/abeliantensors/HEAD/README.md -------------------------------------------------------------------------------- /demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/trg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhauru/abeliantensors/HEAD/demo/trg.py -------------------------------------------------------------------------------- /demo/trg_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhauru/abeliantensors/HEAD/demo/trg_demo.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhauru/abeliantensors/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhauru/abeliantensors/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhauru/abeliantensors/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhauru/abeliantensors/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /figs/classdiagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhauru/abeliantensors/HEAD/figs/classdiagram.svg -------------------------------------------------------------------------------- /figs/trg_performance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhauru/abeliantensors/HEAD/figs/trg_performance.svg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhauru/abeliantensors/HEAD/setup.py -------------------------------------------------------------------------------- /src/abeliantensors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhauru/abeliantensors/HEAD/src/abeliantensors/__init__.py -------------------------------------------------------------------------------- /src/abeliantensors/abeliantensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhauru/abeliantensors/HEAD/src/abeliantensors/abeliantensor.py -------------------------------------------------------------------------------- /src/abeliantensors/symmetrytensors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhauru/abeliantensors/HEAD/src/abeliantensors/symmetrytensors.py -------------------------------------------------------------------------------- /src/abeliantensors/tensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhauru/abeliantensors/HEAD/src/abeliantensors/tensor.py -------------------------------------------------------------------------------- /src/abeliantensors/tensorcommon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhauru/abeliantensors/HEAD/src/abeliantensors/tensorcommon.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhauru/abeliantensors/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/ndarray_decomp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhauru/abeliantensors/HEAD/tests/ndarray_decomp.py -------------------------------------------------------------------------------- /tests/test_tensors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhauru/abeliantensors/HEAD/tests/test_tensors.py --------------------------------------------------------------------------------