22 double const cutoff_velocity,
23 double const tuning_parameter,
24 std::vector<double>&& element_sizes)
25 : cutoff_velocity_(cutoff_velocity),
26 tuning_parameter_(tuning_parameter),
27 element_sizes_(std::move(element_sizes))
29 if (tuning_parameter_ < 0 || tuning_parameter_ > 1.0)
32 "The tuning parameter value {:g} for "
33 "IsotropicDiffusion stabilization is out of range [0, 1]",