17#ifndef INTEGRALWEIGHT_HPP
18#define INTEGRALWEIGHT_HPP
36 const std::function<
double (
const Cell &
T,
const Eigen::Vector2d & x)> _value,
37 std::function<
size_t (
const Cell &
T)> _deg
47 :
IntegralWeight( [val](const Cell &
T, const
Eigen::Vector2d &x)->double {return val;}, [](
const Cell &
T)->
size_t {
return 0;} )
52 std::function<double (
const Cell &
T,
const Eigen::Vector2d & x)>
value;
53 std::function<size_t (
const Cell &
T)>
deg;
std::function< double(const Cell &T, const Eigen::Vector2d &x)> value
Definition integralweight.hpp:52
IntegralWeight(double val)
Definition integralweight.hpp:46
std::function< size_t(const Cell &T)> deg
Definition integralweight.hpp:53
IntegralWeight(const std::function< double(const Cell &T, const Eigen::Vector2d &x)> _value, std::function< size_t(const Cell &T)> _deg)
Definition integralweight.hpp:35
if(strcmp(field, 'real')) % real valued entries T
Definition mmread.m:93
Definition PastixInterface.hpp:16
Definition ddr-klplate.hpp:27
Structure for weights (scalar, at the moment) in integral.
Definition integralweight.hpp:33