├── .github └── workflows │ └── main.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── docs ├── Doxyfile ├── Makefile ├── environment.yml ├── make.bat └── source │ ├── _static │ └── main_stylesheet.css │ ├── compilers.rst │ ├── conf.py │ ├── index.rst │ ├── installation.rst │ ├── quantstack-white.svg │ ├── usage.rst │ └── xproperty.svg ├── environment-dev.yml ├── include └── xproperty │ ├── xjson.hpp │ ├── xobserved.hpp │ ├── xproperty.hpp │ └── xproperty_config.hpp ├── notebooks ├── images │ └── xproperty.png └── xproperty.ipynb ├── readthedocs.yml ├── test ├── CMakeLists.txt ├── main.cpp ├── test_utils.hpp ├── test_xjson.cpp ├── test_xobserved.cpp └── test_xproperty.cpp └── xpropertyConfig.cmake.in /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/README.md -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/docs/environment.yml -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/main_stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/docs/source/_static/main_stylesheet.css -------------------------------------------------------------------------------- /docs/source/compilers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/docs/source/compilers.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/quantstack-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/docs/source/quantstack-white.svg -------------------------------------------------------------------------------- /docs/source/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/docs/source/usage.rst -------------------------------------------------------------------------------- /docs/source/xproperty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/docs/source/xproperty.svg -------------------------------------------------------------------------------- /environment-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/environment-dev.yml -------------------------------------------------------------------------------- /include/xproperty/xjson.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/include/xproperty/xjson.hpp -------------------------------------------------------------------------------- /include/xproperty/xobserved.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/include/xproperty/xobserved.hpp -------------------------------------------------------------------------------- /include/xproperty/xproperty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/include/xproperty/xproperty.hpp -------------------------------------------------------------------------------- /include/xproperty/xproperty_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/include/xproperty/xproperty_config.hpp -------------------------------------------------------------------------------- /notebooks/images/xproperty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/notebooks/images/xproperty.png -------------------------------------------------------------------------------- /notebooks/xproperty.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/notebooks/xproperty.ipynb -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- 1 | conda: 2 | file: docs/environment.yml 3 | -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/test/main.cpp -------------------------------------------------------------------------------- /test/test_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/test/test_utils.hpp -------------------------------------------------------------------------------- /test/test_xjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/test/test_xjson.cpp -------------------------------------------------------------------------------- /test/test_xobserved.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/test/test_xobserved.cpp -------------------------------------------------------------------------------- /test/test_xproperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/test/test_xproperty.cpp -------------------------------------------------------------------------------- /xpropertyConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-xeus/xproperty/HEAD/xpropertyConfig.cmake.in --------------------------------------------------------------------------------