Skip to content
Snippets Groups Projects
Commit 25418fb8 authored by Oliver Sander's avatar Oliver Sander Committed by sander
Browse files

Deprecate the methode setInitialSolution, because the name is stupid

Offer setInitialIterate instead

[[Imported from SVN: r9429]]
parent 79e8131c
Branches
No related tags found
No related merge requests found
......@@ -79,7 +79,11 @@ public:
void solve();
void setInitialSolution(const SolutionType& x) {
void setInitialSolution(const SolutionType& x) DUNE_DEPRECATED {
x_ = x;
}
void setInitialIterate(const SolutionType& x) {
x_ = x;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment