Skip to content
Snippets Groups Projects
Commit 1c099fda authored by Christian Engwer's avatar Christian Engwer
Browse files

Merge branch 'feature/FS1726-complex-for-fp-only' into 'master'

Test complex<T> for floating point T only

The issue that I originally filed for dune-common as flyspray/FS#1726 affects dune-istl, too.

See merge request !11
parents c8ad7196 cfdebb50
No related branches found
No related tags found
No related merge requests found
......@@ -119,9 +119,6 @@ int main()
const size_t numBlocks = 10;
const size_t capacity = BlockSize * numBlocks * 2; // use capacity here, that we can use the a constructor taking two integers for both BlockVector and VariableBlockVector
ret += DotProductTest<Dune::BlockVector<Dune::FieldVector<int,BlockSize> >, Dune::BlockVector<Dune::FieldVector<std::complex<int>,BlockSize> > > (numBlocks,capacity);
ret += DotProductTest<Dune::VariableBlockVector<Dune::FieldVector<int,1> >, Dune::VariableBlockVector<Dune::FieldVector<std::complex<int>,1> > > (numBlocks,BlockSize);
ret += DotProductTest<Dune::BlockVector<Dune::FieldVector<int,BlockSize> >, Dune::BlockVector<Dune::FieldVector<int,BlockSize> > > (numBlocks,capacity);
ret += DotProductTest<Dune::VariableBlockVector<Dune::FieldVector<int,1> >, Dune::VariableBlockVector<Dune::FieldVector<int,1> > > (numBlocks,1);
......
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