summaryrefslogtreecommitdiffstats
path: root/mpi/logtab.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2017-06-14 06:58:29 -0700
committerKaz Kylheku <kaz@kylheku.com>2017-06-14 06:58:29 -0700
commit6df765493bcfc913e7797e09ce134487773c40b7 (patch)
treed77bd01783893d1458cb2e75e0620314ea4488fd /mpi/logtab.h
parentc43a9b4246f0c383965668779e82212fafcd9dc4 (diff)
downloadtxr-6df765493bcfc913e7797e09ce134487773c40b7.tar.gz
txr-6df765493bcfc913e7797e09ce134487773c40b7.tar.bz2
txr-6df765493bcfc913e7797e09ce134487773c40b7.zip
Big MPI whitepace and comment cleanup.
* mpi/logtab.h, mpi/mpi-config.h mpi/mpi-types.h mpi/mpi.c, mpi/mpi.h mpi/mplogic.c mpi/mplogic.h: Reformatted comments. Removed useless comments. Removed superfluous blank lines and whitespace. Added space between C keywords if, for, while, sizeof and opening parens. Removed #if 0 blocks. Tabs to spaces.
Diffstat (limited to 'mpi/logtab.h')
-rw-r--r--mpi/logtab.h49
1 files changed, 32 insertions, 17 deletions
diff --git a/mpi/logtab.h b/mpi/logtab.h
index 88d2afa6..a4b2d04f 100644
--- a/mpi/logtab.h
+++ b/mpi/logtab.h
@@ -1,20 +1,35 @@
+/*
+ * A table of the logs of 2 for various bases (the 0 and 1 entries of
+ * this table are meaningless and should not be referenced).
+ *
+ * This table is used to compute output lengths for the mp_toradix()
+ * function. Since a number n in radix r takes up about log_r(n)
+ * digits, we estimate the output size by taking the least integer
+ * greater than log_r(n), where:
+ *
+ * log_r(n) = log_2(n) * log_r(2)
+ *
+ * This table, therefore, is a table of log_r(2) for 2 <= r <= 36,
+ * which are the output bases supported.
+ */
+
const double s_logv_2[] = {
- 0.000000000, 0.000000000, 1.000000000, 0.630929754, /* 0 1 2 3 */
- 0.500000000, 0.430676558, 0.386852807, 0.356207187, /* 4 5 6 7 */
- 0.333333333, 0.315464877, 0.301029996, 0.289064826, /* 8 9 10 11 */
- 0.278942946, 0.270238154, 0.262649535, 0.255958025, /* 12 13 14 15 */
- 0.250000000, 0.244650542, 0.239812467, 0.235408913, /* 16 17 18 19 */
- 0.231378213, 0.227670249, 0.224243824, 0.221064729, /* 20 21 22 23 */
- 0.218104292, 0.215338279, 0.212746054, 0.210309918, /* 24 25 26 27 */
- 0.208014598, 0.205846832, 0.203795047, 0.201849087, /* 28 29 30 31 */
- 0.200000000, 0.198239863, 0.196561632, 0.194959022, /* 32 33 34 35 */
- 0.193426404, 0.191958720, 0.190551412, 0.189200360, /* 36 37 38 39 */
- 0.187901825, 0.186652411, 0.185449023, 0.184288833, /* 40 41 42 43 */
- 0.183169251, 0.182087900, 0.181042597, 0.180031327, /* 44 45 46 47 */
- 0.179052232, 0.178103594, 0.177183820, 0.176291434, /* 48 49 50 51 */
- 0.175425064, 0.174583430, 0.173765343, 0.172969690, /* 52 53 54 55 */
- 0.172195434, 0.171441601, 0.170707280, 0.169991616, /* 56 57 58 59 */
- 0.169293808, 0.168613099, 0.167948779, 0.167300179, /* 60 61 62 63 */
- 0.166666667
+ 0.000000000, 0.000000000, 1.000000000, 0.630929754,
+ 0.500000000, 0.430676558, 0.386852807, 0.356207187,
+ 0.333333333, 0.315464877, 0.301029996, 0.289064826,
+ 0.278942946, 0.270238154, 0.262649535, 0.255958025,
+ 0.250000000, 0.244650542, 0.239812467, 0.235408913,
+ 0.231378213, 0.227670249, 0.224243824, 0.221064729,
+ 0.218104292, 0.215338279, 0.212746054, 0.210309918,
+ 0.208014598, 0.205846832, 0.203795047, 0.201849087,
+ 0.200000000, 0.198239863, 0.196561632, 0.194959022,
+ 0.193426404, 0.191958720, 0.190551412, 0.189200360,
+ 0.187901825, 0.186652411, 0.185449023, 0.184288833,
+ 0.183169251, 0.182087900, 0.181042597, 0.180031327,
+ 0.179052232, 0.178103594, 0.177183820, 0.176291434,
+ 0.175425064, 0.174583430, 0.173765343, 0.172969690,
+ 0.172195434, 0.171441601, 0.170707280, 0.169991616,
+ 0.169293808, 0.168613099, 0.167948779, 0.167300179,
+ 0.166666667
};