DOLFINx 0.8.0
DOLFINx C++ interface
|
Represents integral data, containing the integral ID, the kernel, and a list of entities to integrate over. More...
#include <Form.h>
Public Member Functions | |
template<typename K , typename V > requires std::is_convertible_v< std::remove_cvref_t<K>, std::function<void(T*, const T*, const T*, const U*, const int*, const uint8_t*)>> and std::is_convertible_v<std::remove_cvref_t<V>, std::vector<std::int32_t>> | |
integral_data (int id, K &&kernel, V &&entities) | |
Create a structure to hold integral data. | |
template<typename K > requires std::is_convertible_v< std::remove_cvref_t<K>, std::function<void(T*, const T*, const T*, const U*, const int*, const uint8_t*)>> | |
integral_data (int id, K &&kernel, std::span< const std::int32_t > e) | |
Create a structure to hold integral data. | |
Represents integral data, containing the integral ID, the kernel, and a list of entities to integrate over.
|
inline |
Create a structure to hold integral data.
U | Entity indices type. |
id | Domain ID. |
kernel | Integration kernel. |
entities | Entities to integrate over. |
|
inline |
Create a structure to hold integral data.
id | Domain ID |
kernel | Integration kernel. |
e | Entities to integrate over. |