Skip to content

File su2operator.h

File List > algebra > su2algebra > su2operator.h

Go to the documentation of this file

#ifndef COSMOINTERFACE_SU2ALGEBRA_SU2OPERATOR_H
#define COSMOINTERFACE_SU2ALGEBRA_SU2OPERATOR_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, Year: 2019

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

namespace TempLat
{
  class SU2Operator
  {
  public:
    // Put public methods here. These should change very little over time.
    SU2Operator() = default;

    static constexpr size_t size = 4;
    using Getter = SU2Getter;

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

#endif