From 9ead68332fb6a062b27b179c3456b61b78a9000f Mon Sep 17 00:00:00 2001 From: Intel A80486DX2-66 Date: Sat, 9 Mar 2024 16:50:35 +0300 Subject: [PATCH] opt_int_div.h: explain the comment in macro `OPT_INT_DIV_ROUNDING` --- c-programming/math/opt_int_div.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c-programming/math/opt_int_div.h b/c-programming/math/opt_int_div.h index ca23cf0..bbf55e0 100644 --- a/c-programming/math/opt_int_div.h +++ b/c-programming/math/opt_int_div.h @@ -15,7 +15,7 @@ // constants #define OPT_INT_DIV_ROUNDING \ - /* 10^OPT_INT_DIV_TEST_PRECISION */ \ + /* formula: 10^OPT_INT_DIV_TEST_PRECISION */ \ powl(10.l, (long double) OPT_INT_DIV_TEST_PRECISION) // helper functions