From 4a0262923e1cf86138c85cbc09fb8e03ed90ebe1 Mon Sep 17 00:00:00 2001 From: kanschat Date: Sun, 2 Feb 2014 22:40:45 +0000 Subject: [PATCH] Newton::threshold() was missing git-svn-id: https://svn.dealii.org/trunk@32379 0785d39b-7218-0410-832d-ea1e28bc413d --- .../include/deal.II/algorithms/newton.templates.h | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/deal.II/include/deal.II/algorithms/newton.templates.h b/deal.II/include/deal.II/algorithms/newton.templates.h index b1380d6e4e..16c6b74483 100644 --- a/deal.II/include/deal.II/algorithms/newton.templates.h +++ b/deal.II/include/deal.II/algorithms/newton.templates.h @@ -80,7 +80,17 @@ namespace Algorithms inverse_derivative->notify(e); } - + + template + double + Newton::threshold(const double thr) + { + const double t = assemble_threshold; + assemble_threshold = thr; + return t; + } + + template void Newton::operator() (NamedData &out, const NamedData &in) -- 2.39.5