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

Merge branch 'fix/no-unnecessary-aligned-alloc' into 'master'

[multirhstest] Do not use AlignedAllocator unless needed.

See merge request !157
parents b0291a78 3788f1f6
No related branches found
No related tags found
1 merge request!157[multirhstest] Do not use AlignedAllocator unless needed.
Pipeline #
......@@ -120,9 +120,8 @@ void test_all(unsigned int Runs = 1)
typedef Dune::FieldVector<FT,1> VB;
typedef Dune::FieldMatrix<MT,1,1> MB;
typedef Dune::AlignedAllocator<VB> AllocV;
typedef Dune::AlignedAllocator<MB> AllocM;
typedef Dune::BlockVector<VB,AllocV> Vector;
typedef Dune::BCRSMatrix<MB,AllocM> Matrix;
typedef Dune::BCRSMatrix<MB> Matrix;
// size
unsigned int size = 100;
......
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