Skip to content

Commit 6c3b48a

Browse files
Tom St Denissjaeckel
Tom St Denis
authored andcommitted
added libtomfloat-0.01
0 parents  commit 6c3b48a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+2659
-0
lines changed

LICENSE

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
LibTomFloat is Public Domain.
2+
3+
-- Tom St Denis

TODO

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
Still quite a bit todo for LibTomFloat.
2+
3+
1. The following functions [as of v0.01] have not been implemented (the .C files are present but not populated)
4+
5+
- mpf_acos
6+
- mpf_asin
7+
- mpf_atan
8+
- mpf_const_1pi [*]
9+
- mpf_const_2pi [*]
10+
- mpf_const_2rpi [*]
11+
- mpf_const_l10e [*]
12+
- mpf_const_l2e [*]
13+
- mpf_const_le2 [*]
14+
- mpf_const_pi [*]
15+
- mpf_const_pi2 [*]
16+
- mpf_const_pi4 [*]
17+
- mpf_ln
18+
- mpf_pow [*]
19+
- Any form of string input/output
20+
21+
[*] Denotes functions which are written but depend upon incomplete functions to work.
22+
23+
The critical path lies in two functions. The first is mpf_ln from which I can write mpf_pow and the various constants will function.
24+
The second is mpf_atan from which I can write mpf_const_pi and finish off the missing constants.
25+
26+
From there it's a matter of adding mpf_asin, mpf_acos and mpf_tan and I have a decent subset of math in there.
27+
28+
2. Once all of the functions have been written I want to add early-out optimizations to the various series calculations. Right now
29+
they use an arbitrary high count and get accurate results. However, quite a few functions stabalize quickly and do not need so many
30+
iterations. In particular I plan to start on mpf_invsqrt() as it forms the basis of mpf_inv() which is used in mpf_cos() [and other trigs].
31+
32+
At the same time I want to add more domain checking (e.g. valid inputs).
33+
34+
3. Add decent string input/output
35+
36+
4. More things to the manual. I plan on doing this with every release cycle though.
37+
38+
5. MSVC makefile

WARNING

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
LibTomFloat is a *VERY* new package and is not even fully written yet. Quite a
2+
bit of the functionality is present but will be changing in the near future to allow
3+
for optimizations (e.g. early-outs).
4+
5+
Please don't use LibTomFloat just yet for any production or fielded system.
6+
7+
By all means if you wish to test and help find bugs in LibTomFloat give the package a try.
8+
9+
I do not guarantee the numerical accuracy of this package as of yet.
10+
11+
You've been warned.

changes.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
May 5th, 2004 v0.01 -- wrote base of LTF
2+
3+
Anytime v0.00 -- no LTF existed.

demos/ex1.c

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
#include <tomfloat.h>
2+
3+
void draw(mp_float *a)
4+
{
5+
char buf[8192];
6+
mp_toradix(&(a->mantissa), buf, 10);
7+
printf("%s * 2^%ld\n", buf, a->exp);
8+
}
9+
10+
int main(void)
11+
{
12+
mp_float a, b, c, d, e;
13+
mpf_init_multi(96, &a, &b, &c, &d, &e, NULL);
14+
15+
mpf_const_d(&a, 1); draw(&a);
16+
mpf_const_d(&b, 2); draw(&b);
17+
mpf_const_d(&c, 3); draw(&c);
18+
mpf_const_d(&d, 4); draw(&d);
19+
20+
mpf_add(&b, &c, &e); printf("2 + 3 == "); draw(&e);
21+
mpf_sub(&b, &c, &e); printf("2 - 3 =="); draw(&e);
22+
mpf_mul(&b, &c, &e); printf("2 * 3 == "); draw(&e);
23+
mpf_div(&b, &c, &e); printf("2 / 3 == "); draw(&e);
24+
printf("\n");
25+
mpf_invsqrt(&d, &e); printf("1/sqrt(4) == 1/2 == "); draw(&e);
26+
mpf_invsqrt(&c, &e); printf("1/sqrt(3) == "); draw(&e);
27+
mpf_inv(&a, &e); printf("1/1 == "); draw(&e);
28+
mpf_inv(&b, &e); printf("1/2 == "); draw(&e);
29+
mpf_inv(&c, &e); printf("1/3 == "); draw(&e);
30+
mpf_inv(&d, &e); printf("1/4 == "); draw(&e);
31+
printf("\n");
32+
mpf_const_e(&e); printf("e == "); draw(&e);
33+
mpf_exp(&c, &e); printf("e^3 == "); draw(&e);
34+
mpf_sqrt(&e, &e); printf("sqrt(e^3) == "); draw(&e);
35+
mpf_sqr(&e, &e); printf("sqrt(e^3)^2 == "); draw(&e);
36+
printf("\n");
37+
mpf_cos(&a, &e); printf("cos(1) == "); draw(&e);
38+
mpf_cos(&b, &e); printf("cos(2) == "); draw(&e);
39+
mpf_cos(&c, &e); printf("cos(3) == "); draw(&e);
40+
mpf_cos(&d, &e); printf("cos(4) == "); draw(&e);
41+
mpf_sin(&a, &e); printf("sin(1) == "); draw(&e);
42+
mpf_sin(&b, &e); printf("sin(2) == "); draw(&e);
43+
mpf_sin(&c, &e); printf("sin(3) == "); draw(&e);
44+
mpf_sin(&d, &e); printf("sin(4) == "); draw(&e);
45+
mpf_tan(&a, &e); printf("tan(1) == "); draw(&e);
46+
mpf_tan(&b, &e); printf("tan(2) == "); draw(&e);
47+
mpf_tan(&c, &e); printf("tan(3) == "); draw(&e);
48+
mpf_tan(&d, &e); printf("tan(4) == "); draw(&e);
49+
printf("\n");
50+
return 0;
51+
}
52+
53+
54+

float.ilg

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
This is makeindex, version 2.14 [02-Oct-2002] (kpathsea + Thai support).
2+
Scanning input file float.idx....done (48 entries accepted, 0 rejected).
3+
Sorting entries....done (285 comparisons).
4+
Generating output file float.ind....done (55 lines written, 0 warnings).
5+
Output written in float.ind.
6+
Transcript written in float.ilg.

float.ind

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
\begin{theindex}
2+
3+
\item exponent, \hyperpage{2}
4+
5+
\indexspace
6+
7+
\item mantissa, \hyperpage{2}
8+
\item mp\_cmp, \hyperpage{16}
9+
\item mp\_error\_to\_string, \hyperpage{6}
10+
\item MP\_MEM, \hyperpage{5}
11+
\item MP\_NO, \hyperpage{5}
12+
\item MP\_OKAY, \hyperpage{5}
13+
\item MP\_VAL, \hyperpage{5}
14+
\item MP\_YES, \hyperpage{5}
15+
\item mpf\_abs, \hyperpage{13}
16+
\item mpf\_acos, \hyperpage{18}
17+
\item mpf\_add, \hyperpage{15}
18+
\item mpf\_add\_d, \hyperpage{15}
19+
\item mpf\_asin, \hyperpage{18}
20+
\item mpf\_atan, \hyperpage{18}
21+
\item mpf\_clear, \hyperpage{7}
22+
\item mpf\_clear\_multi, \hyperpage{8}
23+
\item mpf\_cmp\_d, \hyperpage{16}
24+
\item mpf\_const\_0, \hyperpage{11}
25+
\item mpf\_const\_d, \hyperpage{11}
26+
\item mpf\_const\_ln\_d, \hyperpage{11}
27+
\item mpf\_const\_sqrt\_d, \hyperpage{11}
28+
\item mpf\_copy, \hyperpage{9}
29+
\item mpf\_cos, \hyperpage{18}
30+
\item mpf\_div, \hyperpage{15}
31+
\item mpf\_div\_2, \hyperpage{16}
32+
\item mpf\_div\_d, \hyperpage{15}
33+
\item mpf\_exch, \hyperpage{10}
34+
\item mpf\_exp, \hyperpage{17}
35+
\item mpf\_init, \hyperpage{7}
36+
\item mpf\_init\_copy, \hyperpage{8}
37+
\item mpf\_init\_multi, \hyperpage{8}
38+
\item mpf\_inv, \hyperpage{18}
39+
\item mpf\_invsqrt, \hyperpage{18}
40+
\item mpf\_ln, \hyperpage{17}
41+
\item mpf\_mul, \hyperpage{15}
42+
\item mpf\_mul\_2, \hyperpage{16}
43+
\item mpf\_mul\_d, \hyperpage{15}
44+
\item mpf\_neg, \hyperpage{13}
45+
\item mpf\_normalize, \hyperpage{11}
46+
\item mpf\_normalize\_to, \hyperpage{11}
47+
\item mpf\_pow, \hyperpage{17}
48+
\item mpf\_sin, \hyperpage{18}
49+
\item mpf\_sqr, \hyperpage{16}
50+
\item mpf\_sqrt, \hyperpage{18}
51+
\item mpf\_sub, \hyperpage{15}
52+
\item mpf\_sub\_d, \hyperpage{15}
53+
\item mpf\_tan, \hyperpage{18}
54+
55+
\end{theindex}

float.pdf

169 KB
Binary file not shown.

0 commit comments

Comments
 (0)