const std::map<std::string, double> &,
const bool)
{
- Assert(false, ExcNeedsFunctionparser());
+ AssertThrow(false, ExcNeedsFunctionparser());
}
template <int dim>
const std::map<std::string, double> &,
const bool)
{
- Assert(false, ExcNeedsFunctionparser());
+ AssertThrow(false, ExcNeedsFunctionparser());
}
double
FunctionParser<dim>::value(const Point<dim> &, unsigned int) const
{
- Assert(false, ExcNeedsFunctionparser());
+ AssertThrow(false, ExcNeedsFunctionparser());
return 0.;
}
void
FunctionParser<dim>::vector_value(const Point<dim> &, Vector<double> &) const
{
- Assert(false, ExcNeedsFunctionparser());
+ AssertThrow(false, ExcNeedsFunctionparser());
}
const std::map<std::string, double> &,
const bool)
{
- Assert(false, ExcNeedsFunctionparser());
+ AssertThrow(false, ExcNeedsFunctionparser());
}
template <int rank, int dim, typename Number>
const std::map<std::string, double> &,
const bool)
{
- Assert(false, ExcNeedsFunctionparser());
+ AssertThrow(false, ExcNeedsFunctionparser());
}
Tensor<rank, dim, Number>
TensorFunctionParser<rank, dim, Number>::value(const Point<dim> &) const
{
- Assert(false, ExcNeedsFunctionparser());
+ AssertThrow(false, ExcNeedsFunctionparser());
return Tensor<rank, dim, Number>();
}
const std::vector<Point<dim>> &,
std::vector<Tensor<rank, dim, Number>> &) const
{
- Assert(false, ExcNeedsFunctionparser());
+ AssertThrow(false, ExcNeedsFunctionparser());
}