prototyping of reciprocal and log functions

This commit is contained in:
Jeff Wang
2019-10-02 02:52:08 -04:00
parent 6eb48de844
commit acc9c4821f
4 changed files with 200 additions and 0 deletions

8
src/decn/proto/Makefile Normal file
View File

@ -0,0 +1,8 @@
all: div ln
div: div_mfp.cpp
g++ -Wall div_mfp.cpp -o div -lgmp
ln: ln_mfp.cpp
g++ -Wall ln_mfp.cpp -o ln -lmpfr