* Like above but with separate bool flags.
* @deprecated use evaluate() with the EvaluationFlags argument.
*/
- void
+ DEAL_II_DEPRECATED_EARLY void
evaluate(const bool evaluate_values,
const bool evaluate_gradients,
const bool evaluate_hessians = false);
* Like above but using separate bool flags.
* @deprecated use evaluate() with the EvaluationFlags argument.
*/
- void
+ DEAL_II_DEPRECATED_EARLY void
evaluate(const VectorizedArrayType *values_array,
const bool evaluate_values,
const bool evaluate_gradients,
* @deprecated Please use the gather_evaluate() function with the EvaluationFlags argument.
*/
template <typename VectorType>
- void
+ DEAL_II_DEPRECATED_EARLY void
gather_evaluate(const VectorType &input_vector,
const bool evaluate_values,
const bool evaluate_gradients,
/**
* @deprecated Please use the integrate() function with the EvaluationFlags argument.
*/
- void
+ DEAL_II_DEPRECATED_EARLY void
integrate(const bool integrate_values, const bool integrate_gradients);
/**
/**
* @deprecated Please use the integrate() function with the EvaluationFlags argument.
*/
- void
+ DEAL_II_DEPRECATED_EARLY void
integrate(const bool integrate_values,
const bool integrate_gradients,
VectorizedArrayType *values_array);
* @deprecated Please use the integrate_scatter() function with the EvaluationFlags argument.
*/
template <typename VectorType>
- void
+ DEAL_II_DEPRECATED_EARLY void
integrate_scatter(const bool integrate_values,
const bool integrate_gradients,
VectorType &output_vector);
/**
* @deprecated Please use the evaluate() function with the EvaluationFlags argument.
*/
- void
+ DEAL_II_DEPRECATED_EARLY void
evaluate(const bool evaluate_values, const bool evaluate_gradients);
/**
/**
* @deprecated Please use the evaluate() function with the EvaluationFlags argument.
*/
- void
+ DEAL_II_DEPRECATED_EARLY void
evaluate(const VectorizedArrayType *values_array,
const bool evaluate_values,
const bool evaluate_gradients);
* @deprecated Please use the gather_evaluate() function with the EvaluationFlags argument.
*/
template <typename VectorType>
- void
+ DEAL_II_DEPRECATED_EARLY void
gather_evaluate(const VectorType &input_vector,
const bool evaluate_values,
const bool evaluate_gradients);
/**
* @deprecated Please use the integrate() function with the EvaluationFlags argument.
*/
- void
+ DEAL_II_DEPRECATED_EARLY void
integrate(const bool integrate_values, const bool integrate_gradients);
/**
/**
* @deprecated Please use the integrate() function with the EvaluationFlags argument.
*/
- void
+ DEAL_II_DEPRECATED_EARLY void
integrate(const bool integrate_values,
const bool integrate_gradients,
VectorizedArrayType *values_array);