Skip to content

File hassu2doubletget.h

File List > algebra > su2algebra > helpers > hassu2doubletget.h

Go to the documentation of this file

#ifndef COSMOINTERFACE_SU2ALGEBRA_HELPERS_HASSU2DOUBLETGET_H
#define COSMOINTERFACE_SU2ALGEBRA_HELPERS_HASSU2DOUBLETGET_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/util/rangeiteration/tag.h"

namespace TempLat
{

  template <typename T>
  concept HasSU2DoubletGet = requires(T t, Tag<0> tag) { t.SU2DoubletGet(tag); };
} // namespace TempLat

#endif