OGS
NumLib::IntegrationMethodProvider Concept Reference

#include <IntegrationMethodProvider.h>

Concept definition

template<typename T>
concept NumLib::IntegrationMethodProvider = requires(T t)
{
{
t.template getIntegrationMethod<MeshLib::Quad>(
std::declval<MeshLib::Element>())
} -> std::same_as<GenericIntegrationMethod const&>;
}

Detailed Description

An IntegrationMethodProvider provides GenericIntegrationMethods for MeshLib::Elements.

Definition at line 21 of file IntegrationMethodProvider.h.