* (as that would ambiguate a possible constructor of this class), name it
* in the fashion of the standard container local alias.
*
- * @deprecated Use the alias type directly.
+ * @deprecated Directly use the type
+ * <tt>std::map<types::boundary_id, const Function<dim, Number> *></tt>
+ * in your code instead of this alias.
*/
using type DEAL_II_DEPRECATED =
std::map<types::boundary_id, const Function<dim, Number> *>;
* @code
* // step 1: flag cells for refinement or coarsening
* Vector<float> estimated_error_per_cell (triangulation.n_active_cells());
- * KellyErrorEstimator<dim>::estimate(hp_dof_handler,
- * QGauss<dim-1> (quadrature_points),
- * typename FunctionMap<dim>::type(),
- * solution,
- * estimated_error_per_cell);
+ * KellyErrorEstimator<dim>::estimate(
+ * hp_dof_handler,
+ * QGauss<dim-1> (quadrature_points),
+ * std::map<types::boundary_id, const Function<dim, Number> *>(),
+ * solution,
+ * estimated_error_per_cell);
* GridRefinement::refine_and_coarsen_fixed_fraction(triangulation,
* estimated_error_per_cell,
* top_fraction,