schoof.txt

来自「大数运算库miracl。有了miracl这样的函数库」· 文本 代码 · 共 23 行

TXT
23
字号
To build the Schoof application, you must compile and link the modules 
together, with MIRACL C++ classes, and with the MIRACL library.

So for Borland C++ (although MS C++ is a fair bit quicker)

bcc32 schoof.cpp poly.cpp polymod.cpp elliptic.cpp big.cpp monty.cpp crt.cpp
miracl.lib

On UNIX using g++, something like

g++ -I. -c poly.cpp
g++ -I. -c polymod.cpp


g++ -I. schoof.cpp poly.o polymod.o big.o monty.o elliptic.o crt.o 
miracl.a /usr/lib/libm.a -o schoof

should work

Note that the headers poly.h and polymod.h are assumed to be in 
the local directiory

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?