Skip to content
Snippets Groups Projects
Commit 526182ec authored by Oliver Sander's avatar Oliver Sander Committed by sander@PCPOOL.MI.FU-BERLIN.DE
Browse files

bugfix: the second derivative is _twice_ the identity

[[Imported from SVN: r5698]]
parent 18bc685b
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,7 @@ public:
Dune::FieldMatrix<double,N,N> result;
for (int i=0; i<N; i++)
for (int j=0; j<N; j++)
result[i][j] = (i==j);
result[i][j] = 2*(i==j);
return result;
}
......
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