PPSH: A C++ Library for Finite Field Computing(有限域的符号计算库PPSH)
环境安装
实现介绍
程序源码
/path/to/ppsh$ g++ ppsh_functions.cpp -lginac -lcln -fPIC -shared -o libppsh.so
2.编译你自己的程序(这里是测试程序):
/path/to/ppsh$ g++ test_ppsh_functions.cpp -lginac -lcln -L. -lppsh -o exe
/path/to/ppsh$ ./exe
g^1 = 1+a+2*a^2
g^2 = 2*a+a^2
g^3 = 1+2*a+a^2
g^4 = 2
g^5 = 2+2*a+4*a^2
g^6 = a+2*a^2
g^7 = 2+a+2*a^2
g^8 = 1
g^9 = 1+a+2*a^2