Skip to content
Snippets Groups Projects
Commit 746e2f72 authored by Oliver Sander's avatar Oliver Sander Committed by sander
Browse files

[bugfix] Fix index bug

[[Imported from SVN: r10070]]
parent 56db0b15
No related branches found
No related tags found
No related merge requests found
......@@ -145,7 +145,7 @@ namespace Dune {
{
result[i][j] = 0;
for (int k=0; k<derivativeOfProjection.M(); k++)
result[i][k] += derivativeOfProjection[i][k]*derivative[k][j];
result[i][j] += derivativeOfProjection[i][k]*derivative[k][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