Skip to content
Snippets Groups Projects
Commit 3ca6afc8 authored by Simon Praetorius's avatar Simon Praetorius
Browse files

Deactivate transposetest for DiagonalMatrix

parent b6c3557f
No related branches found
No related tags found
1 merge request!1478Deactivate transposetest for DiagonalMatrix
Pipeline #75315 canceled
......@@ -250,25 +250,25 @@ int main()
checkTransposeProduct(suite,a,b);
}
{
auto a = Dune::DiagonalMatrix<double,2>{};
auto b = Dune::FieldMatrix<double,2,2>{};
a = {0, 1};
testFillDense(b);
checkTranspose(suite,a);
checkTranspose(suite,b);
checkTransposeProduct(suite,a,b);
}
{
auto a = Dune::DiagonalMatrix<double,4>{};
auto b = Dune::FieldMatrix<double,7,4>{};
a = {0, 1, 2, 3};
testFillDense(b);
checkTranspose(suite,a);
checkTranspose(suite,b);
checkTransposeProduct(suite,a,b);
}
// {
// auto a = Dune::DiagonalMatrix<double,2>{};
// auto b = Dune::FieldMatrix<double,2,2>{};
// a = {0, 1};
// testFillDense(b);
// checkTranspose(suite,a);
// checkTranspose(suite,b);
// checkTransposeProduct(suite,a,b);
// }
// {
// auto a = Dune::DiagonalMatrix<double,4>{};
// auto b = Dune::FieldMatrix<double,7,4>{};
// a = {0, 1, 2, 3};
// testFillDense(b);
// checkTranspose(suite,a);
// checkTranspose(suite,b);
// checkTransposeProduct(suite,a,b);
// }
{
auto a = Dune::FieldMatrix<double,3,4>{};
......
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