Skip to content

Commit

Permalink
Correcting tolerances
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicDirkx committed Nov 4, 2024
1 parent 315e9c5 commit 33a4b3f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -490,8 +490,8 @@ BOOST_AUTO_TEST_CASE( test_PanelledRadiationPressureEstimation )
Eigen::VectorXd estimationError = parameterEstimate - truthParameters;
for( int i = 0; i < 3; i++ )
{
BOOST_CHECK_SMALL( std::fabs( estimationError( i ) ), 1.0E-4 );
BOOST_CHECK_SMALL( std::fabs( estimationError( i + 3 ) ), 1.0E-7 );
BOOST_CHECK_SMALL( std::fabs( estimationError( i ) ), 2.0E-4 );
BOOST_CHECK_SMALL( std::fabs( estimationError( i + 3 ) ), 2.0E-7 );
}
BOOST_CHECK_SMALL( std::fabs( estimationError( 6 ) ), 2.0E-4 );
BOOST_CHECK_SMALL( std::fabs( estimationError( 6 ) ), 2.0E-4 );
Expand Down

0 comments on commit 33a4b3f

Please sign in to comment.