From 72b527ac939b9457ee26ef3444375d03236bef95 Mon Sep 17 00:00:00 2001 From: Oliver Sander <sander@igpm.rwth-aachen.de> Date: Thu, 8 Mar 2012 11:06:28 +0000 Subject: [PATCH] bugfix: a few brackets were missing [[Imported from SVN: r8559]] --- dune/gfe/orthogonalmatrix.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dune/gfe/orthogonalmatrix.hh b/dune/gfe/orthogonalmatrix.hh index 62c29480..b565c4e0 100644 --- a/dune/gfe/orthogonalmatrix.hh +++ b/dune/gfe/orthogonalmatrix.hh @@ -45,7 +45,7 @@ public: for (int i=0; i<N; i++) for (int j=0; j<N; j++) { - IdMinusXXT = (i==j); + IdMinusXXT[i][j] = (i==j); for (int k=0; k<N; k++) IdMinusXXT[i][j] -= X[i][k] * X[j][k]; } -- GitLab