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 { ...@@ -22,7 +22,7 @@ class TimeSteppingScheme {
VectorType &solution) const = 0; VectorType &solution) const = 0;
void virtual extractDifference(VectorType const &problem_iterate, void virtual extractDifference(VectorType const &problem_iterate,
VectorType &velocity) const = 0; VectorType &difference) const = 0;
protected: protected:
VectorType const ℓ VectorType const ℓ
...@@ -76,8 +76,8 @@ class ImplicitEuler ...@@ -76,8 +76,8 @@ class ImplicitEuler
} }
void virtual extractDifference(VectorType const &problem_iterate, void virtual extractDifference(VectorType const &problem_iterate,
VectorType &velocity) const { VectorType &difference) const {
velocity = problem_iterate; difference = problem_iterate;
} }
}; };
...@@ -137,7 +137,7 @@ class ImplicitTwoStep ...@@ -137,7 +137,7 @@ class ImplicitTwoStep
} }
void virtual extractDifference(VectorType const &problem_iterate, void virtual extractDifference(VectorType const &problem_iterate,
VectorType &velocity) const { VectorType &difference) const {
velocity = problem_iterate; difference = problem_iterate;
} }
}; };
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment