Skip to content

Commit

Permalink
MAINT: Removed additional std cout
Browse files Browse the repository at this point in the history
  • Loading branch information
NateAM committed Aug 13, 2024
1 parent 190f10e commit 23fd493
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,6 @@ bool tolerantCheck( const std::vector< double > &v1, const std::vector< double >
if ( ( ( std::fabs( v1[ i ] - v2[ i ] ) / std::fabs( v1[ i ] ) ) > eps ) ||
( ( std::fabs( v1[ i ] - v2[ i ] ) / std::fabs( v2[ i ] ) ) > eps ) ){

std::cout << "v1: " << v1[ i ] << "\n";
std::cout << "v1: " << v2[ i ] << "\n";

std::cout << "r1: " << ( std::fabs( v1[ i ] - v2[ i ] ) / std::fabs( v1[ i ] ) ) << "\n";
std::cout << "r1: " << ( std::fabs( v1[ i ] - v2[ i ] ) / std::fabs( v2[ i ] ) ) << "\n";

return false;

}
Expand Down

0 comments on commit 23fd493

Please sign in to comment.