Skip to content
Snippets Groups Projects
Commit 12bccefa authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

Rename argument: velocity -> difference

parent c589dd5d
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@ class TimeSteppingScheme {
VectorType &solution) const = 0;
void virtual extractDifference(VectorType const &problem_iterate,
VectorType &velocity) const = 0;
VectorType &difference) const = 0;
protected:
VectorType const ℓ
......@@ -76,8 +76,8 @@ class ImplicitEuler
}
void virtual extractDifference(VectorType const &problem_iterate,
VectorType &velocity) const {
velocity = problem_iterate;
VectorType &difference) const {
difference = problem_iterate;
}
};
......@@ -137,7 +137,7 @@ class ImplicitTwoStep
}
void virtual extractDifference(VectorType const &problem_iterate,
VectorType &velocity) const {
velocity = problem_iterate;
VectorType &difference) const {
difference = problem_iterate;
}
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment