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