From: Wolfgang Bangerth Date: Wed, 31 Dec 2014 18:41:04 +0000 (-0600) Subject: Remove deprecated function Newton::initialize(). X-Git-Tag: v8.3.0-rc1~566^2~11 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a10f5abed7c7ffeb2c1d4b294da390dfdcffe3a0;p=dealii.git Remove deprecated function Newton::initialize(). --- diff --git a/doc/news/changes.h b/doc/news/changes.h index fe2bc47379..f721aa59b3 100644 --- a/doc/news/changes.h +++ b/doc/news/changes.h @@ -59,7 +59,8 @@ inconvenience this causes. - The version of GridGenerator::parallelogram where the corners are given as a rank-2 tensor rather than as an array of points. - DataOutBase::create_xdmf_entry with 3 arguments. - - ThetaTimestepping::operator(). + - Algorithms::ThetaTimestepping::operator(). + - Algorithms::Newton::initialize.
  • Removed: The config.h file no longer exports HAVE_* definitions. diff --git a/include/deal.II/algorithms/newton.h b/include/deal.II/algorithms/newton.h index d8ec3683ef..d050ebf847 100644 --- a/include/deal.II/algorithms/newton.h +++ b/include/deal.II/algorithms/newton.h @@ -83,11 +83,6 @@ namespace Algorithms */ void parse_parameters (ParameterHandler ¶m); - /** - * @deprecated Use parse_parameters(). - */ - void initialize (ParameterHandler ¶m) DEAL_II_DEPRECATED; - /** * Initialize the pointer data_out for debugging. */ diff --git a/include/deal.II/algorithms/newton.templates.h b/include/deal.II/algorithms/newton.templates.h index 5ee6dbbfc8..fcfc33d822 100644 --- a/include/deal.II/algorithms/newton.templates.h +++ b/include/deal.II/algorithms/newton.templates.h @@ -64,13 +64,6 @@ namespace Algorithms param.leave_subsection (); } - template - void - Newton::initialize (ParameterHandler ¶m) - { - parse_parameters(param); - } - template void Newton::initialize (OutputOperator &output)