#pragma once #include "mps.hpp" #include #include #include #include namespace e = Eigen; using namespace std::complex_literals; /** * @brief Construct a matrix product operator in tensor form * @matrices N x N initializer lists containing localDim x localDim matrices * @details * Constructs a tensor with indices r c i j, where r and c specify the matrix and i j are indices into the matrix */ template e::Tensor constructMPO(const std::initializer_list>>& matrices); template e::MatrixX MPO_Tensor2Matrix(const e::Tensor& mpo); /** * @brief Reshape a N*localDim x N*localDim matrix into a N x localDim x N x localDim tensor */ template e::Tensor bondMatrix2Tensor(const e::MatrixX& bondMatrix, unsigned localDim); template class Model1D { public: Model1D(size_t L, unsigned localDim) : L(L), localDim(localDim) { if (L <= 2) { // needs two bonds to function correctly throw std::invalid_argument("L must be larger than 2"); } } virtual ~Model1D() {}; inline const std::vector>>& getH_BondsMatrices() const { return H_BondsMatrices; } inline const std::vector>>& getH_Bonds() const { return H_Bonds; } inline const std::vector>>& getH_MPO() const { return H_MPO; } const size_t L; const unsigned localDim; T energy(const MPS& psi) const; virtual std::string format() const = 0; protected: virtual void initH_Bonds() = 0; virtual void initH_MPO() = 0; /// Bonds in tensor form, used for `energy()` function std::vector>> H_Bonds; /// Bonds in matrix form, used for calculating time evolution std::vector>> H_BondsMatrices; std::vector>> H_MPO; }; /** * @brief Class of pauli matrices * @details * Intendend for static initialization */ template class PauliMatrices { public: PauliMatrices() : sigmaX({{0, 1}, {1, 0}}), sigmaY({{0if, -1if}, {1if, 0if}}), sigmaZ({{1, 0}, {0, -1}}), identity({{1, 0}, {0, 1}}) {} inline const e::Matrix2& getSigmaX() const { return sigmaX; } inline const e::Matrix2& getSigmaY() const { return sigmaY; } inline const e::Matrix2& getSigmaZ() const { return sigmaZ; } inline const e::Matrix2& getIdentity() const { return identity; } private: e::Matrix2 sigmaX; e::Matrix2 sigmaY; e::Matrix2 sigmaZ; e::Matrix2 identity; };