├── .clang-format ├── .gitignore ├── .readthedocs.yml ├── .travis.yml ├── LICENSE ├── README.md ├── bundled ├── LBFGSpp │ ├── .gitignore │ ├── LICENSE.md │ ├── Makefile │ ├── README.md │ ├── doxygen │ │ └── Doxyfile │ ├── example-quadratic.cpp │ ├── example-rosenbrock.cpp │ ├── include │ │ ├── LBFGS.h │ │ └── LBFGS │ │ │ ├── LineSearch.h │ │ │ ├── LineSearchBracketing.h │ │ │ └── Param.h │ ├── meson.build │ └── test-rosenbrock.cpp ├── meson.build └── rsvd │ ├── matrix_vector_functions_intel_mkl.cc │ ├── matrix_vector_functions_intel_mkl.h │ ├── meson.build │ ├── rank_revealing_algorithms_intel_mkl.cc │ └── rank_revealing_algorithms_intel_mkl.h ├── docs ├── .gitignore ├── Makefile └── source │ ├── cluster.rst │ ├── conf.py │ ├── index.rst │ ├── install.rst │ └── quickstart.rst ├── examples ├── env-ctmrg │ ├── RVB_2x2_AB.in │ ├── RVB_2x2_ABCD.in │ ├── env-ctmrg.cc │ ├── meson.build │ ├── meson.build.in │ ├── simulation-svd-arpack_AB.json │ ├── simulation-svd-gesdd.json │ ├── simulation-svd-gesdd_AB.json │ ├── simulation-svd-itensor.json │ ├── simulation-svd-rsvd.json │ └── simulation-svd-rsvd_AB.json ├── meson.build ├── opt-fu-adaptive │ ├── meson.build │ ├── meson.build.in │ ├── opt-fu-adaptive.cc │ ├── simulation-AKLT_2x2_AB.json │ ├── simulation-AKLT_2x2_ABCD.json │ ├── simulation-HB_2x2_AB.json │ ├── simulation-HB_2x2_ABCD.json │ ├── simulation-ISING_2x2_AB.json │ ├── simulation-ISING_2x2_ABCD.json │ ├── simulation-J1J2_2x2_ABCD.json │ └── simulation-LADDERS_2x2_ABCD.json └── opt-su-adaptive │ ├── meson.build │ ├── meson.build.in │ ├── opt-su-adaptive.cc │ ├── simulation-su-AKLT_2x2_AB.json │ ├── simulation-su-AKLT_2x2_ABCD.json │ ├── simulation-su-HB_2x2_AB.json │ ├── simulation-su-HB_2x2_ABCD.json │ ├── simulation-su-ISING_2x2_AB.json │ ├── simulation-su-ISING_2x2_ABCD.json │ ├── simulation-su-J1J2_2x2_ABCD.json │ └── simulation-su-LADDERS_2x2_ABCD.json ├── include ├── json.hpp ├── meson.build └── pi-peps │ ├── cluster-ev-builder.h │ ├── cluster-factory.h │ ├── ctm-cluster-basic.h │ ├── ctm-cluster-env.h │ ├── ctm-cluster-global.h │ ├── ctm-cluster-io.h │ ├── ctm-cluster.h │ ├── ctm-env.h │ ├── engine-factory.h │ ├── engine.h │ ├── fu-3site-corboz.h │ ├── full-update.h │ ├── lattice.h │ ├── linalg │ ├── arpack-rcdn.h │ ├── itensor-linsys-solvers.h │ ├── itensor-svd-solvers.h │ ├── lapacksvd-solver.h │ ├── linsyssolvers-lapack.h │ ├── meson.build │ └── rsvd-solver.h │ ├── meson.build │ ├── model-factory.h │ ├── models.h │ ├── models │ ├── aklt-2x2-ABCD.h │ ├── hb-2x2-ABCD.h │ ├── id-2x2-ABCD.h │ ├── ising-2x2-ABCD.h │ ├── j1j2-2x2-ABCD.h │ ├── ladders-2x2-ABCD.h │ └── meson.build │ ├── mpo.h │ ├── simple-update.h │ ├── su2.h │ ├── svdsolver-factory.h │ └── transfer-op.h ├── meson.build ├── meson ├── compilers │ ├── clang │ │ └── meson.build │ ├── gcc │ │ └── meson.build │ ├── intel │ │ └── meson.build │ └── meson.build ├── config │ ├── meson.build │ └── pi-peps │ │ ├── config.h.in │ │ └── meson.build ├── custom │ └── meson.build ├── dependencies │ ├── arpack │ │ └── meson.build │ ├── itensor │ │ └── meson.build │ ├── lapack │ │ └── meson.build │ ├── lbfgs │ │ └── meson.build │ ├── meson.build │ ├── mkl │ │ └── meson.build │ ├── openmp │ │ └── meson.build │ └── rsvd │ │ └── meson.build └── meson.build ├── meson_options.txt ├── pkgconfig └── meson.build ├── src ├── cluster-ev-builder.cc ├── cluster-factory.cc ├── corr-functions.cc ├── ctm-cluster-basic.cc ├── ctm-cluster-io.cc ├── ctm-cluster.cc ├── ctm-env.cc ├── ctmrg.cc ├── engine-factory.cc ├── engine.cc ├── fu-2site.cc ├── fu-3site-corboz.cc ├── fu-3site.cc ├── fu-4site.cc ├── full-update-TEST.cc ├── full-update.cc ├── lattice.cc ├── linalg │ ├── itensor-linsys-solvers.cc │ ├── itensor-svd-solvers.cc │ ├── meson.build │ └── rsvd-solver.cc ├── meson.build ├── model-factory.cc ├── models.cc ├── models │ ├── aklt-2x2-ABCD.cc │ ├── hb-2x2-ABCD.cc │ ├── id-2x2-ABCD.cc │ ├── ising-2x2-ABCD.cc │ ├── j1j2-2x2-ABCD.cc │ ├── ladders-2x2-ABCD.cc │ └── meson.build ├── mpo.cc ├── simple-update.cc ├── su2.cc ├── svdsolver-factory.cc └── transfer-op.cc ├── subprojects └── gtest.wrap ├── test-input ├── J1J2_initby_RVB_2x2.in ├── PtoS4_1x1.in ├── PtoS4_2x2.in ├── PtoS4_2x2_ABCD.in ├── PtoS4_2x2_biLat.in ├── RVB_1x1.in ├── RVB_1x2.in ├── RVB_2x2_1ST.in ├── RVB_2x2_AB.in ├── RVB_2x2_ABCD.in ├── RVB_2x2_ABCD_customIndices.in ├── VBS_2x2_ABCD.in ├── test-2site.in ├── test-3site.in ├── test.in └── test2.in ├── tests ├── integration_tests │ ├── compare-last-line.sh │ ├── compare.sh │ ├── env-ctmrg-aklt-2x2 │ │ ├── AKLT_2x2_ABCD.in │ │ ├── meson.build │ │ ├── reference_output.in.energy.dat │ │ └── simulation-svd-gesdd.json │ ├── env-ctmrg-rvb-1x2 │ │ ├── RVB_2x2_AB.in │ │ ├── meson.build │ │ ├── reference_output.in.energy.dat │ │ └── simulation-svd-gesdd_AB.json │ ├── env-ctmrg-rvb-2x2 │ │ ├── RVB_2x2_ABCD.in │ │ ├── meson.build │ │ ├── reference_output.in.energy.dat │ │ ├── simulation-svd-gesdd.json │ │ └── simulation-svd-itensor.json │ ├── meson.build │ ├── opt-fu-hb-1x2 │ │ ├── meson.build │ │ ├── reference_output_HB_2X2_AB.in.energy.dat │ │ └── simulation-fu-HB_2X2_AB.json │ └── opt-su-hb-1x2 │ │ ├── meson.build │ │ ├── reference_output_HB-2x2-AB.in.energy.dat │ │ └── simulation-su-HB_2x2_AB.json ├── meson.build └── unit_tests │ ├── example.cc │ ├── meson.build │ ├── test-arpack-itensor.cc │ ├── test-cluster.cc │ ├── test-ctm-env.cc │ ├── test-gesdd-svd-solver.cc │ └── test-lin-sys.cc └── utils ├── indent ├── run_clang_tidy └── run_indent /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/README.md -------------------------------------------------------------------------------- /bundled/LBFGSpp/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.out 3 | include/Eigen/* 4 | -------------------------------------------------------------------------------- /bundled/LBFGSpp/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/bundled/LBFGSpp/LICENSE.md -------------------------------------------------------------------------------- /bundled/LBFGSpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/bundled/LBFGSpp/Makefile -------------------------------------------------------------------------------- /bundled/LBFGSpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/bundled/LBFGSpp/README.md -------------------------------------------------------------------------------- /bundled/LBFGSpp/doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/bundled/LBFGSpp/doxygen/Doxyfile -------------------------------------------------------------------------------- /bundled/LBFGSpp/example-quadratic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/bundled/LBFGSpp/example-quadratic.cpp -------------------------------------------------------------------------------- /bundled/LBFGSpp/example-rosenbrock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/bundled/LBFGSpp/example-rosenbrock.cpp -------------------------------------------------------------------------------- /bundled/LBFGSpp/include/LBFGS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/bundled/LBFGSpp/include/LBFGS.h -------------------------------------------------------------------------------- /bundled/LBFGSpp/include/LBFGS/LineSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/bundled/LBFGSpp/include/LBFGS/LineSearch.h -------------------------------------------------------------------------------- /bundled/LBFGSpp/include/LBFGS/LineSearchBracketing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/bundled/LBFGSpp/include/LBFGS/LineSearchBracketing.h -------------------------------------------------------------------------------- /bundled/LBFGSpp/include/LBFGS/Param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/bundled/LBFGSpp/include/LBFGS/Param.h -------------------------------------------------------------------------------- /bundled/LBFGSpp/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/bundled/LBFGSpp/meson.build -------------------------------------------------------------------------------- /bundled/LBFGSpp/test-rosenbrock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/bundled/LBFGSpp/test-rosenbrock.cpp -------------------------------------------------------------------------------- /bundled/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/bundled/meson.build -------------------------------------------------------------------------------- /bundled/rsvd/matrix_vector_functions_intel_mkl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/bundled/rsvd/matrix_vector_functions_intel_mkl.cc -------------------------------------------------------------------------------- /bundled/rsvd/matrix_vector_functions_intel_mkl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/bundled/rsvd/matrix_vector_functions_intel_mkl.h -------------------------------------------------------------------------------- /bundled/rsvd/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/bundled/rsvd/meson.build -------------------------------------------------------------------------------- /bundled/rsvd/rank_revealing_algorithms_intel_mkl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/bundled/rsvd/rank_revealing_algorithms_intel_mkl.cc -------------------------------------------------------------------------------- /bundled/rsvd/rank_revealing_algorithms_intel_mkl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/bundled/rsvd/rank_revealing_algorithms_intel_mkl.h -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/cluster.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/docs/source/cluster.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/docs/source/install.rst -------------------------------------------------------------------------------- /docs/source/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/docs/source/quickstart.rst -------------------------------------------------------------------------------- /examples/env-ctmrg/RVB_2x2_AB.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/env-ctmrg/RVB_2x2_AB.in -------------------------------------------------------------------------------- /examples/env-ctmrg/RVB_2x2_ABCD.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/env-ctmrg/RVB_2x2_ABCD.in -------------------------------------------------------------------------------- /examples/env-ctmrg/env-ctmrg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/env-ctmrg/env-ctmrg.cc -------------------------------------------------------------------------------- /examples/env-ctmrg/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/env-ctmrg/meson.build -------------------------------------------------------------------------------- /examples/env-ctmrg/meson.build.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/env-ctmrg/meson.build.in -------------------------------------------------------------------------------- /examples/env-ctmrg/simulation-svd-arpack_AB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/env-ctmrg/simulation-svd-arpack_AB.json -------------------------------------------------------------------------------- /examples/env-ctmrg/simulation-svd-gesdd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/env-ctmrg/simulation-svd-gesdd.json -------------------------------------------------------------------------------- /examples/env-ctmrg/simulation-svd-gesdd_AB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/env-ctmrg/simulation-svd-gesdd_AB.json -------------------------------------------------------------------------------- /examples/env-ctmrg/simulation-svd-itensor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/env-ctmrg/simulation-svd-itensor.json -------------------------------------------------------------------------------- /examples/env-ctmrg/simulation-svd-rsvd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/env-ctmrg/simulation-svd-rsvd.json -------------------------------------------------------------------------------- /examples/env-ctmrg/simulation-svd-rsvd_AB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/env-ctmrg/simulation-svd-rsvd_AB.json -------------------------------------------------------------------------------- /examples/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/meson.build -------------------------------------------------------------------------------- /examples/opt-fu-adaptive/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/opt-fu-adaptive/meson.build -------------------------------------------------------------------------------- /examples/opt-fu-adaptive/meson.build.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/opt-fu-adaptive/meson.build.in -------------------------------------------------------------------------------- /examples/opt-fu-adaptive/opt-fu-adaptive.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/opt-fu-adaptive/opt-fu-adaptive.cc -------------------------------------------------------------------------------- /examples/opt-fu-adaptive/simulation-AKLT_2x2_AB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/opt-fu-adaptive/simulation-AKLT_2x2_AB.json -------------------------------------------------------------------------------- /examples/opt-fu-adaptive/simulation-AKLT_2x2_ABCD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/opt-fu-adaptive/simulation-AKLT_2x2_ABCD.json -------------------------------------------------------------------------------- /examples/opt-fu-adaptive/simulation-HB_2x2_AB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/opt-fu-adaptive/simulation-HB_2x2_AB.json -------------------------------------------------------------------------------- /examples/opt-fu-adaptive/simulation-HB_2x2_ABCD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/opt-fu-adaptive/simulation-HB_2x2_ABCD.json -------------------------------------------------------------------------------- /examples/opt-fu-adaptive/simulation-ISING_2x2_AB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/opt-fu-adaptive/simulation-ISING_2x2_AB.json -------------------------------------------------------------------------------- /examples/opt-fu-adaptive/simulation-ISING_2x2_ABCD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/opt-fu-adaptive/simulation-ISING_2x2_ABCD.json -------------------------------------------------------------------------------- /examples/opt-fu-adaptive/simulation-J1J2_2x2_ABCD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/opt-fu-adaptive/simulation-J1J2_2x2_ABCD.json -------------------------------------------------------------------------------- /examples/opt-fu-adaptive/simulation-LADDERS_2x2_ABCD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/opt-fu-adaptive/simulation-LADDERS_2x2_ABCD.json -------------------------------------------------------------------------------- /examples/opt-su-adaptive/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/opt-su-adaptive/meson.build -------------------------------------------------------------------------------- /examples/opt-su-adaptive/meson.build.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/opt-su-adaptive/meson.build.in -------------------------------------------------------------------------------- /examples/opt-su-adaptive/opt-su-adaptive.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/opt-su-adaptive/opt-su-adaptive.cc -------------------------------------------------------------------------------- /examples/opt-su-adaptive/simulation-su-AKLT_2x2_AB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/opt-su-adaptive/simulation-su-AKLT_2x2_AB.json -------------------------------------------------------------------------------- /examples/opt-su-adaptive/simulation-su-AKLT_2x2_ABCD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/opt-su-adaptive/simulation-su-AKLT_2x2_ABCD.json -------------------------------------------------------------------------------- /examples/opt-su-adaptive/simulation-su-HB_2x2_AB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/opt-su-adaptive/simulation-su-HB_2x2_AB.json -------------------------------------------------------------------------------- /examples/opt-su-adaptive/simulation-su-HB_2x2_ABCD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/opt-su-adaptive/simulation-su-HB_2x2_ABCD.json -------------------------------------------------------------------------------- /examples/opt-su-adaptive/simulation-su-ISING_2x2_AB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/opt-su-adaptive/simulation-su-ISING_2x2_AB.json -------------------------------------------------------------------------------- /examples/opt-su-adaptive/simulation-su-ISING_2x2_ABCD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/opt-su-adaptive/simulation-su-ISING_2x2_ABCD.json -------------------------------------------------------------------------------- /examples/opt-su-adaptive/simulation-su-J1J2_2x2_ABCD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/opt-su-adaptive/simulation-su-J1J2_2x2_ABCD.json -------------------------------------------------------------------------------- /examples/opt-su-adaptive/simulation-su-LADDERS_2x2_ABCD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/examples/opt-su-adaptive/simulation-su-LADDERS_2x2_ABCD.json -------------------------------------------------------------------------------- /include/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/json.hpp -------------------------------------------------------------------------------- /include/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/meson.build -------------------------------------------------------------------------------- /include/pi-peps/cluster-ev-builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/cluster-ev-builder.h -------------------------------------------------------------------------------- /include/pi-peps/cluster-factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/cluster-factory.h -------------------------------------------------------------------------------- /include/pi-peps/ctm-cluster-basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/ctm-cluster-basic.h -------------------------------------------------------------------------------- /include/pi-peps/ctm-cluster-env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/ctm-cluster-env.h -------------------------------------------------------------------------------- /include/pi-peps/ctm-cluster-global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/ctm-cluster-global.h -------------------------------------------------------------------------------- /include/pi-peps/ctm-cluster-io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/ctm-cluster-io.h -------------------------------------------------------------------------------- /include/pi-peps/ctm-cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/ctm-cluster.h -------------------------------------------------------------------------------- /include/pi-peps/ctm-env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/ctm-env.h -------------------------------------------------------------------------------- /include/pi-peps/engine-factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/engine-factory.h -------------------------------------------------------------------------------- /include/pi-peps/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/engine.h -------------------------------------------------------------------------------- /include/pi-peps/fu-3site-corboz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/fu-3site-corboz.h -------------------------------------------------------------------------------- /include/pi-peps/full-update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/full-update.h -------------------------------------------------------------------------------- /include/pi-peps/lattice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/lattice.h -------------------------------------------------------------------------------- /include/pi-peps/linalg/arpack-rcdn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/linalg/arpack-rcdn.h -------------------------------------------------------------------------------- /include/pi-peps/linalg/itensor-linsys-solvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/linalg/itensor-linsys-solvers.h -------------------------------------------------------------------------------- /include/pi-peps/linalg/itensor-svd-solvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/linalg/itensor-svd-solvers.h -------------------------------------------------------------------------------- /include/pi-peps/linalg/lapacksvd-solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/linalg/lapacksvd-solver.h -------------------------------------------------------------------------------- /include/pi-peps/linalg/linsyssolvers-lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/linalg/linsyssolvers-lapack.h -------------------------------------------------------------------------------- /include/pi-peps/linalg/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/linalg/meson.build -------------------------------------------------------------------------------- /include/pi-peps/linalg/rsvd-solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/linalg/rsvd-solver.h -------------------------------------------------------------------------------- /include/pi-peps/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/meson.build -------------------------------------------------------------------------------- /include/pi-peps/model-factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/model-factory.h -------------------------------------------------------------------------------- /include/pi-peps/models.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/models.h -------------------------------------------------------------------------------- /include/pi-peps/models/aklt-2x2-ABCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/models/aklt-2x2-ABCD.h -------------------------------------------------------------------------------- /include/pi-peps/models/hb-2x2-ABCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/models/hb-2x2-ABCD.h -------------------------------------------------------------------------------- /include/pi-peps/models/id-2x2-ABCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/models/id-2x2-ABCD.h -------------------------------------------------------------------------------- /include/pi-peps/models/ising-2x2-ABCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/models/ising-2x2-ABCD.h -------------------------------------------------------------------------------- /include/pi-peps/models/j1j2-2x2-ABCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/models/j1j2-2x2-ABCD.h -------------------------------------------------------------------------------- /include/pi-peps/models/ladders-2x2-ABCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/models/ladders-2x2-ABCD.h -------------------------------------------------------------------------------- /include/pi-peps/models/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/models/meson.build -------------------------------------------------------------------------------- /include/pi-peps/mpo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/mpo.h -------------------------------------------------------------------------------- /include/pi-peps/simple-update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/simple-update.h -------------------------------------------------------------------------------- /include/pi-peps/su2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/su2.h -------------------------------------------------------------------------------- /include/pi-peps/svdsolver-factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/svdsolver-factory.h -------------------------------------------------------------------------------- /include/pi-peps/transfer-op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/include/pi-peps/transfer-op.h -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/meson.build -------------------------------------------------------------------------------- /meson/compilers/clang/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/meson/compilers/clang/meson.build -------------------------------------------------------------------------------- /meson/compilers/gcc/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/meson/compilers/gcc/meson.build -------------------------------------------------------------------------------- /meson/compilers/intel/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/meson/compilers/intel/meson.build -------------------------------------------------------------------------------- /meson/compilers/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/meson/compilers/meson.build -------------------------------------------------------------------------------- /meson/config/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/meson/config/meson.build -------------------------------------------------------------------------------- /meson/config/pi-peps/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/meson/config/pi-peps/config.h.in -------------------------------------------------------------------------------- /meson/config/pi-peps/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/meson/config/pi-peps/meson.build -------------------------------------------------------------------------------- /meson/custom/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/meson/custom/meson.build -------------------------------------------------------------------------------- /meson/dependencies/arpack/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/meson/dependencies/arpack/meson.build -------------------------------------------------------------------------------- /meson/dependencies/itensor/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/meson/dependencies/itensor/meson.build -------------------------------------------------------------------------------- /meson/dependencies/lapack/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/meson/dependencies/lapack/meson.build -------------------------------------------------------------------------------- /meson/dependencies/lbfgs/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/meson/dependencies/lbfgs/meson.build -------------------------------------------------------------------------------- /meson/dependencies/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/meson/dependencies/meson.build -------------------------------------------------------------------------------- /meson/dependencies/mkl/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/meson/dependencies/mkl/meson.build -------------------------------------------------------------------------------- /meson/dependencies/openmp/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/meson/dependencies/openmp/meson.build -------------------------------------------------------------------------------- /meson/dependencies/rsvd/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/meson/dependencies/rsvd/meson.build -------------------------------------------------------------------------------- /meson/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/meson/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/meson_options.txt -------------------------------------------------------------------------------- /pkgconfig/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/pkgconfig/meson.build -------------------------------------------------------------------------------- /src/cluster-ev-builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/cluster-ev-builder.cc -------------------------------------------------------------------------------- /src/cluster-factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/cluster-factory.cc -------------------------------------------------------------------------------- /src/corr-functions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/corr-functions.cc -------------------------------------------------------------------------------- /src/ctm-cluster-basic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/ctm-cluster-basic.cc -------------------------------------------------------------------------------- /src/ctm-cluster-io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/ctm-cluster-io.cc -------------------------------------------------------------------------------- /src/ctm-cluster.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/ctm-cluster.cc -------------------------------------------------------------------------------- /src/ctm-env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/ctm-env.cc -------------------------------------------------------------------------------- /src/ctmrg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/ctmrg.cc -------------------------------------------------------------------------------- /src/engine-factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/engine-factory.cc -------------------------------------------------------------------------------- /src/engine.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/engine.cc -------------------------------------------------------------------------------- /src/fu-2site.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/fu-2site.cc -------------------------------------------------------------------------------- /src/fu-3site-corboz.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/fu-3site-corboz.cc -------------------------------------------------------------------------------- /src/fu-3site.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/fu-3site.cc -------------------------------------------------------------------------------- /src/fu-4site.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/fu-4site.cc -------------------------------------------------------------------------------- /src/full-update-TEST.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/full-update-TEST.cc -------------------------------------------------------------------------------- /src/full-update.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/full-update.cc -------------------------------------------------------------------------------- /src/lattice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/lattice.cc -------------------------------------------------------------------------------- /src/linalg/itensor-linsys-solvers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/linalg/itensor-linsys-solvers.cc -------------------------------------------------------------------------------- /src/linalg/itensor-svd-solvers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/linalg/itensor-svd-solvers.cc -------------------------------------------------------------------------------- /src/linalg/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/linalg/meson.build -------------------------------------------------------------------------------- /src/linalg/rsvd-solver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/linalg/rsvd-solver.cc -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/model-factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/model-factory.cc -------------------------------------------------------------------------------- /src/models.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/models.cc -------------------------------------------------------------------------------- /src/models/aklt-2x2-ABCD.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/models/aklt-2x2-ABCD.cc -------------------------------------------------------------------------------- /src/models/hb-2x2-ABCD.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/models/hb-2x2-ABCD.cc -------------------------------------------------------------------------------- /src/models/id-2x2-ABCD.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/models/id-2x2-ABCD.cc -------------------------------------------------------------------------------- /src/models/ising-2x2-ABCD.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/models/ising-2x2-ABCD.cc -------------------------------------------------------------------------------- /src/models/j1j2-2x2-ABCD.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/models/j1j2-2x2-ABCD.cc -------------------------------------------------------------------------------- /src/models/ladders-2x2-ABCD.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/models/ladders-2x2-ABCD.cc -------------------------------------------------------------------------------- /src/models/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/models/meson.build -------------------------------------------------------------------------------- /src/mpo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/mpo.cc -------------------------------------------------------------------------------- /src/simple-update.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/simple-update.cc -------------------------------------------------------------------------------- /src/su2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/su2.cc -------------------------------------------------------------------------------- /src/svdsolver-factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/svdsolver-factory.cc -------------------------------------------------------------------------------- /src/transfer-op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/src/transfer-op.cc -------------------------------------------------------------------------------- /subprojects/gtest.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/subprojects/gtest.wrap -------------------------------------------------------------------------------- /test-input/J1J2_initby_RVB_2x2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/test-input/J1J2_initby_RVB_2x2.in -------------------------------------------------------------------------------- /test-input/PtoS4_1x1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/test-input/PtoS4_1x1.in -------------------------------------------------------------------------------- /test-input/PtoS4_2x2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/test-input/PtoS4_2x2.in -------------------------------------------------------------------------------- /test-input/PtoS4_2x2_ABCD.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/test-input/PtoS4_2x2_ABCD.in -------------------------------------------------------------------------------- /test-input/PtoS4_2x2_biLat.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/test-input/PtoS4_2x2_biLat.in -------------------------------------------------------------------------------- /test-input/RVB_1x1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/test-input/RVB_1x1.in -------------------------------------------------------------------------------- /test-input/RVB_1x2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/test-input/RVB_1x2.in -------------------------------------------------------------------------------- /test-input/RVB_2x2_1ST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/test-input/RVB_2x2_1ST.in -------------------------------------------------------------------------------- /test-input/RVB_2x2_AB.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/test-input/RVB_2x2_AB.in -------------------------------------------------------------------------------- /test-input/RVB_2x2_ABCD.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/test-input/RVB_2x2_ABCD.in -------------------------------------------------------------------------------- /test-input/RVB_2x2_ABCD_customIndices.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/test-input/RVB_2x2_ABCD_customIndices.in -------------------------------------------------------------------------------- /test-input/VBS_2x2_ABCD.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/test-input/VBS_2x2_ABCD.in -------------------------------------------------------------------------------- /test-input/test-2site.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/test-input/test-2site.in -------------------------------------------------------------------------------- /test-input/test-3site.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/test-input/test-3site.in -------------------------------------------------------------------------------- /test-input/test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/test-input/test.in -------------------------------------------------------------------------------- /test-input/test2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/test-input/test2.in -------------------------------------------------------------------------------- /tests/integration_tests/compare-last-line.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/integration_tests/compare-last-line.sh -------------------------------------------------------------------------------- /tests/integration_tests/compare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/integration_tests/compare.sh -------------------------------------------------------------------------------- /tests/integration_tests/env-ctmrg-aklt-2x2/AKLT_2x2_ABCD.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/integration_tests/env-ctmrg-aklt-2x2/AKLT_2x2_ABCD.in -------------------------------------------------------------------------------- /tests/integration_tests/env-ctmrg-aklt-2x2/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/integration_tests/env-ctmrg-aklt-2x2/meson.build -------------------------------------------------------------------------------- /tests/integration_tests/env-ctmrg-aklt-2x2/reference_output.in.energy.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/integration_tests/env-ctmrg-aklt-2x2/reference_output.in.energy.dat -------------------------------------------------------------------------------- /tests/integration_tests/env-ctmrg-aklt-2x2/simulation-svd-gesdd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/integration_tests/env-ctmrg-aklt-2x2/simulation-svd-gesdd.json -------------------------------------------------------------------------------- /tests/integration_tests/env-ctmrg-rvb-1x2/RVB_2x2_AB.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/integration_tests/env-ctmrg-rvb-1x2/RVB_2x2_AB.in -------------------------------------------------------------------------------- /tests/integration_tests/env-ctmrg-rvb-1x2/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/integration_tests/env-ctmrg-rvb-1x2/meson.build -------------------------------------------------------------------------------- /tests/integration_tests/env-ctmrg-rvb-1x2/reference_output.in.energy.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/integration_tests/env-ctmrg-rvb-1x2/reference_output.in.energy.dat -------------------------------------------------------------------------------- /tests/integration_tests/env-ctmrg-rvb-1x2/simulation-svd-gesdd_AB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/integration_tests/env-ctmrg-rvb-1x2/simulation-svd-gesdd_AB.json -------------------------------------------------------------------------------- /tests/integration_tests/env-ctmrg-rvb-2x2/RVB_2x2_ABCD.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/integration_tests/env-ctmrg-rvb-2x2/RVB_2x2_ABCD.in -------------------------------------------------------------------------------- /tests/integration_tests/env-ctmrg-rvb-2x2/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/integration_tests/env-ctmrg-rvb-2x2/meson.build -------------------------------------------------------------------------------- /tests/integration_tests/env-ctmrg-rvb-2x2/reference_output.in.energy.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/integration_tests/env-ctmrg-rvb-2x2/reference_output.in.energy.dat -------------------------------------------------------------------------------- /tests/integration_tests/env-ctmrg-rvb-2x2/simulation-svd-gesdd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/integration_tests/env-ctmrg-rvb-2x2/simulation-svd-gesdd.json -------------------------------------------------------------------------------- /tests/integration_tests/env-ctmrg-rvb-2x2/simulation-svd-itensor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/integration_tests/env-ctmrg-rvb-2x2/simulation-svd-itensor.json -------------------------------------------------------------------------------- /tests/integration_tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/integration_tests/meson.build -------------------------------------------------------------------------------- /tests/integration_tests/opt-fu-hb-1x2/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/integration_tests/opt-fu-hb-1x2/meson.build -------------------------------------------------------------------------------- /tests/integration_tests/opt-fu-hb-1x2/reference_output_HB_2X2_AB.in.energy.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/integration_tests/opt-fu-hb-1x2/reference_output_HB_2X2_AB.in.energy.dat -------------------------------------------------------------------------------- /tests/integration_tests/opt-fu-hb-1x2/simulation-fu-HB_2X2_AB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/integration_tests/opt-fu-hb-1x2/simulation-fu-HB_2X2_AB.json -------------------------------------------------------------------------------- /tests/integration_tests/opt-su-hb-1x2/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/integration_tests/opt-su-hb-1x2/meson.build -------------------------------------------------------------------------------- /tests/integration_tests/opt-su-hb-1x2/reference_output_HB-2x2-AB.in.energy.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/integration_tests/opt-su-hb-1x2/reference_output_HB-2x2-AB.in.energy.dat -------------------------------------------------------------------------------- /tests/integration_tests/opt-su-hb-1x2/simulation-su-HB_2x2_AB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/integration_tests/opt-su-hb-1x2/simulation-su-HB_2x2_AB.json -------------------------------------------------------------------------------- /tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/meson.build -------------------------------------------------------------------------------- /tests/unit_tests/example.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/unit_tests/example.cc -------------------------------------------------------------------------------- /tests/unit_tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/unit_tests/meson.build -------------------------------------------------------------------------------- /tests/unit_tests/test-arpack-itensor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/unit_tests/test-arpack-itensor.cc -------------------------------------------------------------------------------- /tests/unit_tests/test-cluster.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/unit_tests/test-cluster.cc -------------------------------------------------------------------------------- /tests/unit_tests/test-ctm-env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/unit_tests/test-ctm-env.cc -------------------------------------------------------------------------------- /tests/unit_tests/test-gesdd-svd-solver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/unit_tests/test-gesdd-svd-solver.cc -------------------------------------------------------------------------------- /tests/unit_tests/test-lin-sys.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/tests/unit_tests/test-lin-sys.cc -------------------------------------------------------------------------------- /utils/indent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/utils/indent -------------------------------------------------------------------------------- /utils/run_clang_tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jurajHasik/pi-peps/HEAD/utils/run_clang_tidy -------------------------------------------------------------------------------- /utils/run_indent: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd "$1" 4 | 5 | ./utils/indent 6 | --------------------------------------------------------------------------------