Skip to content

Commit

Permalink
Corrected tests
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicDirkx committed Dec 19, 2024
1 parent 2cb7e12 commit bbe99a0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -250,18 +250,18 @@ BOOST_AUTO_TEST_CASE( test_RadiationPressurePartialsFromEstimation )
// Modify tolernace for geometrically poor term
if( ( test == 1 && parameterIndex == 3 ) || ( test == 1 && parameterIndex == 6 ) || ( test == 3 && parameterIndex == 4 ) )
{
std::cout<<"Test A "<( toleranceStates * 20.0 )<<std::endl;
std::cout<<"Test A "<<( toleranceStates * 20.0 )<<std::endl;
TUDAT_CHECK_MATRIX_CLOSE_FRACTION( numericalValue, analyticalValue, ( toleranceStates * 20.0 ) );
}
else
{
std::cout<<"Test B "<( toleranceStates )<<std::endl;
std::cout<<"Test B "<<( toleranceStates )<<std::endl;
TUDAT_CHECK_MATRIX_CLOSE_FRACTION( numericalValue, analyticalValue, ( toleranceStates ) );
}
}
else
{
std::cout<<"Test C "<( toleranceParameter * 5.0 )<<std::endl;
std::cout<<"Test C "<<( toleranceParameter * 5.0 )<<std::endl;
TUDAT_CHECK_MATRIX_CLOSE_FRACTION( numericalValue, analyticalValue, ( toleranceParameter * 5.0 ) );
}
}
Expand Down

0 comments on commit bbe99a0

Please sign in to comment.