@@ -863,6 +863,7 @@ void test_real_concept_policy(const Policy&)
863
863
BOOST_MATH_STD_USING
864
864
865
865
CHECK_ULP_CLOSE (3 .14159265358979323846264338327950288419716939937510L , (pi<real_concept, Policy>)(), 2 );
866
+ CHECK_ULP_CLOSE (log (3 .14159265358979323846264338327950288419716939937510L ), (log_pi<real_concept, Policy>)(), 2 );
866
867
CHECK_ULP_CLOSE (sqrt (3 .14159265358979323846264338327950288419716939937510L ), (root_pi<real_concept, Policy>)(), 2 );
867
868
CHECK_ULP_CLOSE (sqrt (3 .14159265358979323846264338327950288419716939937510L /2 ), (root_half_pi<real_concept, Policy>)(), 2 );
868
869
CHECK_ULP_CLOSE (sqrt (3 .14159265358979323846264338327950288419716939937510L * 2 ), (root_two_pi<real_concept, Policy>)(), 2 );
@@ -914,6 +915,7 @@ void test_real_concept_policy(const Policy&)
914
915
CHECK_ULP_CLOSE (1 / (3 .14159265358979323846264338327950288419716939937510L ), (one_div_pi<real_concept, Policy>)(), 2 );
915
916
CHECK_ULP_CLOSE (2 / (3 .14159265358979323846264338327950288419716939937510L ), (two_div_pi<real_concept, Policy>)(), 2 );
916
917
CHECK_ULP_CLOSE (1 / (2 * 3 .14159265358979323846264338327950288419716939937510L ), (one_div_two_pi<real_concept, Policy>)(), 2 );
918
+ CHECK_ULP_CLOSE (log (3 .14159265358979323846264338327950288419716939937510L ), (log_pi<real_concept, Policy>)(), 2 );
917
919
CHECK_ULP_CLOSE (sqrt (3 .14159265358979323846264338327950288419716939937510L ), (root_pi<real_concept, Policy>)(), 2 );
918
920
CHECK_ULP_CLOSE (sqrt (3 .14159265358979323846264338327950288419716939937510L / 2 ), (root_half_pi<real_concept, Policy>)(), 2 );
919
921
CHECK_ULP_CLOSE (sqrt (2 * 3 .14159265358979323846264338327950288419716939937510L ), (root_two_pi<real_concept, Policy>)(), 2 );
0 commit comments