Skip to content
Snippets Groups Projects
Commit a5590795 authored by Carsten Gräser's avatar Carsten Gräser
Browse files

[test] Silence test for implicite build mode

This reverts ddf49c23 and removes the check if
the average parameter behaves as expected.
parent 6ec2fff4
No related branches found
No related tags found
1 merge request!63Fix implicit buildmode documentation and adjust test accordingly
......@@ -331,24 +331,6 @@ void testImplicitMatrixBuilderExtendedConstructor()
setMatrix(m);
}
void testAverageStorage()
{
using M = Dune::BCRSMatrix<Dune::FieldMatrix<double,1,1>>;
for(auto j : {5, 0})
{
std::cout << j << std::endl;
M m(6, 6, 1, 0.0, M::implicit);
for(std::size_t i=0; i<6; ++i)
m.entry(j,i) = i;
m.compress();
}
}
int main()
{
int ret=0;
......@@ -371,7 +353,6 @@ int main()
ret+=testConstBracketOperatorBeforeCompress();
testImplicitMatrixBuilder();
testImplicitMatrixBuilderExtendedConstructor();
testAverageStorage();
}catch(Dune::Exception& e) {
std::cerr << e <<std::endl;
return 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