Codebase list dune-localfunctions / c6e139a
Increase tolerance for test-orthonormal even further This should also fix the build failure on armel. Ansgar Burchardt 2 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
66 {
77 const double value = m[ i*size + j ];
88 - if( std::abs( value - double( i == j ) ) > 1200.*Dune::Zero<double>::epsilon() ) {
9 + if( std::abs( value - double( i == j ) ) > 2500.*Dune::Zero<double>::epsilon() ) {
9 + if( std::abs( value - double( i == j ) ) > 5000.*Dune::Zero<double>::epsilon() ) {
1010 std::cout << "i = " << i << ", j = " << j << ": " << std::abs( value - double( i == j ) ) << std::endl;
1111 ret = false;
1212 }