Skip to content
Snippets Groups Projects
Commit bd07ba19 authored by Oliver Sander's avatar Oliver Sander
Browse files

Also test a 1x1 BTDMatrix. This is a special case in the implementation

[[Imported from SVN: r1321]]
parent a2c3a658
No related branches found
No related tags found
No related merge requests found
......@@ -358,6 +358,11 @@ int main()
testSolve<BTDMatrix<FieldMatrix<double,1,1> >, BlockVector<FieldVector<double,1> > >(btdMatrix);
// test a 1x1 BTDMatrix, because that is a special case
BTDMatrix<FieldMatrix<double,1,1> > btdMatrixScalar(1);
btdMatrixScalar = 1.0;
testSuperMatrix(btdMatrixScalar);
// ////////////////////////////////////////////////////////////////////////
// Test the FieldMatrix class
// ////////////////////////////////////////////////////////////////////////
......
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