Skip to content

Commit

Permalink
Intrepid2: Relax test tolerance to address issue trilinos#3681
Browse files Browse the repository at this point in the history
  • Loading branch information
mperego authored and tjfulle committed Dec 6, 2018
1 parent e193d3d commit 2f6f1ae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ int HDIV_TET_In_FEM_Test01(const bool verbose) {
ordinal_type cur=0;
for (ordinal_type i=0;i<cardinality;i++) {
for (ordinal_type j=0;j<np_lattice;j++) {
if (std::abs( h_basisDivAtLattice(i,j) - fiat_divs[cur] ) > tol ) {
if (std::abs( h_basisDivAtLattice(i,j) - fiat_divs[cur] ) > 10*tol ) {
errorFlag++;
*outStream << std::setw(70) << "^^^^----FAILURE!" << "\n";

Expand Down

0 comments on commit 2f6f1ae

Please sign in to comment.