Skip to content

File su2doubletoperator.h

File List > algebra > su2algebra > su2doubletoperator.h

Go to the documentation of this file

#ifndef COSMOINTERFACE_SU2ALGEBRA_SU2DOUBLETOPERATOR_H
#define COSMOINTERFACE_SU2ALGEBRA_SU2DOUBLETOPERATOR_H

/* This file is part of TempLat, available at https://cosmolattice.github.io/templat .
   Copyright 2021-2026 The TempLat authors, see AUTHORS.md.
   Released under the MIT license, see LICENSE.md. */

// File info: Main contributor(s): Adrien Florio, Franz R. Sattler, Year: 2025

#include "TempLat/lattice/algebra/su2algebra/helpers/su2doubletget.h"

namespace TempLat
{
  template <size_t NDim> class SU2DoubletOperator
  {
  public:
    // Put public methods here. These should change very little over time.
    SU2DoubletOperator() = default;
    static constexpr size_t size = 4;
    using Getter = SU2DoubletGetter;

    static consteval size_t getNDim() { return NDim; }

  private:
    /* Put all member variables and private methods here. These may change arbitrarily. */
  };
} // namespace TempLat

#endif