
This is the hfloat library of 01OCT97 ported MS-DOS (djgpp 2.7.2)

.\        : makefile.dos:  makes hfloat library (libhfl.a),
                           examples (pi.exe)
                           simple examples (ex*.exe)            
.\bin :     pi.exe      :  a program which shows a combo of pi algorithms
                           for usage type pi --help or look at .\doc\pihelp.txt
            pi-race.bat:   batch program to run all algorithms in one race
                           writes each result to a different file 
            ex0.exe, ex1.exe, ... ex9.exe : several example programs. See below
            libhfl.a    :  library of all the hfloat modules  

.\doc :     hfdoc.ps   :   documentation of the hfloat library in dvi, ps and pdf format
.\examples: several c++ sources (.cc, .h, .mk) to be linked to pi.exe
            makefile.dos : makes pi.exe makefile dor djgpp 2.7.2
            
.\simpleex: simple examples
            ex0.cc      :  addition, multiplication ...
            ex1.cc      :  power computation and root extraction
            ex2.cc      :  compute pi with 2 different algorithms
            ex3.cc      :  golden ratio & fibonacci numbers
            ex4.cc      :  compute pi using different convolutions
            ex5.cc      :  continued fraction of pi
            ex6.cc      :  alternating sums
            ex7.cc      :  means
            ex8.cc      :  bogo lucas lehmer test:
                           p=2^q-1 prime <==> cosh(2^(q-2)*log(2+sqrt(3)))%p=0
            ex9.cc      :  some constants printed in the pi book

.\src     : c++ sources of the hfloat library
            Over 200 source and header files, about 20 K lines of code

