├── .gitignore ├── Demo ├── DMRG │ ├── Makefile │ ├── argv_dmrg.txt │ └── ndmrg.cc └── TDVP │ ├── Makefile │ ├── argv_tdvp.txt │ └── ntdvp.cc ├── Eigen ├── CMakeLists.txt ├── Cholesky ├── CholmodSupport ├── Core ├── Dense ├── Eigen ├── Eigenvalues ├── Geometry ├── Householder ├── IterativeLinearSolvers ├── Jacobi ├── LU ├── MetisSupport ├── OrderingMethods ├── PaStiXSupport ├── PardisoSupport ├── QR ├── QtAlignedMalloc ├── SPQRSupport ├── SVD ├── Sparse ├── SparseCholesky ├── SparseCore ├── SparseLU ├── SparseQR ├── StdDeque ├── StdList ├── StdVector ├── SuperLUSupport ├── UmfPackSupport └── src │ ├── Cholesky │ ├── LDLT.h │ ├── LLT.h │ └── LLT_LAPACKE.h │ ├── CholmodSupport │ └── CholmodSupport.h │ ├── Core │ ├── Array.h │ ├── ArrayBase.h │ ├── ArrayWrapper.h │ ├── Assign.h │ ├── AssignEvaluator.h │ ├── Assign_MKL.h │ ├── BandMatrix.h │ ├── Block.h │ ├── BooleanRedux.h │ ├── CommaInitializer.h │ ├── ConditionEstimator.h │ ├── CoreEvaluators.h │ ├── CoreIterators.h │ ├── CwiseBinaryOp.h │ ├── CwiseNullaryOp.h │ ├── CwiseTernaryOp.h │ ├── CwiseUnaryOp.h │ ├── CwiseUnaryView.h │ ├── DenseBase.h │ ├── DenseCoeffsBase.h │ ├── DenseStorage.h │ ├── Diagonal.h │ ├── DiagonalMatrix.h │ ├── DiagonalProduct.h │ ├── Dot.h │ ├── EigenBase.h │ ├── ForceAlignedAccess.h │ ├── Fuzzy.h │ ├── GeneralProduct.h │ ├── GenericPacketMath.h │ ├── GlobalFunctions.h │ ├── IO.h │ ├── Inverse.h │ ├── Map.h │ ├── MapBase.h │ ├── MathFunctions.h │ ├── MathFunctionsImpl.h │ ├── Matrix.h │ ├── MatrixBase.h │ ├── NestByValue.h │ ├── NoAlias.h │ ├── NumTraits.h │ ├── PermutationMatrix.h │ ├── PlainObjectBase.h │ ├── Product.h │ ├── ProductEvaluators.h │ ├── Random.h │ ├── Redux.h │ ├── Ref.h │ ├── Replicate.h │ ├── ReturnByValue.h │ ├── Reverse.h │ ├── Select.h │ ├── SelfAdjointView.h │ ├── SelfCwiseBinaryOp.h │ ├── Solve.h │ ├── SolveTriangular.h │ ├── SolverBase.h │ ├── StableNorm.h │ ├── Stride.h │ ├── Swap.h │ ├── Transpose.h │ ├── Transpositions.h │ ├── TriangularMatrix.h │ ├── VectorBlock.h │ ├── VectorwiseOp.h │ ├── Visitor.h │ ├── arch │ │ ├── AVX │ │ │ ├── Complex.h │ │ │ ├── MathFunctions.h │ │ │ ├── PacketMath.h │ │ │ └── TypeCasting.h │ │ ├── AVX512 │ │ │ ├── MathFunctions.h │ │ │ └── PacketMath.h │ │ ├── AltiVec │ │ │ ├── Complex.h │ │ │ ├── MathFunctions.h │ │ │ └── PacketMath.h │ │ ├── CUDA │ │ │ ├── Complex.h │ │ │ ├── Half.h │ │ │ ├── MathFunctions.h │ │ │ ├── PacketMath.h │ │ │ ├── PacketMathHalf.h │ │ │ └── TypeCasting.h │ │ ├── Default │ │ │ ├── ConjHelper.h │ │ │ └── Settings.h │ │ ├── NEON │ │ │ ├── Complex.h │ │ │ ├── MathFunctions.h │ │ │ └── PacketMath.h │ │ ├── SSE │ │ │ ├── Complex.h │ │ │ ├── MathFunctions.h │ │ │ ├── PacketMath.h │ │ │ └── TypeCasting.h │ │ └── ZVector │ │ │ ├── Complex.h │ │ │ ├── MathFunctions.h │ │ │ └── PacketMath.h │ ├── functors │ │ ├── AssignmentFunctors.h │ │ ├── BinaryFunctors.h │ │ ├── NullaryFunctors.h │ │ ├── StlFunctors.h │ │ ├── TernaryFunctors.h │ │ └── UnaryFunctors.h │ ├── products │ │ ├── GeneralBlockPanelKernel.h │ │ ├── GeneralMatrixMatrix.h │ │ ├── GeneralMatrixMatrixTriangular.h │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ ├── GeneralMatrixVector.h │ │ ├── GeneralMatrixVector_BLAS.h │ │ ├── Parallelizer.h │ │ ├── SelfadjointMatrixMatrix.h │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ ├── SelfadjointMatrixVector.h │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ ├── SelfadjointProduct.h │ │ ├── SelfadjointRank2Update.h │ │ ├── TriangularMatrixMatrix.h │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ ├── TriangularMatrixVector.h │ │ ├── TriangularMatrixVector_BLAS.h │ │ ├── TriangularSolverMatrix.h │ │ ├── TriangularSolverMatrix_BLAS.h │ │ └── TriangularSolverVector.h │ └── util │ │ ├── BlasUtil.h │ │ ├── Constants.h │ │ ├── DisableStupidWarnings.h │ │ ├── ForwardDeclarations.h │ │ ├── MKL_support.h │ │ ├── Macros.h │ │ ├── Memory.h │ │ ├── Meta.h │ │ ├── NonMPL2.h │ │ ├── ReenableStupidWarnings.h │ │ ├── StaticAssert.h │ │ └── XprHelper.h │ ├── Eigenvalues │ ├── ComplexEigenSolver.h │ ├── ComplexSchur.h │ ├── ComplexSchur_LAPACKE.h │ ├── EigenSolver.h │ ├── GeneralizedEigenSolver.h │ ├── GeneralizedSelfAdjointEigenSolver.h │ ├── HessenbergDecomposition.h │ ├── MatrixBaseEigenvalues.h │ ├── RealQZ.h │ ├── RealSchur.h │ ├── RealSchur_LAPACKE.h │ ├── SelfAdjointEigenSolver.h │ ├── SelfAdjointEigenSolver_LAPACKE.h │ └── Tridiagonalization.h │ ├── Geometry │ ├── AlignedBox.h │ ├── AngleAxis.h │ ├── EulerAngles.h │ ├── Homogeneous.h │ ├── Hyperplane.h │ ├── OrthoMethods.h │ ├── ParametrizedLine.h │ ├── Quaternion.h │ ├── Rotation2D.h │ ├── RotationBase.h │ ├── Scaling.h │ ├── Transform.h │ ├── Translation.h │ ├── Umeyama.h │ └── arch │ │ └── Geometry_SSE.h │ ├── Householder │ ├── BlockHouseholder.h │ ├── Householder.h │ └── HouseholderSequence.h │ ├── IterativeLinearSolvers │ ├── BasicPreconditioners.h │ ├── BiCGSTAB.h │ ├── ConjugateGradient.h │ ├── IncompleteCholesky.h │ ├── IncompleteLUT.h │ ├── IterativeSolverBase.h │ ├── LeastSquareConjugateGradient.h │ └── SolveWithGuess.h │ ├── Jacobi │ └── Jacobi.h │ ├── LU │ ├── Determinant.h │ ├── FullPivLU.h │ ├── InverseImpl.h │ ├── PartialPivLU.h │ ├── PartialPivLU_LAPACKE.h │ └── arch │ │ └── Inverse_SSE.h │ ├── MetisSupport │ └── MetisSupport.h │ ├── OrderingMethods │ ├── Amd.h │ ├── Eigen_Colamd.h │ └── Ordering.h │ ├── PaStiXSupport │ └── PaStiXSupport.h │ ├── PardisoSupport │ └── PardisoSupport.h │ ├── QR │ ├── ColPivHouseholderQR.h │ ├── ColPivHouseholderQR_LAPACKE.h │ ├── CompleteOrthogonalDecomposition.h │ ├── FullPivHouseholderQR.h │ ├── HouseholderQR.h │ └── HouseholderQR_LAPACKE.h │ ├── SPQRSupport │ └── SuiteSparseQRSupport.h │ ├── SVD │ ├── BDCSVD.h │ ├── JacobiSVD.h │ ├── JacobiSVD_LAPACKE.h │ ├── SVDBase.h │ └── UpperBidiagonalization.h │ ├── SparseCholesky │ ├── SimplicialCholesky.h │ └── SimplicialCholesky_impl.h │ ├── SparseCore │ ├── AmbiVector.h │ ├── CompressedStorage.h │ ├── ConservativeSparseSparseProduct.h │ ├── MappedSparseMatrix.h │ ├── SparseAssign.h │ ├── SparseBlock.h │ ├── SparseColEtree.h │ ├── SparseCompressedBase.h │ ├── SparseCwiseBinaryOp.h │ ├── SparseCwiseUnaryOp.h │ ├── SparseDenseProduct.h │ ├── SparseDiagonalProduct.h │ ├── SparseDot.h │ ├── SparseFuzzy.h │ ├── SparseMap.h │ ├── SparseMatrix.h │ ├── SparseMatrixBase.h │ ├── SparsePermutation.h │ ├── SparseProduct.h │ ├── SparseRedux.h │ ├── SparseRef.h │ ├── SparseSelfAdjointView.h │ ├── SparseSolverBase.h │ ├── SparseSparseProductWithPruning.h │ ├── SparseTranspose.h │ ├── SparseTriangularView.h │ ├── SparseUtil.h │ ├── SparseVector.h │ ├── SparseView.h │ └── TriangularSolver.h │ ├── SparseLU │ ├── SparseLU.h │ ├── SparseLUImpl.h │ ├── SparseLU_Memory.h │ ├── SparseLU_Structs.h │ ├── SparseLU_SupernodalMatrix.h │ ├── SparseLU_Utils.h │ ├── SparseLU_column_bmod.h │ ├── SparseLU_column_dfs.h │ ├── SparseLU_copy_to_ucol.h │ ├── SparseLU_gemm_kernel.h │ ├── SparseLU_heap_relax_snode.h │ ├── SparseLU_kernel_bmod.h │ ├── SparseLU_panel_bmod.h │ ├── SparseLU_panel_dfs.h │ ├── SparseLU_pivotL.h │ ├── SparseLU_pruneL.h │ └── SparseLU_relax_snode.h │ ├── SparseQR │ └── SparseQR.h │ ├── StlSupport │ ├── StdDeque.h │ ├── StdList.h │ ├── StdVector.h │ └── details.h │ ├── SuperLUSupport │ └── SuperLUSupport.h │ ├── UmfPackSupport │ └── UmfPackSupport.h │ ├── misc │ ├── Image.h │ ├── Kernel.h │ ├── RealSvd2x2.h │ ├── blas.h │ ├── lapack.h │ ├── lapacke.h │ └── lapacke_mangling.h │ └── plugins │ ├── ArrayCwiseBinaryOps.h │ ├── ArrayCwiseUnaryOps.h │ ├── BlockMethods.h │ ├── CommonCwiseBinaryOps.h │ ├── CommonCwiseUnaryOps.h │ ├── MatrixCwiseBinaryOps.h │ └── MatrixCwiseUnaryOps.h ├── INSTALL.md ├── LICENSE ├── Makefile ├── README.md ├── SpectraItensor ├── CplxGenEigsBase.h ├── CplxGenEigsSolver.h ├── GenEigsBase.h ├── GenEigsSolver.h ├── LinAlg │ ├── Arnoldi.h │ ├── CplxArnoldi.h │ ├── CplxUpperHessenbergQR.h │ ├── DoubleShiftQR.h │ ├── UpperHessenbergEigen.h │ └── UpperHessenbergQR.h ├── Util │ ├── CompInfo.h │ ├── SelectionRule.h │ ├── SimpleRandom.h │ └── TypeTraits.h ├── cplxdmrg.h ├── cplxdmrgs.h ├── dmrg.h ├── expApplyH.h ├── iterativesolvers.h ├── readme.txt └── tMPS.h ├── V3_ROADMAP ├── itensor ├── Makefile ├── all.h ├── all_basic.h ├── all_mps.h ├── arrow.h ├── core.h ├── decomp.cc ├── decomp.h ├── decomp_impl.h ├── detail │ ├── algs.h │ ├── call_rewrite.h │ ├── gcounter.h │ └── skip_iterator.h ├── global.cc ├── global.h ├── hermitian.cc ├── index.cc ├── index.h ├── index_impl.h ├── indexset.cc ├── indexset.h ├── indexset_impl.h ├── itdata │ ├── applyfunc.h │ ├── combiner.cc │ ├── combiner.h │ ├── dense.cc │ ├── dense.h │ ├── diag.cc │ ├── diag.h │ ├── dotask.h │ ├── itdata.h │ ├── itlazy.cc │ ├── itlazy.h │ ├── qcombiner.cc │ ├── qcombiner.h │ ├── qdense.cc │ ├── qdense.h │ ├── qdiag.cc │ ├── qdiag.h │ ├── qutil.h │ ├── returntype.h │ ├── scalar.cc │ ├── scalar.h │ ├── storage_types.h │ ├── synchronized.h │ └── task_types.h ├── itensor.cc ├── itensor.h ├── itensor_impl.h ├── iterativesolvers.h ├── mps │ ├── DMRGObserver.h │ ├── TEvolObserver.h │ ├── autompo.cc │ ├── autompo.h │ ├── bondgate.h │ ├── dmrg.h │ ├── hambuilder.h │ ├── integrators.h │ ├── lattice │ │ ├── latticebond.h │ │ ├── square.h │ │ └── triangular.h │ ├── localmpo.h │ ├── localmpo_mps.h │ ├── localmposet.h │ ├── localop.h │ ├── mpo.cc │ ├── mpo.h │ ├── mpoalgs.cc │ ├── mps.cc │ ├── mps.h │ ├── mps_impl.h │ ├── mpsalgs.cc │ ├── observer.h │ ├── sites │ │ ├── Z3.h │ │ ├── boson.h │ │ ├── electron.h │ │ ├── fermion.h │ │ ├── spinhalf.h │ │ ├── spinone.h │ │ ├── spintwo.h │ │ └── tj.h │ ├── siteset.h │ ├── sweeps.h │ └── tevol.h ├── qn.cc ├── qn.h ├── real.h ├── smallstring.h ├── spectrum.cc ├── spectrum.h ├── svd.cc ├── tagset.cc ├── tagset.h ├── tensor │ ├── algs.cc │ ├── algs.h │ ├── algs_impl.h │ ├── contract.cc │ ├── contract.h │ ├── contract_impl.h │ ├── gemm.cc │ ├── lapack_wrap.cc │ ├── lapack_wrap.h │ ├── mat.cc │ ├── mat.h │ ├── mat_impl.h │ ├── matrange.h │ ├── permutation.h │ ├── range.h │ ├── rangeiter.h │ ├── slicemat.h │ ├── slicerange.h │ ├── sliceten.h │ ├── ten.h │ ├── ten_impl.h │ ├── teniter.h │ ├── types.h │ ├── vec.cc │ ├── vec.h │ └── vecrange.h ├── types.h └── util │ ├── args.cc │ ├── args.h │ ├── autovector.h │ ├── cplx_literal.h │ ├── cputime.cc │ ├── cputime.h │ ├── error.h │ ├── flstring.h │ ├── infarray.h │ ├── input.cc │ ├── input.h │ ├── iterate.h │ ├── itertools.h │ ├── multalloc.h │ ├── optional_ptr.h │ ├── parallel.h │ ├── print.h │ ├── print_macro.h │ ├── readwrite.h │ ├── safe_ptr.h │ ├── set_scoped.h │ ├── static_count.h │ ├── stats.h │ ├── stdx.h │ ├── str.h │ ├── tensorstats.h │ ├── timers.h │ ├── tinyformat.h │ ├── typelist.h │ └── vararray.h ├── jenkins ├── .dockerignore ├── Dockerfile.ubuntu └── Jenkinsfile ├── lib └── .gitignore ├── options.mk.sample ├── sample ├── DESCRIPTIONS ├── Heisenberg.h ├── Makefile ├── dmrg.cc ├── dmrg_table.cc ├── dmrgj1j2.cc ├── exthubbard.cc ├── hubbard_2d.cc ├── inputfile_dmrg_table ├── inputfile_exthubbard ├── mixedspin.cc └── trg.cc ├── tools ├── Makefile └── upgrademps.cc ├── tutorial ├── 01_one_site │ ├── Makefile │ └── one.cc ├── 02_two_site │ ├── Makefile │ └── two.cc ├── 03_svd │ ├── Makefile │ └── svd.cc ├── 04_mps │ ├── Makefile │ └── mps.cc ├── 05_gates │ ├── Makefile │ └── gates.cc ├── 06_DMRG │ ├── Makefile │ └── dmrg.cc ├── finiteT │ ├── INSTRUCTIONS │ ├── Makefile │ ├── S2.h │ ├── TStateObserver.h │ ├── ancilla.cc │ ├── inputfile_ancilla │ ├── inputfile_metts │ └── metts.cc └── project_template │ ├── Makefile │ ├── README │ ├── myappname.cc │ └── myclass.h └── unittest ├── ExpHeisenberg.h ├── ExpIsing.h ├── Makefile ├── algorithm_test.cc ├── args_test.cc ├── autompo_test.cc ├── bondgate_test.cc ├── catch.hpp ├── contract_test.cc ├── decomp_test.cc ├── index_test.cc ├── indexset_test.cc ├── iqtensor_test.cc ├── itensor_test.cc ├── iterativesolvers_test.cc ├── localop_test.cc ├── matrix_test.cc ├── mpo_test.cc ├── mps_mpo_test_helper.h ├── mps_test.cc ├── qn_test.cc ├── real_test.cc ├── regression_test.cc ├── siteset_test.cc ├── sparse_contract_test.cc ├── spectrum_test.cc ├── tensor_test.cc ├── test.cc ├── test.h ├── util_test.cc └── webpage_test.cc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo/DMRG/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Demo/DMRG/Makefile -------------------------------------------------------------------------------- /Demo/DMRG/argv_dmrg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Demo/DMRG/argv_dmrg.txt -------------------------------------------------------------------------------- /Demo/DMRG/ndmrg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Demo/DMRG/ndmrg.cc -------------------------------------------------------------------------------- /Demo/TDVP/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Demo/TDVP/Makefile -------------------------------------------------------------------------------- /Demo/TDVP/argv_tdvp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Demo/TDVP/argv_tdvp.txt -------------------------------------------------------------------------------- /Demo/TDVP/ntdvp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Demo/TDVP/ntdvp.cc -------------------------------------------------------------------------------- /Eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/CMakeLists.txt -------------------------------------------------------------------------------- /Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/Cholesky -------------------------------------------------------------------------------- /Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/CholmodSupport -------------------------------------------------------------------------------- /Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/Core -------------------------------------------------------------------------------- /Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/Dense -------------------------------------------------------------------------------- /Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/Eigen -------------------------------------------------------------------------------- /Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/Eigenvalues -------------------------------------------------------------------------------- /Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/Geometry -------------------------------------------------------------------------------- /Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/Householder -------------------------------------------------------------------------------- /Eigen/IterativeLinearSolvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/IterativeLinearSolvers -------------------------------------------------------------------------------- /Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/Jacobi -------------------------------------------------------------------------------- /Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/LU -------------------------------------------------------------------------------- /Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/MetisSupport -------------------------------------------------------------------------------- /Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/OrderingMethods -------------------------------------------------------------------------------- /Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/PardisoSupport -------------------------------------------------------------------------------- /Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/QR -------------------------------------------------------------------------------- /Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/SPQRSupport -------------------------------------------------------------------------------- /Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/SVD -------------------------------------------------------------------------------- /Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/Sparse -------------------------------------------------------------------------------- /Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/SparseCholesky -------------------------------------------------------------------------------- /Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/SparseCore -------------------------------------------------------------------------------- /Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/SparseLU -------------------------------------------------------------------------------- /Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/SparseQR -------------------------------------------------------------------------------- /Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/StdDeque -------------------------------------------------------------------------------- /Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/StdList -------------------------------------------------------------------------------- /Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/StdVector -------------------------------------------------------------------------------- /Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Cholesky/LDLT.h -------------------------------------------------------------------------------- /Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Cholesky/LLT.h -------------------------------------------------------------------------------- /Eigen/src/Cholesky/LLT_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Cholesky/LLT_LAPACKE.h -------------------------------------------------------------------------------- /Eigen/src/CholmodSupport/CholmodSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/CholmodSupport/CholmodSupport.h -------------------------------------------------------------------------------- /Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /Eigen/src/Core/ArrayWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/ArrayWrapper.h -------------------------------------------------------------------------------- /Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /Eigen/src/Core/AssignEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/AssignEvaluator.h -------------------------------------------------------------------------------- /Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/Assign_MKL.h -------------------------------------------------------------------------------- /Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/BandMatrix.h -------------------------------------------------------------------------------- /Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /Eigen/src/Core/BooleanRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/BooleanRedux.h -------------------------------------------------------------------------------- /Eigen/src/Core/CommaInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/CommaInitializer.h -------------------------------------------------------------------------------- /Eigen/src/Core/ConditionEstimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/ConditionEstimator.h -------------------------------------------------------------------------------- /Eigen/src/Core/CoreEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/CoreEvaluators.h -------------------------------------------------------------------------------- /Eigen/src/Core/CoreIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/CoreIterators.h -------------------------------------------------------------------------------- /Eigen/src/Core/CwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/CwiseBinaryOp.h -------------------------------------------------------------------------------- /Eigen/src/Core/CwiseNullaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/CwiseNullaryOp.h -------------------------------------------------------------------------------- /Eigen/src/Core/CwiseTernaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/CwiseTernaryOp.h -------------------------------------------------------------------------------- /Eigen/src/Core/CwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/CwiseUnaryOp.h -------------------------------------------------------------------------------- /Eigen/src/Core/CwiseUnaryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/CwiseUnaryView.h -------------------------------------------------------------------------------- /Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /Eigen/src/Core/DenseCoeffsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/DenseCoeffsBase.h -------------------------------------------------------------------------------- /Eigen/src/Core/DenseStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/DenseStorage.h -------------------------------------------------------------------------------- /Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /Eigen/src/Core/DiagonalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/DiagonalMatrix.h -------------------------------------------------------------------------------- /Eigen/src/Core/DiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/DiagonalProduct.h -------------------------------------------------------------------------------- /Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /Eigen/src/Core/ForceAlignedAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/ForceAlignedAccess.h -------------------------------------------------------------------------------- /Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /Eigen/src/Core/GeneralProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/GeneralProduct.h -------------------------------------------------------------------------------- /Eigen/src/Core/GenericPacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/GenericPacketMath.h -------------------------------------------------------------------------------- /Eigen/src/Core/GlobalFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/GlobalFunctions.h -------------------------------------------------------------------------------- /Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /Eigen/src/Core/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/Inverse.h -------------------------------------------------------------------------------- /Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /Eigen/src/Core/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/MathFunctions.h -------------------------------------------------------------------------------- /Eigen/src/Core/MathFunctionsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/MathFunctionsImpl.h -------------------------------------------------------------------------------- /Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/MatrixBase.h -------------------------------------------------------------------------------- /Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/NestByValue.h -------------------------------------------------------------------------------- /Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /Eigen/src/Core/PermutationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/PermutationMatrix.h -------------------------------------------------------------------------------- /Eigen/src/Core/PlainObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/PlainObjectBase.h -------------------------------------------------------------------------------- /Eigen/src/Core/Product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/Product.h -------------------------------------------------------------------------------- /Eigen/src/Core/ProductEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/ProductEvaluators.h -------------------------------------------------------------------------------- /Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /Eigen/src/Core/ReturnByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/ReturnByValue.h -------------------------------------------------------------------------------- /Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /Eigen/src/Core/SelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/SelfAdjointView.h -------------------------------------------------------------------------------- /Eigen/src/Core/SelfCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/SelfCwiseBinaryOp.h -------------------------------------------------------------------------------- /Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/Solve.h -------------------------------------------------------------------------------- /Eigen/src/Core/SolveTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/SolveTriangular.h -------------------------------------------------------------------------------- /Eigen/src/Core/SolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/SolverBase.h -------------------------------------------------------------------------------- /Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/StableNorm.h -------------------------------------------------------------------------------- /Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /Eigen/src/Core/Transpositions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/Transpositions.h -------------------------------------------------------------------------------- /Eigen/src/Core/TriangularMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/TriangularMatrix.h -------------------------------------------------------------------------------- /Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/VectorBlock.h -------------------------------------------------------------------------------- /Eigen/src/Core/VectorwiseOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/VectorwiseOp.h -------------------------------------------------------------------------------- /Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /Eigen/src/Core/arch/AVX/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/arch/AVX/Complex.h -------------------------------------------------------------------------------- /Eigen/src/Core/arch/AVX/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/arch/AVX/MathFunctions.h -------------------------------------------------------------------------------- /Eigen/src/Core/arch/AVX/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/arch/AVX/PacketMath.h -------------------------------------------------------------------------------- /Eigen/src/Core/arch/AVX/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/arch/AVX/TypeCasting.h -------------------------------------------------------------------------------- /Eigen/src/Core/arch/AVX512/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/arch/AVX512/MathFunctions.h -------------------------------------------------------------------------------- /Eigen/src/Core/arch/AVX512/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/arch/AVX512/PacketMath.h -------------------------------------------------------------------------------- /Eigen/src/Core/arch/AltiVec/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/arch/AltiVec/Complex.h -------------------------------------------------------------------------------- /Eigen/src/Core/arch/AltiVec/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/arch/AltiVec/MathFunctions.h -------------------------------------------------------------------------------- /Eigen/src/Core/arch/AltiVec/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/arch/AltiVec/PacketMath.h -------------------------------------------------------------------------------- /Eigen/src/Core/arch/CUDA/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/arch/CUDA/Complex.h -------------------------------------------------------------------------------- /Eigen/src/Core/arch/CUDA/Half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/arch/CUDA/Half.h -------------------------------------------------------------------------------- /Eigen/src/Core/arch/CUDA/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/arch/CUDA/MathFunctions.h -------------------------------------------------------------------------------- /Eigen/src/Core/arch/CUDA/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/arch/CUDA/PacketMath.h -------------------------------------------------------------------------------- /Eigen/src/Core/arch/CUDA/PacketMathHalf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/arch/CUDA/PacketMathHalf.h -------------------------------------------------------------------------------- /Eigen/src/Core/arch/CUDA/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/arch/CUDA/TypeCasting.h -------------------------------------------------------------------------------- /Eigen/src/Core/arch/Default/ConjHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/arch/Default/ConjHelper.h -------------------------------------------------------------------------------- /Eigen/src/Core/arch/Default/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/arch/Default/Settings.h -------------------------------------------------------------------------------- /Eigen/src/Core/arch/NEON/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/arch/NEON/Complex.h -------------------------------------------------------------------------------- /Eigen/src/Core/arch/NEON/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/arch/NEON/MathFunctions.h -------------------------------------------------------------------------------- /Eigen/src/Core/arch/NEON/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/arch/NEON/PacketMath.h -------------------------------------------------------------------------------- /Eigen/src/Core/arch/SSE/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/arch/SSE/Complex.h -------------------------------------------------------------------------------- /Eigen/src/Core/arch/SSE/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/arch/SSE/MathFunctions.h -------------------------------------------------------------------------------- /Eigen/src/Core/arch/SSE/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/arch/SSE/PacketMath.h -------------------------------------------------------------------------------- /Eigen/src/Core/arch/SSE/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/arch/SSE/TypeCasting.h -------------------------------------------------------------------------------- /Eigen/src/Core/arch/ZVector/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/arch/ZVector/Complex.h -------------------------------------------------------------------------------- /Eigen/src/Core/arch/ZVector/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/arch/ZVector/MathFunctions.h -------------------------------------------------------------------------------- /Eigen/src/Core/arch/ZVector/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/arch/ZVector/PacketMath.h -------------------------------------------------------------------------------- /Eigen/src/Core/functors/AssignmentFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/functors/AssignmentFunctors.h -------------------------------------------------------------------------------- /Eigen/src/Core/functors/BinaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/functors/BinaryFunctors.h -------------------------------------------------------------------------------- /Eigen/src/Core/functors/NullaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/functors/NullaryFunctors.h -------------------------------------------------------------------------------- /Eigen/src/Core/functors/StlFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/functors/StlFunctors.h -------------------------------------------------------------------------------- /Eigen/src/Core/functors/TernaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/functors/TernaryFunctors.h -------------------------------------------------------------------------------- /Eigen/src/Core/functors/UnaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/functors/UnaryFunctors.h -------------------------------------------------------------------------------- /Eigen/src/Core/products/GeneralBlockPanelKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/products/GeneralBlockPanelKernel.h -------------------------------------------------------------------------------- /Eigen/src/Core/products/GeneralMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/products/GeneralMatrixMatrix.h -------------------------------------------------------------------------------- /Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h -------------------------------------------------------------------------------- /Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h -------------------------------------------------------------------------------- /Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /Eigen/src/Core/products/GeneralMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/products/GeneralMatrixVector.h -------------------------------------------------------------------------------- /Eigen/src/Core/products/GeneralMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h -------------------------------------------------------------------------------- /Eigen/src/Core/products/Parallelizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/products/Parallelizer.h -------------------------------------------------------------------------------- /Eigen/src/Core/products/SelfadjointMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/products/SelfadjointMatrixMatrix.h -------------------------------------------------------------------------------- /Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /Eigen/src/Core/products/SelfadjointMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/products/SelfadjointMatrixVector.h -------------------------------------------------------------------------------- /Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h -------------------------------------------------------------------------------- /Eigen/src/Core/products/SelfadjointProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/products/SelfadjointProduct.h -------------------------------------------------------------------------------- /Eigen/src/Core/products/SelfadjointRank2Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/products/SelfadjointRank2Update.h -------------------------------------------------------------------------------- /Eigen/src/Core/products/TriangularMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/products/TriangularMatrixMatrix.h -------------------------------------------------------------------------------- /Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /Eigen/src/Core/products/TriangularMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/products/TriangularMatrixVector.h -------------------------------------------------------------------------------- /Eigen/src/Core/products/TriangularMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h -------------------------------------------------------------------------------- /Eigen/src/Core/products/TriangularSolverMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/products/TriangularSolverMatrix.h -------------------------------------------------------------------------------- /Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h -------------------------------------------------------------------------------- /Eigen/src/Core/products/TriangularSolverVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/products/TriangularSolverVector.h -------------------------------------------------------------------------------- /Eigen/src/Core/util/BlasUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/util/BlasUtil.h -------------------------------------------------------------------------------- /Eigen/src/Core/util/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/util/Constants.h -------------------------------------------------------------------------------- /Eigen/src/Core/util/DisableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/util/DisableStupidWarnings.h -------------------------------------------------------------------------------- /Eigen/src/Core/util/ForwardDeclarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/util/ForwardDeclarations.h -------------------------------------------------------------------------------- /Eigen/src/Core/util/MKL_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/util/MKL_support.h -------------------------------------------------------------------------------- /Eigen/src/Core/util/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/util/Macros.h -------------------------------------------------------------------------------- /Eigen/src/Core/util/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/util/Memory.h -------------------------------------------------------------------------------- /Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /Eigen/src/Core/util/NonMPL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/util/NonMPL2.h -------------------------------------------------------------------------------- /Eigen/src/Core/util/ReenableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/util/ReenableStupidWarnings.h -------------------------------------------------------------------------------- /Eigen/src/Core/util/StaticAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/util/StaticAssert.h -------------------------------------------------------------------------------- /Eigen/src/Core/util/XprHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Core/util/XprHelper.h -------------------------------------------------------------------------------- /Eigen/src/Eigenvalues/ComplexEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Eigenvalues/ComplexEigenSolver.h -------------------------------------------------------------------------------- /Eigen/src/Eigenvalues/ComplexSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Eigenvalues/ComplexSchur.h -------------------------------------------------------------------------------- /Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h -------------------------------------------------------------------------------- /Eigen/src/Eigenvalues/EigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Eigenvalues/EigenSolver.h -------------------------------------------------------------------------------- /Eigen/src/Eigenvalues/GeneralizedEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h -------------------------------------------------------------------------------- /Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /Eigen/src/Eigenvalues/HessenbergDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Eigenvalues/HessenbergDecomposition.h -------------------------------------------------------------------------------- /Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h -------------------------------------------------------------------------------- /Eigen/src/Eigenvalues/RealQZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Eigenvalues/RealQZ.h -------------------------------------------------------------------------------- /Eigen/src/Eigenvalues/RealSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Eigenvalues/RealSchur.h -------------------------------------------------------------------------------- /Eigen/src/Eigenvalues/RealSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h -------------------------------------------------------------------------------- /Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h -------------------------------------------------------------------------------- /Eigen/src/Eigenvalues/Tridiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Eigenvalues/Tridiagonalization.h -------------------------------------------------------------------------------- /Eigen/src/Geometry/AlignedBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Geometry/AlignedBox.h -------------------------------------------------------------------------------- /Eigen/src/Geometry/AngleAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Geometry/AngleAxis.h -------------------------------------------------------------------------------- /Eigen/src/Geometry/EulerAngles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Geometry/EulerAngles.h -------------------------------------------------------------------------------- /Eigen/src/Geometry/Homogeneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Geometry/Homogeneous.h -------------------------------------------------------------------------------- /Eigen/src/Geometry/Hyperplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Geometry/Hyperplane.h -------------------------------------------------------------------------------- /Eigen/src/Geometry/OrthoMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Geometry/OrthoMethods.h -------------------------------------------------------------------------------- /Eigen/src/Geometry/ParametrizedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Geometry/ParametrizedLine.h -------------------------------------------------------------------------------- /Eigen/src/Geometry/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Geometry/Quaternion.h -------------------------------------------------------------------------------- /Eigen/src/Geometry/Rotation2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Geometry/Rotation2D.h -------------------------------------------------------------------------------- /Eigen/src/Geometry/RotationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Geometry/RotationBase.h -------------------------------------------------------------------------------- /Eigen/src/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Geometry/Scaling.h -------------------------------------------------------------------------------- /Eigen/src/Geometry/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Geometry/Transform.h -------------------------------------------------------------------------------- /Eigen/src/Geometry/Translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Geometry/Translation.h -------------------------------------------------------------------------------- /Eigen/src/Geometry/Umeyama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Geometry/Umeyama.h -------------------------------------------------------------------------------- /Eigen/src/Geometry/arch/Geometry_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Geometry/arch/Geometry_SSE.h -------------------------------------------------------------------------------- /Eigen/src/Householder/BlockHouseholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Householder/BlockHouseholder.h -------------------------------------------------------------------------------- /Eigen/src/Householder/Householder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Householder/Householder.h -------------------------------------------------------------------------------- /Eigen/src/Householder/HouseholderSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Householder/HouseholderSequence.h -------------------------------------------------------------------------------- /Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h -------------------------------------------------------------------------------- /Eigen/src/IterativeLinearSolvers/BiCGSTAB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h -------------------------------------------------------------------------------- /Eigen/src/IterativeLinearSolvers/ConjugateGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h -------------------------------------------------------------------------------- /Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h -------------------------------------------------------------------------------- /Eigen/src/IterativeLinearSolvers/IncompleteLUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h -------------------------------------------------------------------------------- /Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h -------------------------------------------------------------------------------- /Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h -------------------------------------------------------------------------------- /Eigen/src/IterativeLinearSolvers/SolveWithGuess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h -------------------------------------------------------------------------------- /Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/Jacobi/Jacobi.h -------------------------------------------------------------------------------- /Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/LU/Determinant.h -------------------------------------------------------------------------------- /Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/LU/FullPivLU.h -------------------------------------------------------------------------------- /Eigen/src/LU/InverseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/LU/InverseImpl.h -------------------------------------------------------------------------------- /Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/LU/PartialPivLU.h -------------------------------------------------------------------------------- /Eigen/src/LU/PartialPivLU_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/LU/PartialPivLU_LAPACKE.h -------------------------------------------------------------------------------- /Eigen/src/LU/arch/Inverse_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/LU/arch/Inverse_SSE.h -------------------------------------------------------------------------------- /Eigen/src/MetisSupport/MetisSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/MetisSupport/MetisSupport.h -------------------------------------------------------------------------------- /Eigen/src/OrderingMethods/Amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/OrderingMethods/Amd.h -------------------------------------------------------------------------------- /Eigen/src/OrderingMethods/Eigen_Colamd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/OrderingMethods/Eigen_Colamd.h -------------------------------------------------------------------------------- /Eigen/src/OrderingMethods/Ordering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/OrderingMethods/Ordering.h -------------------------------------------------------------------------------- /Eigen/src/PaStiXSupport/PaStiXSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/PaStiXSupport/PaStiXSupport.h -------------------------------------------------------------------------------- /Eigen/src/PardisoSupport/PardisoSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/PardisoSupport/PardisoSupport.h -------------------------------------------------------------------------------- /Eigen/src/QR/ColPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/QR/ColPivHouseholderQR.h -------------------------------------------------------------------------------- /Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /Eigen/src/QR/CompleteOrthogonalDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/QR/CompleteOrthogonalDecomposition.h -------------------------------------------------------------------------------- /Eigen/src/QR/FullPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/QR/FullPivHouseholderQR.h -------------------------------------------------------------------------------- /Eigen/src/QR/HouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/QR/HouseholderQR.h -------------------------------------------------------------------------------- /Eigen/src/QR/HouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/QR/HouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /Eigen/src/SPQRSupport/SuiteSparseQRSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h -------------------------------------------------------------------------------- /Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SVD/BDCSVD.h -------------------------------------------------------------------------------- /Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SVD/JacobiSVD.h -------------------------------------------------------------------------------- /Eigen/src/SVD/JacobiSVD_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SVD/JacobiSVD_LAPACKE.h -------------------------------------------------------------------------------- /Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SVD/SVDBase.h -------------------------------------------------------------------------------- /Eigen/src/SVD/UpperBidiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SVD/UpperBidiagonalization.h -------------------------------------------------------------------------------- /Eigen/src/SparseCholesky/SimplicialCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCholesky/SimplicialCholesky.h -------------------------------------------------------------------------------- /Eigen/src/SparseCholesky/SimplicialCholesky_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/AmbiVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/AmbiVector.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/CompressedStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/CompressedStorage.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/ConservativeSparseSparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/MappedSparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/MappedSparseMatrix.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/SparseAssign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/SparseAssign.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/SparseBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/SparseBlock.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/SparseColEtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/SparseColEtree.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/SparseCompressedBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/SparseCompressedBase.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/SparseCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/SparseCwiseBinaryOp.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/SparseCwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/SparseCwiseUnaryOp.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/SparseDenseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/SparseDenseProduct.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/SparseDiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/SparseDiagonalProduct.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/SparseDot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/SparseDot.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/SparseFuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/SparseFuzzy.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/SparseMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/SparseMap.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/SparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/SparseMatrix.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/SparseMatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/SparseMatrixBase.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/SparsePermutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/SparsePermutation.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/SparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/SparseProduct.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/SparseRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/SparseRedux.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/SparseRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/SparseRef.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/SparseSelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/SparseSelfAdjointView.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/SparseSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/SparseSolverBase.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/SparseSparseProductWithPruning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/SparseSparseProductWithPruning.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/SparseTranspose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/SparseTranspose.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/SparseTriangularView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/SparseTriangularView.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/SparseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/SparseUtil.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/SparseVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/SparseVector.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/SparseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/SparseView.h -------------------------------------------------------------------------------- /Eigen/src/SparseCore/TriangularSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseCore/TriangularSolver.h -------------------------------------------------------------------------------- /Eigen/src/SparseLU/SparseLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseLU/SparseLU.h -------------------------------------------------------------------------------- /Eigen/src/SparseLU/SparseLUImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseLU/SparseLUImpl.h -------------------------------------------------------------------------------- /Eigen/src/SparseLU/SparseLU_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseLU/SparseLU_Memory.h -------------------------------------------------------------------------------- /Eigen/src/SparseLU/SparseLU_Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseLU/SparseLU_Structs.h -------------------------------------------------------------------------------- /Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h -------------------------------------------------------------------------------- /Eigen/src/SparseLU/SparseLU_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseLU/SparseLU_Utils.h -------------------------------------------------------------------------------- /Eigen/src/SparseLU/SparseLU_column_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseLU/SparseLU_column_bmod.h -------------------------------------------------------------------------------- /Eigen/src/SparseLU/SparseLU_column_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseLU/SparseLU_column_dfs.h -------------------------------------------------------------------------------- /Eigen/src/SparseLU/SparseLU_copy_to_ucol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h -------------------------------------------------------------------------------- /Eigen/src/SparseLU/SparseLU_gemm_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseLU/SparseLU_gemm_kernel.h -------------------------------------------------------------------------------- /Eigen/src/SparseLU/SparseLU_heap_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h -------------------------------------------------------------------------------- /Eigen/src/SparseLU/SparseLU_kernel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseLU/SparseLU_kernel_bmod.h -------------------------------------------------------------------------------- /Eigen/src/SparseLU/SparseLU_panel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseLU/SparseLU_panel_bmod.h -------------------------------------------------------------------------------- /Eigen/src/SparseLU/SparseLU_panel_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseLU/SparseLU_panel_dfs.h -------------------------------------------------------------------------------- /Eigen/src/SparseLU/SparseLU_pivotL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseLU/SparseLU_pivotL.h -------------------------------------------------------------------------------- /Eigen/src/SparseLU/SparseLU_pruneL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseLU/SparseLU_pruneL.h -------------------------------------------------------------------------------- /Eigen/src/SparseLU/SparseLU_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseLU/SparseLU_relax_snode.h -------------------------------------------------------------------------------- /Eigen/src/SparseQR/SparseQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SparseQR/SparseQR.h -------------------------------------------------------------------------------- /Eigen/src/StlSupport/StdDeque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/StlSupport/StdDeque.h -------------------------------------------------------------------------------- /Eigen/src/StlSupport/StdList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/StlSupport/StdList.h -------------------------------------------------------------------------------- /Eigen/src/StlSupport/StdVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/StlSupport/StdVector.h -------------------------------------------------------------------------------- /Eigen/src/StlSupport/details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/StlSupport/details.h -------------------------------------------------------------------------------- /Eigen/src/SuperLUSupport/SuperLUSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/SuperLUSupport/SuperLUSupport.h -------------------------------------------------------------------------------- /Eigen/src/UmfPackSupport/UmfPackSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/UmfPackSupport/UmfPackSupport.h -------------------------------------------------------------------------------- /Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /Eigen/src/misc/RealSvd2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/misc/RealSvd2x2.h -------------------------------------------------------------------------------- /Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /Eigen/src/misc/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/misc/lapack.h -------------------------------------------------------------------------------- /Eigen/src/misc/lapacke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/misc/lapacke.h -------------------------------------------------------------------------------- /Eigen/src/misc/lapacke_mangling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/misc/lapacke_mangling.h -------------------------------------------------------------------------------- /Eigen/src/plugins/ArrayCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/plugins/ArrayCwiseBinaryOps.h -------------------------------------------------------------------------------- /Eigen/src/plugins/ArrayCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/plugins/ArrayCwiseUnaryOps.h -------------------------------------------------------------------------------- /Eigen/src/plugins/BlockMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/plugins/BlockMethods.h -------------------------------------------------------------------------------- /Eigen/src/plugins/CommonCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/plugins/CommonCwiseBinaryOps.h -------------------------------------------------------------------------------- /Eigen/src/plugins/CommonCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/plugins/CommonCwiseUnaryOps.h -------------------------------------------------------------------------------- /Eigen/src/plugins/MatrixCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/plugins/MatrixCwiseBinaryOps.h -------------------------------------------------------------------------------- /Eigen/src/plugins/MatrixCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Eigen/src/plugins/MatrixCwiseUnaryOps.h -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/README.md -------------------------------------------------------------------------------- /SpectraItensor/CplxGenEigsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/SpectraItensor/CplxGenEigsBase.h -------------------------------------------------------------------------------- /SpectraItensor/CplxGenEigsSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/SpectraItensor/CplxGenEigsSolver.h -------------------------------------------------------------------------------- /SpectraItensor/GenEigsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/SpectraItensor/GenEigsBase.h -------------------------------------------------------------------------------- /SpectraItensor/GenEigsSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/SpectraItensor/GenEigsSolver.h -------------------------------------------------------------------------------- /SpectraItensor/LinAlg/Arnoldi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/SpectraItensor/LinAlg/Arnoldi.h -------------------------------------------------------------------------------- /SpectraItensor/LinAlg/CplxArnoldi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/SpectraItensor/LinAlg/CplxArnoldi.h -------------------------------------------------------------------------------- /SpectraItensor/LinAlg/CplxUpperHessenbergQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/SpectraItensor/LinAlg/CplxUpperHessenbergQR.h -------------------------------------------------------------------------------- /SpectraItensor/LinAlg/DoubleShiftQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/SpectraItensor/LinAlg/DoubleShiftQR.h -------------------------------------------------------------------------------- /SpectraItensor/LinAlg/UpperHessenbergEigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/SpectraItensor/LinAlg/UpperHessenbergEigen.h -------------------------------------------------------------------------------- /SpectraItensor/LinAlg/UpperHessenbergQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/SpectraItensor/LinAlg/UpperHessenbergQR.h -------------------------------------------------------------------------------- /SpectraItensor/Util/CompInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/SpectraItensor/Util/CompInfo.h -------------------------------------------------------------------------------- /SpectraItensor/Util/SelectionRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/SpectraItensor/Util/SelectionRule.h -------------------------------------------------------------------------------- /SpectraItensor/Util/SimpleRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/SpectraItensor/Util/SimpleRandom.h -------------------------------------------------------------------------------- /SpectraItensor/Util/TypeTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/SpectraItensor/Util/TypeTraits.h -------------------------------------------------------------------------------- /SpectraItensor/cplxdmrg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/SpectraItensor/cplxdmrg.h -------------------------------------------------------------------------------- /SpectraItensor/cplxdmrgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/SpectraItensor/cplxdmrgs.h -------------------------------------------------------------------------------- /SpectraItensor/dmrg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/SpectraItensor/dmrg.h -------------------------------------------------------------------------------- /SpectraItensor/expApplyH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/SpectraItensor/expApplyH.h -------------------------------------------------------------------------------- /SpectraItensor/iterativesolvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/SpectraItensor/iterativesolvers.h -------------------------------------------------------------------------------- /SpectraItensor/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/SpectraItensor/readme.txt -------------------------------------------------------------------------------- /SpectraItensor/tMPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/SpectraItensor/tMPS.h -------------------------------------------------------------------------------- /V3_ROADMAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/V3_ROADMAP -------------------------------------------------------------------------------- /itensor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/Makefile -------------------------------------------------------------------------------- /itensor/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/all.h -------------------------------------------------------------------------------- /itensor/all_basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/all_basic.h -------------------------------------------------------------------------------- /itensor/all_mps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/all_mps.h -------------------------------------------------------------------------------- /itensor/arrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/arrow.h -------------------------------------------------------------------------------- /itensor/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/core.h -------------------------------------------------------------------------------- /itensor/decomp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/decomp.cc -------------------------------------------------------------------------------- /itensor/decomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/decomp.h -------------------------------------------------------------------------------- /itensor/decomp_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/decomp_impl.h -------------------------------------------------------------------------------- /itensor/detail/algs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/detail/algs.h -------------------------------------------------------------------------------- /itensor/detail/call_rewrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/detail/call_rewrite.h -------------------------------------------------------------------------------- /itensor/detail/gcounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/detail/gcounter.h -------------------------------------------------------------------------------- /itensor/detail/skip_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/detail/skip_iterator.h -------------------------------------------------------------------------------- /itensor/global.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/global.cc -------------------------------------------------------------------------------- /itensor/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/global.h -------------------------------------------------------------------------------- /itensor/hermitian.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/hermitian.cc -------------------------------------------------------------------------------- /itensor/index.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/index.cc -------------------------------------------------------------------------------- /itensor/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/index.h -------------------------------------------------------------------------------- /itensor/index_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/index_impl.h -------------------------------------------------------------------------------- /itensor/indexset.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/indexset.cc -------------------------------------------------------------------------------- /itensor/indexset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/indexset.h -------------------------------------------------------------------------------- /itensor/indexset_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/indexset_impl.h -------------------------------------------------------------------------------- /itensor/itdata/applyfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/itdata/applyfunc.h -------------------------------------------------------------------------------- /itensor/itdata/combiner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/itdata/combiner.cc -------------------------------------------------------------------------------- /itensor/itdata/combiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/itdata/combiner.h -------------------------------------------------------------------------------- /itensor/itdata/dense.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/itdata/dense.cc -------------------------------------------------------------------------------- /itensor/itdata/dense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/itdata/dense.h -------------------------------------------------------------------------------- /itensor/itdata/diag.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/itdata/diag.cc -------------------------------------------------------------------------------- /itensor/itdata/diag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/itdata/diag.h -------------------------------------------------------------------------------- /itensor/itdata/dotask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/itdata/dotask.h -------------------------------------------------------------------------------- /itensor/itdata/itdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/itdata/itdata.h -------------------------------------------------------------------------------- /itensor/itdata/itlazy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/itdata/itlazy.cc -------------------------------------------------------------------------------- /itensor/itdata/itlazy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/itdata/itlazy.h -------------------------------------------------------------------------------- /itensor/itdata/qcombiner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/itdata/qcombiner.cc -------------------------------------------------------------------------------- /itensor/itdata/qcombiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/itdata/qcombiner.h -------------------------------------------------------------------------------- /itensor/itdata/qdense.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/itdata/qdense.cc -------------------------------------------------------------------------------- /itensor/itdata/qdense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/itdata/qdense.h -------------------------------------------------------------------------------- /itensor/itdata/qdiag.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/itdata/qdiag.cc -------------------------------------------------------------------------------- /itensor/itdata/qdiag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/itdata/qdiag.h -------------------------------------------------------------------------------- /itensor/itdata/qutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/itdata/qutil.h -------------------------------------------------------------------------------- /itensor/itdata/returntype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/itdata/returntype.h -------------------------------------------------------------------------------- /itensor/itdata/scalar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/itdata/scalar.cc -------------------------------------------------------------------------------- /itensor/itdata/scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/itdata/scalar.h -------------------------------------------------------------------------------- /itensor/itdata/storage_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/itdata/storage_types.h -------------------------------------------------------------------------------- /itensor/itdata/synchronized.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/itdata/synchronized.h -------------------------------------------------------------------------------- /itensor/itdata/task_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/itdata/task_types.h -------------------------------------------------------------------------------- /itensor/itensor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/itensor.cc -------------------------------------------------------------------------------- /itensor/itensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/itensor.h -------------------------------------------------------------------------------- /itensor/itensor_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/itensor_impl.h -------------------------------------------------------------------------------- /itensor/iterativesolvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/iterativesolvers.h -------------------------------------------------------------------------------- /itensor/mps/DMRGObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/DMRGObserver.h -------------------------------------------------------------------------------- /itensor/mps/TEvolObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/TEvolObserver.h -------------------------------------------------------------------------------- /itensor/mps/autompo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/autompo.cc -------------------------------------------------------------------------------- /itensor/mps/autompo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/autompo.h -------------------------------------------------------------------------------- /itensor/mps/bondgate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/bondgate.h -------------------------------------------------------------------------------- /itensor/mps/dmrg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/dmrg.h -------------------------------------------------------------------------------- /itensor/mps/hambuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/hambuilder.h -------------------------------------------------------------------------------- /itensor/mps/integrators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/integrators.h -------------------------------------------------------------------------------- /itensor/mps/lattice/latticebond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/lattice/latticebond.h -------------------------------------------------------------------------------- /itensor/mps/lattice/square.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/lattice/square.h -------------------------------------------------------------------------------- /itensor/mps/lattice/triangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/lattice/triangular.h -------------------------------------------------------------------------------- /itensor/mps/localmpo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/localmpo.h -------------------------------------------------------------------------------- /itensor/mps/localmpo_mps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/localmpo_mps.h -------------------------------------------------------------------------------- /itensor/mps/localmposet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/localmposet.h -------------------------------------------------------------------------------- /itensor/mps/localop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/localop.h -------------------------------------------------------------------------------- /itensor/mps/mpo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/mpo.cc -------------------------------------------------------------------------------- /itensor/mps/mpo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/mpo.h -------------------------------------------------------------------------------- /itensor/mps/mpoalgs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/mpoalgs.cc -------------------------------------------------------------------------------- /itensor/mps/mps.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/mps.cc -------------------------------------------------------------------------------- /itensor/mps/mps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/mps.h -------------------------------------------------------------------------------- /itensor/mps/mps_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/mps_impl.h -------------------------------------------------------------------------------- /itensor/mps/mpsalgs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/mpsalgs.cc -------------------------------------------------------------------------------- /itensor/mps/observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/observer.h -------------------------------------------------------------------------------- /itensor/mps/sites/Z3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/sites/Z3.h -------------------------------------------------------------------------------- /itensor/mps/sites/boson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/sites/boson.h -------------------------------------------------------------------------------- /itensor/mps/sites/electron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/sites/electron.h -------------------------------------------------------------------------------- /itensor/mps/sites/fermion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/sites/fermion.h -------------------------------------------------------------------------------- /itensor/mps/sites/spinhalf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/sites/spinhalf.h -------------------------------------------------------------------------------- /itensor/mps/sites/spinone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/sites/spinone.h -------------------------------------------------------------------------------- /itensor/mps/sites/spintwo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/sites/spintwo.h -------------------------------------------------------------------------------- /itensor/mps/sites/tj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/sites/tj.h -------------------------------------------------------------------------------- /itensor/mps/siteset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/siteset.h -------------------------------------------------------------------------------- /itensor/mps/sweeps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/sweeps.h -------------------------------------------------------------------------------- /itensor/mps/tevol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/mps/tevol.h -------------------------------------------------------------------------------- /itensor/qn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/qn.cc -------------------------------------------------------------------------------- /itensor/qn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/qn.h -------------------------------------------------------------------------------- /itensor/real.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/real.h -------------------------------------------------------------------------------- /itensor/smallstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/smallstring.h -------------------------------------------------------------------------------- /itensor/spectrum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/spectrum.cc -------------------------------------------------------------------------------- /itensor/spectrum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/spectrum.h -------------------------------------------------------------------------------- /itensor/svd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/svd.cc -------------------------------------------------------------------------------- /itensor/tagset.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tagset.cc -------------------------------------------------------------------------------- /itensor/tagset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tagset.h -------------------------------------------------------------------------------- /itensor/tensor/algs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tensor/algs.cc -------------------------------------------------------------------------------- /itensor/tensor/algs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tensor/algs.h -------------------------------------------------------------------------------- /itensor/tensor/algs_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tensor/algs_impl.h -------------------------------------------------------------------------------- /itensor/tensor/contract.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tensor/contract.cc -------------------------------------------------------------------------------- /itensor/tensor/contract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tensor/contract.h -------------------------------------------------------------------------------- /itensor/tensor/contract_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tensor/contract_impl.h -------------------------------------------------------------------------------- /itensor/tensor/gemm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tensor/gemm.cc -------------------------------------------------------------------------------- /itensor/tensor/lapack_wrap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tensor/lapack_wrap.cc -------------------------------------------------------------------------------- /itensor/tensor/lapack_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tensor/lapack_wrap.h -------------------------------------------------------------------------------- /itensor/tensor/mat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tensor/mat.cc -------------------------------------------------------------------------------- /itensor/tensor/mat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tensor/mat.h -------------------------------------------------------------------------------- /itensor/tensor/mat_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tensor/mat_impl.h -------------------------------------------------------------------------------- /itensor/tensor/matrange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tensor/matrange.h -------------------------------------------------------------------------------- /itensor/tensor/permutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tensor/permutation.h -------------------------------------------------------------------------------- /itensor/tensor/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tensor/range.h -------------------------------------------------------------------------------- /itensor/tensor/rangeiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tensor/rangeiter.h -------------------------------------------------------------------------------- /itensor/tensor/slicemat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tensor/slicemat.h -------------------------------------------------------------------------------- /itensor/tensor/slicerange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tensor/slicerange.h -------------------------------------------------------------------------------- /itensor/tensor/sliceten.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tensor/sliceten.h -------------------------------------------------------------------------------- /itensor/tensor/ten.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tensor/ten.h -------------------------------------------------------------------------------- /itensor/tensor/ten_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tensor/ten_impl.h -------------------------------------------------------------------------------- /itensor/tensor/teniter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tensor/teniter.h -------------------------------------------------------------------------------- /itensor/tensor/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tensor/types.h -------------------------------------------------------------------------------- /itensor/tensor/vec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tensor/vec.cc -------------------------------------------------------------------------------- /itensor/tensor/vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tensor/vec.h -------------------------------------------------------------------------------- /itensor/tensor/vecrange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/tensor/vecrange.h -------------------------------------------------------------------------------- /itensor/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/types.h -------------------------------------------------------------------------------- /itensor/util/args.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/args.cc -------------------------------------------------------------------------------- /itensor/util/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/args.h -------------------------------------------------------------------------------- /itensor/util/autovector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/autovector.h -------------------------------------------------------------------------------- /itensor/util/cplx_literal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/cplx_literal.h -------------------------------------------------------------------------------- /itensor/util/cputime.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/cputime.cc -------------------------------------------------------------------------------- /itensor/util/cputime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/cputime.h -------------------------------------------------------------------------------- /itensor/util/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/error.h -------------------------------------------------------------------------------- /itensor/util/flstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/flstring.h -------------------------------------------------------------------------------- /itensor/util/infarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/infarray.h -------------------------------------------------------------------------------- /itensor/util/input.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/input.cc -------------------------------------------------------------------------------- /itensor/util/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/input.h -------------------------------------------------------------------------------- /itensor/util/iterate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/iterate.h -------------------------------------------------------------------------------- /itensor/util/itertools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/itertools.h -------------------------------------------------------------------------------- /itensor/util/multalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/multalloc.h -------------------------------------------------------------------------------- /itensor/util/optional_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/optional_ptr.h -------------------------------------------------------------------------------- /itensor/util/parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/parallel.h -------------------------------------------------------------------------------- /itensor/util/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/print.h -------------------------------------------------------------------------------- /itensor/util/print_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/print_macro.h -------------------------------------------------------------------------------- /itensor/util/readwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/readwrite.h -------------------------------------------------------------------------------- /itensor/util/safe_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/safe_ptr.h -------------------------------------------------------------------------------- /itensor/util/set_scoped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/set_scoped.h -------------------------------------------------------------------------------- /itensor/util/static_count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/static_count.h -------------------------------------------------------------------------------- /itensor/util/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/stats.h -------------------------------------------------------------------------------- /itensor/util/stdx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/stdx.h -------------------------------------------------------------------------------- /itensor/util/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/str.h -------------------------------------------------------------------------------- /itensor/util/tensorstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/tensorstats.h -------------------------------------------------------------------------------- /itensor/util/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/timers.h -------------------------------------------------------------------------------- /itensor/util/tinyformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/tinyformat.h -------------------------------------------------------------------------------- /itensor/util/typelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/typelist.h -------------------------------------------------------------------------------- /itensor/util/vararray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/itensor/util/vararray.h -------------------------------------------------------------------------------- /jenkins/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/jenkins/.dockerignore -------------------------------------------------------------------------------- /jenkins/Dockerfile.ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/jenkins/Dockerfile.ubuntu -------------------------------------------------------------------------------- /jenkins/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/jenkins/Jenkinsfile -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /options.mk.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/options.mk.sample -------------------------------------------------------------------------------- /sample/DESCRIPTIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/sample/DESCRIPTIONS -------------------------------------------------------------------------------- /sample/Heisenberg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/sample/Heisenberg.h -------------------------------------------------------------------------------- /sample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/sample/Makefile -------------------------------------------------------------------------------- /sample/dmrg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/sample/dmrg.cc -------------------------------------------------------------------------------- /sample/dmrg_table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/sample/dmrg_table.cc -------------------------------------------------------------------------------- /sample/dmrgj1j2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/sample/dmrgj1j2.cc -------------------------------------------------------------------------------- /sample/exthubbard.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/sample/exthubbard.cc -------------------------------------------------------------------------------- /sample/hubbard_2d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/sample/hubbard_2d.cc -------------------------------------------------------------------------------- /sample/inputfile_dmrg_table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/sample/inputfile_dmrg_table -------------------------------------------------------------------------------- /sample/inputfile_exthubbard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/sample/inputfile_exthubbard -------------------------------------------------------------------------------- /sample/mixedspin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/sample/mixedspin.cc -------------------------------------------------------------------------------- /sample/trg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/sample/trg.cc -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/upgrademps.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/tools/upgrademps.cc -------------------------------------------------------------------------------- /tutorial/01_one_site/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/tutorial/01_one_site/Makefile -------------------------------------------------------------------------------- /tutorial/01_one_site/one.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/tutorial/01_one_site/one.cc -------------------------------------------------------------------------------- /tutorial/02_two_site/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/tutorial/02_two_site/Makefile -------------------------------------------------------------------------------- /tutorial/02_two_site/two.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/tutorial/02_two_site/two.cc -------------------------------------------------------------------------------- /tutorial/03_svd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/tutorial/03_svd/Makefile -------------------------------------------------------------------------------- /tutorial/03_svd/svd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/tutorial/03_svd/svd.cc -------------------------------------------------------------------------------- /tutorial/04_mps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/tutorial/04_mps/Makefile -------------------------------------------------------------------------------- /tutorial/04_mps/mps.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/tutorial/04_mps/mps.cc -------------------------------------------------------------------------------- /tutorial/05_gates/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/tutorial/05_gates/Makefile -------------------------------------------------------------------------------- /tutorial/05_gates/gates.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/tutorial/05_gates/gates.cc -------------------------------------------------------------------------------- /tutorial/06_DMRG/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/tutorial/06_DMRG/Makefile -------------------------------------------------------------------------------- /tutorial/06_DMRG/dmrg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/tutorial/06_DMRG/dmrg.cc -------------------------------------------------------------------------------- /tutorial/finiteT/INSTRUCTIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/tutorial/finiteT/INSTRUCTIONS -------------------------------------------------------------------------------- /tutorial/finiteT/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/tutorial/finiteT/Makefile -------------------------------------------------------------------------------- /tutorial/finiteT/S2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/tutorial/finiteT/S2.h -------------------------------------------------------------------------------- /tutorial/finiteT/TStateObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/tutorial/finiteT/TStateObserver.h -------------------------------------------------------------------------------- /tutorial/finiteT/ancilla.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/tutorial/finiteT/ancilla.cc -------------------------------------------------------------------------------- /tutorial/finiteT/inputfile_ancilla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/tutorial/finiteT/inputfile_ancilla -------------------------------------------------------------------------------- /tutorial/finiteT/inputfile_metts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/tutorial/finiteT/inputfile_metts -------------------------------------------------------------------------------- /tutorial/finiteT/metts.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/tutorial/finiteT/metts.cc -------------------------------------------------------------------------------- /tutorial/project_template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/tutorial/project_template/Makefile -------------------------------------------------------------------------------- /tutorial/project_template/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/tutorial/project_template/README -------------------------------------------------------------------------------- /tutorial/project_template/myappname.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/tutorial/project_template/myappname.cc -------------------------------------------------------------------------------- /tutorial/project_template/myclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/tutorial/project_template/myclass.h -------------------------------------------------------------------------------- /unittest/ExpHeisenberg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/ExpHeisenberg.h -------------------------------------------------------------------------------- /unittest/ExpIsing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/ExpIsing.h -------------------------------------------------------------------------------- /unittest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/Makefile -------------------------------------------------------------------------------- /unittest/algorithm_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/algorithm_test.cc -------------------------------------------------------------------------------- /unittest/args_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/args_test.cc -------------------------------------------------------------------------------- /unittest/autompo_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/autompo_test.cc -------------------------------------------------------------------------------- /unittest/bondgate_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/bondgate_test.cc -------------------------------------------------------------------------------- /unittest/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/catch.hpp -------------------------------------------------------------------------------- /unittest/contract_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/contract_test.cc -------------------------------------------------------------------------------- /unittest/decomp_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/decomp_test.cc -------------------------------------------------------------------------------- /unittest/index_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/index_test.cc -------------------------------------------------------------------------------- /unittest/indexset_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/indexset_test.cc -------------------------------------------------------------------------------- /unittest/iqtensor_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/iqtensor_test.cc -------------------------------------------------------------------------------- /unittest/itensor_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/itensor_test.cc -------------------------------------------------------------------------------- /unittest/iterativesolvers_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/iterativesolvers_test.cc -------------------------------------------------------------------------------- /unittest/localop_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/localop_test.cc -------------------------------------------------------------------------------- /unittest/matrix_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/matrix_test.cc -------------------------------------------------------------------------------- /unittest/mpo_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/mpo_test.cc -------------------------------------------------------------------------------- /unittest/mps_mpo_test_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/mps_mpo_test_helper.h -------------------------------------------------------------------------------- /unittest/mps_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/mps_test.cc -------------------------------------------------------------------------------- /unittest/qn_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/qn_test.cc -------------------------------------------------------------------------------- /unittest/real_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/real_test.cc -------------------------------------------------------------------------------- /unittest/regression_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/regression_test.cc -------------------------------------------------------------------------------- /unittest/siteset_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/siteset_test.cc -------------------------------------------------------------------------------- /unittest/sparse_contract_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/sparse_contract_test.cc -------------------------------------------------------------------------------- /unittest/spectrum_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/spectrum_test.cc -------------------------------------------------------------------------------- /unittest/tensor_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/tensor_test.cc -------------------------------------------------------------------------------- /unittest/test.cc: -------------------------------------------------------------------------------- 1 | #define CATCH_CONFIG_MAIN 2 | #include "test.h" 3 | -------------------------------------------------------------------------------- /unittest/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/test.h -------------------------------------------------------------------------------- /unittest/util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/util_test.cc -------------------------------------------------------------------------------- /unittest/webpage_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhyRespo/ITensor/HEAD/unittest/webpage_test.cc --------------------------------------------------------------------------------