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

fix array sizes

[[Imported from SVN: r7070]]
parent 426307b7
No related branches found
No related tags found
No related merge requests found
......@@ -59,7 +59,7 @@ class Tensor3
return result;
}
static Tensor3<T,N1,N2,N3> product(const Dune::FieldVector<T,N3>& a, const Dune::FieldMatrix<T,N1,N2>& bc)
static Tensor3<T,N1,N2,N3> product(const Dune::FieldVector<T,N1>& a, const Dune::FieldMatrix<T,N2,N3>& bc)
{
Tensor3<T,N1,N2,N3> 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