├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── include ├── core │ ├── input.hpp │ ├── params.hpp │ ├── preintegration.hpp │ └── state.hpp └── utils │ └── tools.hpp └── tests ├── test_common.hpp ├── test_preintegration.hpp └── tests.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aau-cns/equivariant-preintegration/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aau-cns/equivariant-preintegration/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aau-cns/equivariant-preintegration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aau-cns/equivariant-preintegration/HEAD/README.md -------------------------------------------------------------------------------- /include/core/input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aau-cns/equivariant-preintegration/HEAD/include/core/input.hpp -------------------------------------------------------------------------------- /include/core/params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aau-cns/equivariant-preintegration/HEAD/include/core/params.hpp -------------------------------------------------------------------------------- /include/core/preintegration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aau-cns/equivariant-preintegration/HEAD/include/core/preintegration.hpp -------------------------------------------------------------------------------- /include/core/state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aau-cns/equivariant-preintegration/HEAD/include/core/state.hpp -------------------------------------------------------------------------------- /include/utils/tools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aau-cns/equivariant-preintegration/HEAD/include/utils/tools.hpp -------------------------------------------------------------------------------- /tests/test_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aau-cns/equivariant-preintegration/HEAD/tests/test_common.hpp -------------------------------------------------------------------------------- /tests/test_preintegration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aau-cns/equivariant-preintegration/HEAD/tests/test_preintegration.hpp -------------------------------------------------------------------------------- /tests/tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aau-cns/equivariant-preintegration/HEAD/tests/tests.cpp --------------------------------------------------------------------------------