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

Cleanup

parent 263c24da
No related branches found
No related tags found
No related merge requests found
......@@ -31,16 +31,16 @@ class MyConvexProblem {
\param f The linear functional
\param u The solution vector
*/
MyConvexProblem(const MatrixType& A, NonlinearityType& phi,
const VectorType& f, VectorType& u)
MyConvexProblem(MatrixType const &A, NonlinearityType &phi,
VectorType const &f, VectorType &u)
: A(A), phi(phi), f(f), u(u) {};
const MatrixType& A;
NonlinearityType& phi;
MatrixType const &A;
NonlinearityType φ
const VectorType& f;
VectorType const &f;
VectorType& u;
VectorType &u;
};
#endif
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