schoof2.txt
来自「大数运算库miracl。有了miracl这样的函数库」· 文本 代码 · 共 24 行
TXT
24 行
To build the Schoof2 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 schoof2.cpp poly2.cpp poly2mod.cpp ec2.cpp big.cpp gf2m.cpp crt.cpp
miracl.lib
On UNIX using g++, something like
g++ -I. -c poly2.cpp
g++ -I. -c poly2mod.cpp
g++ -I. schoof2.cpp poly2.o poly2mod.o big.o gf2m.o ec2.o crt.o
miracl.a /usr/lib/libm.a -o schoof2
should work
Note that the headers poly2.h and poly2mod.h are assumed to be in
the local directiory
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?