From 31024bd442291aa6f7de28e500d91281adf14aa7 Mon Sep 17 00:00:00 2001 From: Elias Pipping <elias.pipping@fu-berlin.de> Date: Mon, 31 Oct 2011 13:32:40 +0100 Subject: [PATCH] Cleanup --- src/myconvexproblem.hh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/myconvexproblem.hh b/src/myconvexproblem.hh index ee91633d..ecbd73ce 100644 --- a/src/myconvexproblem.hh +++ b/src/myconvexproblem.hh @@ -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 -- GitLab