├── .travis.yml ├── CMakeLists.txt ├── DOCS ├── README ├── algorithms.used ├── article.pdf ├── commentary.txt ├── cpp_function.ref ├── function.ref ├── history.txt ├── license.txt └── struct.ref ├── FindMAPM.cmake ├── MULTI_THREAD ├── README ├── m_apm_mt.h └── mapm_mt.c ├── Makefile ├── PI_DEMO ├── README ├── make_linux ├── pi_1.c ├── pi_2.cpp ├── pi_3.c └── pi_4.cpp ├── README ├── WINDOWS_DOS ├── README.DOS ├── labwindw.cvi ├── makefile.b32 ├── makefile.mvs ├── mkalldmc.bat ├── mkallgcc.bat ├── mkalllcc.bat ├── mkallm51.bat ├── mkallm80.bat ├── mkallmgw.bat ├── mkallmsc.bat ├── mkalltcc.bat ├── mkallwat.bat └── mkdemb32.bat ├── calc.c ├── cmake └── dist.cmake ├── cpp_demo.cpp ├── dist.info ├── libmapm.def ├── m_apm.h ├── m_apm_lc.h ├── make_intel_linux ├── make_linux_shared_lib ├── make_osx.old ├── makefile.osx ├── makefile.unx ├── mapm5sin.c ├── mapm_add.c ├── mapm_cpi.c ├── mapm_div.c ├── mapm_exp.c ├── mapm_fam.c ├── mapm_fft.c ├── mapm_flr.c ├── mapm_fpf.c ├── mapm_gcd.c ├── mapm_lg2.c ├── mapm_lg3.c ├── mapm_lg4.c ├── mapm_log.c ├── mapm_mul.c ├── mapm_pow.c ├── mapm_rcp.c ├── mapm_rnd.c ├── mapm_set.c ├── mapm_sin.c ├── mapmasin.c ├── mapmasn0.c ├── mapmcbrt.c ├── mapmcnst.c ├── mapmfact.c ├── mapmfmul.c ├── mapmgues.c ├── mapmhasn.c ├── mapmhsin.c ├── mapmipwr.c ├── mapmistr.c ├── mapmpwr2.c ├── mapmrsin.c ├── mapmsqrt.c ├── mapmstck.c ├── mapmutil.c ├── mapmutl1.c ├── mapmutl2.c ├── mkdemo ├── mklib ├── primenum.c └── validate.c /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /DOCS/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/DOCS/README -------------------------------------------------------------------------------- /DOCS/algorithms.used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/DOCS/algorithms.used -------------------------------------------------------------------------------- /DOCS/article.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/DOCS/article.pdf -------------------------------------------------------------------------------- /DOCS/commentary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/DOCS/commentary.txt -------------------------------------------------------------------------------- /DOCS/cpp_function.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/DOCS/cpp_function.ref -------------------------------------------------------------------------------- /DOCS/function.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/DOCS/function.ref -------------------------------------------------------------------------------- /DOCS/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/DOCS/history.txt -------------------------------------------------------------------------------- /DOCS/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/DOCS/license.txt -------------------------------------------------------------------------------- /DOCS/struct.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/DOCS/struct.ref -------------------------------------------------------------------------------- /FindMAPM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/FindMAPM.cmake -------------------------------------------------------------------------------- /MULTI_THREAD/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/MULTI_THREAD/README -------------------------------------------------------------------------------- /MULTI_THREAD/m_apm_mt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/MULTI_THREAD/m_apm_mt.h -------------------------------------------------------------------------------- /MULTI_THREAD/mapm_mt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/MULTI_THREAD/mapm_mt.c -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | makefile.unx -------------------------------------------------------------------------------- /PI_DEMO/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/PI_DEMO/README -------------------------------------------------------------------------------- /PI_DEMO/make_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/PI_DEMO/make_linux -------------------------------------------------------------------------------- /PI_DEMO/pi_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/PI_DEMO/pi_1.c -------------------------------------------------------------------------------- /PI_DEMO/pi_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/PI_DEMO/pi_2.cpp -------------------------------------------------------------------------------- /PI_DEMO/pi_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/PI_DEMO/pi_3.c -------------------------------------------------------------------------------- /PI_DEMO/pi_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/PI_DEMO/pi_4.cpp -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | DOCS/README -------------------------------------------------------------------------------- /WINDOWS_DOS/README.DOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/WINDOWS_DOS/README.DOS -------------------------------------------------------------------------------- /WINDOWS_DOS/labwindw.cvi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/WINDOWS_DOS/labwindw.cvi -------------------------------------------------------------------------------- /WINDOWS_DOS/makefile.b32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/WINDOWS_DOS/makefile.b32 -------------------------------------------------------------------------------- /WINDOWS_DOS/makefile.mvs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/WINDOWS_DOS/makefile.mvs -------------------------------------------------------------------------------- /WINDOWS_DOS/mkalldmc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/WINDOWS_DOS/mkalldmc.bat -------------------------------------------------------------------------------- /WINDOWS_DOS/mkallgcc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/WINDOWS_DOS/mkallgcc.bat -------------------------------------------------------------------------------- /WINDOWS_DOS/mkalllcc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/WINDOWS_DOS/mkalllcc.bat -------------------------------------------------------------------------------- /WINDOWS_DOS/mkallm51.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/WINDOWS_DOS/mkallm51.bat -------------------------------------------------------------------------------- /WINDOWS_DOS/mkallm80.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/WINDOWS_DOS/mkallm80.bat -------------------------------------------------------------------------------- /WINDOWS_DOS/mkallmgw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/WINDOWS_DOS/mkallmgw.bat -------------------------------------------------------------------------------- /WINDOWS_DOS/mkallmsc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/WINDOWS_DOS/mkallmsc.bat -------------------------------------------------------------------------------- /WINDOWS_DOS/mkalltcc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/WINDOWS_DOS/mkalltcc.bat -------------------------------------------------------------------------------- /WINDOWS_DOS/mkallwat.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/WINDOWS_DOS/mkallwat.bat -------------------------------------------------------------------------------- /WINDOWS_DOS/mkdemb32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/WINDOWS_DOS/mkdemb32.bat -------------------------------------------------------------------------------- /calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/calc.c -------------------------------------------------------------------------------- /cmake/dist.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/cmake/dist.cmake -------------------------------------------------------------------------------- /cpp_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/cpp_demo.cpp -------------------------------------------------------------------------------- /dist.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/dist.info -------------------------------------------------------------------------------- /libmapm.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/libmapm.def -------------------------------------------------------------------------------- /m_apm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/m_apm.h -------------------------------------------------------------------------------- /m_apm_lc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/m_apm_lc.h -------------------------------------------------------------------------------- /make_intel_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/make_intel_linux -------------------------------------------------------------------------------- /make_linux_shared_lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/make_linux_shared_lib -------------------------------------------------------------------------------- /make_osx.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/make_osx.old -------------------------------------------------------------------------------- /makefile.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/makefile.osx -------------------------------------------------------------------------------- /makefile.unx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/makefile.unx -------------------------------------------------------------------------------- /mapm5sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapm5sin.c -------------------------------------------------------------------------------- /mapm_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapm_add.c -------------------------------------------------------------------------------- /mapm_cpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapm_cpi.c -------------------------------------------------------------------------------- /mapm_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapm_div.c -------------------------------------------------------------------------------- /mapm_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapm_exp.c -------------------------------------------------------------------------------- /mapm_fam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapm_fam.c -------------------------------------------------------------------------------- /mapm_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapm_fft.c -------------------------------------------------------------------------------- /mapm_flr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapm_flr.c -------------------------------------------------------------------------------- /mapm_fpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapm_fpf.c -------------------------------------------------------------------------------- /mapm_gcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapm_gcd.c -------------------------------------------------------------------------------- /mapm_lg2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapm_lg2.c -------------------------------------------------------------------------------- /mapm_lg3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapm_lg3.c -------------------------------------------------------------------------------- /mapm_lg4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapm_lg4.c -------------------------------------------------------------------------------- /mapm_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapm_log.c -------------------------------------------------------------------------------- /mapm_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapm_mul.c -------------------------------------------------------------------------------- /mapm_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapm_pow.c -------------------------------------------------------------------------------- /mapm_rcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapm_rcp.c -------------------------------------------------------------------------------- /mapm_rnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapm_rnd.c -------------------------------------------------------------------------------- /mapm_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapm_set.c -------------------------------------------------------------------------------- /mapm_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapm_sin.c -------------------------------------------------------------------------------- /mapmasin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapmasin.c -------------------------------------------------------------------------------- /mapmasn0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapmasn0.c -------------------------------------------------------------------------------- /mapmcbrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapmcbrt.c -------------------------------------------------------------------------------- /mapmcnst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapmcnst.c -------------------------------------------------------------------------------- /mapmfact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapmfact.c -------------------------------------------------------------------------------- /mapmfmul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapmfmul.c -------------------------------------------------------------------------------- /mapmgues.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapmgues.c -------------------------------------------------------------------------------- /mapmhasn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapmhasn.c -------------------------------------------------------------------------------- /mapmhsin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapmhsin.c -------------------------------------------------------------------------------- /mapmipwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapmipwr.c -------------------------------------------------------------------------------- /mapmistr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapmistr.c -------------------------------------------------------------------------------- /mapmpwr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapmpwr2.c -------------------------------------------------------------------------------- /mapmrsin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapmrsin.c -------------------------------------------------------------------------------- /mapmsqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapmsqrt.c -------------------------------------------------------------------------------- /mapmstck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapmstck.c -------------------------------------------------------------------------------- /mapmutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapmutil.c -------------------------------------------------------------------------------- /mapmutl1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapmutl1.c -------------------------------------------------------------------------------- /mapmutl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mapmutl2.c -------------------------------------------------------------------------------- /mkdemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mkdemo -------------------------------------------------------------------------------- /mklib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/mklib -------------------------------------------------------------------------------- /primenum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/primenum.c -------------------------------------------------------------------------------- /validate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuaDist/mapm/HEAD/validate.c --------------------------------------------------------------------------------