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

Deactivate only the TransposeProduct tests

parent 3ca6afc8
No related branches found
No related tags found
1 merge request!1478Deactivate transposetest for DiagonalMatrix
Pipeline #75316 waiting for manual action
......@@ -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);
{
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);
}
{
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