Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
dumux-repositories
dumux
Commits
be4936c2
Commit
be4936c2
authored
Jan 19, 2020
by
Timo Koch
Browse files
[newton] Remove deprecated functions
parent
563a9e00
Changes
1
Hide whitespace changes
Inline
Side-by-side
dumux/nonlinear/newtonsolver.hh
View file @
be4936c2
...
...
@@ -205,20 +205,6 @@ public:
void
setMaxSteps
(
int
maxSteps
)
{
maxSteps_
=
maxSteps
;
}
/*!
* \brief Run the Newton method to solve a non-linear system.
* Does time step control when the Newton fails to converge
*/
[[
deprecated
(
"Use attachConvergenceWriter(convWriter) and solve(x, *timeLoop) instead"
)]]
void
solve
(
SolutionVector
&
uCurrentIter
,
TimeLoop
&
timeLoop
,
std
::
shared_ptr
<
ConvergenceWriter
>
convWriter
)
{
if
(
!
convergenceWriter_
)
attachConvergenceWriter
(
convWriter
);
solve
(
uCurrentIter
,
timeLoop
);
}
/*!
* \brief Run the Newton method to solve a non-linear system.
* Does time step control when the Newton fails to converge
...
...
@@ -684,20 +670,6 @@ public:
return
oldTimeStep
*
(
1.0
+
percent
/
1.2
);
}
/*!
* \brief Specifies if the Newton method ought to be chatty.
*/
[[
deprecated
(
"Has been replaced by setVerbosity(int). Will be removed after 3.1 release!"
)]]
void
setVerbose
(
bool
val
)
{
verbosity_
=
val
;
}
/*!
* \brief Returns true if the Newton method ought to be chatty.
*/
[[
deprecated
(
"Has been replaced by int verbosity(). Will be removed after 3.1 release!"
)]]
bool
verbose
()
const
{
return
verbosity_
;
}
/*!
* \brief Specifies the verbosity level
*/
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment