⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mat_zz_p.txt

📁 密码大家Shoup写的数论算法c语言实现
💻 TXT
字号:
/**************************************************************************\MODULE: mat_ZZ_pSUMMARY:Defines the class mat_ZZ_p.\**************************************************************************/#include <NTL/matrix.h>#include <NTL/vec_vec_ZZ_p.h>NTL_matrix_decl(ZZ_p,vec_ZZ_p,vec_vec_ZZ_p,mat_ZZ_p)NTL_io_matrix_decl(ZZ_p,vec_ZZ_p,vec_vec_ZZ_p,mat_ZZ_p)NTL_eq_matrix_decl(ZZ_p,vec_ZZ_p,vec_vec_ZZ_p,mat_ZZ_p)void add(mat_ZZ_p& X, const mat_ZZ_p& A, const mat_ZZ_p& B); // X = A + Bvoid sub(mat_ZZ_p& X, const mat_ZZ_p& A, const mat_ZZ_p& B); // X = A - Bvoid negate(mat_ZZ_p& X, const mat_ZZ_p& A); // X = - Avoid mul(mat_ZZ_p& X, const mat_ZZ_p& A, const mat_ZZ_p& B); // X = A * Bvoid mul(vec_ZZ_p& x, const mat_ZZ_p& A, const vec_ZZ_p& b); // x = A * bvoid mul(vec_ZZ_p& x, const vec_ZZ_p& a, const mat_ZZ_p& B); // x = a * Bvoid mul(mat_ZZ_p& X, const mat_ZZ_p& A, const ZZ_p& b);void mul(mat_ZZ_p& X, const mat_ZZ_p& A, long b);// X = A * bvoid mul(mat_ZZ_p& X, const ZZ_p& a, const mat_ZZ_p& B);void mul(mat_ZZ_p& X, long a, const mat_ZZ_p& B);// X = a * Bvoid determinant(ZZ_p& d, const mat_ZZ_p& A);ZZ_p determinant(const mat_ZZ_p& a); // d = determinant(A)void transpose(mat_ZZ_p& X, const mat_ZZ_p& A);mat_ZZ_p transpose(const mat_ZZ_p& A);// X = transpose of Avoid solve(ZZ_p& d, vec_ZZ_p& X,           const mat_ZZ_p& A, const vec_ZZ_p& b);// A is an n x n matrix, b is a length n vector.  Computes d =// determinant(A).  If d != 0, solves x*A = b.void inv(ZZ_p& d, mat_ZZ_p& X, const mat_ZZ_p& A);// A is an n x n matrix.  Computes d = determinant(A).  If d != 0,// computes X = A^{-1}.void sqr(mat_ZZ_p& X, const mat_ZZ_p& A);mat_ZZ_p sqr(const mat_ZZ_p& A);// X = A*A   void inv(mat_ZZ_p& X, const mat_ZZ_p& A);mat_ZZ_p inv(const mat_ZZ_p& A);// X = A^{-1}; error is raised if A is  singularvoid power(mat_ZZ_p& X, const mat_ZZ_p& A, const ZZ& e);mat_ZZ_p power(const mat_ZZ_p& A, const ZZ& e);void power(mat_ZZ_p& X, const mat_ZZ_p& A, long e);mat_ZZ_p power(const mat_ZZ_p& A, long e);// X = A^e; e may be negative (in which case A must be nonsingular).void ident(mat_ZZ_p& X, long n);mat_ZZ_p ident_mat_ZZ_p(long n);// X = n x n identity matrixlong IsIdent(const mat_ZZ_p& A, long n);// test if A is the n x n identity matrixvoid diag(mat_ZZ_p& X, long n, const ZZ_p& d);mat_ZZ_p diag(long n, const ZZ_p& d);// X = n x n diagonal matrix with d on diagonallong IsDiag(const mat_ZZ_p& A, long n, const ZZ_p& d);// test if X is an  n x n diagonal matrix with d on diagonallong gauss(mat_ZZ_p& M);long gauss(mat_ZZ_p& M, long w);// Performs unitary row operations so as to bring M into row echelon// form.  If the optional argument w is supplied, stops when first w// columns are in echelon form.  The return value is the rank (or the// rank of the first w columns).void image(mat_ZZ_p& X, const mat_ZZ_p& A);// The rows of X are computed as basis of A's row space.  X is is row// echelon formvoid kernel(mat_ZZ_p& X, const mat_ZZ_p& A);// Computes a basis for the kernel of the map x -> x*A. where x is a// row vector.// miscellaneous:void clear(mat_ZZ_p& a);// x = 0 (dimension unchanged)long IsZero(const mat_ZZ_p& a);// test if a is the zero matrix (any dimension)// operator notation:mat_ZZ_p operator+(const mat_ZZ_p& a, const mat_ZZ_p& b);mat_ZZ_p operator-(const mat_ZZ_p& a, const mat_ZZ_p& b);mat_ZZ_p operator*(const mat_ZZ_p& a, const mat_ZZ_p& b);mat_ZZ_p operator-(const mat_ZZ_p& a);// matrix/scalar multiplication:mat_ZZ_p operator*(const mat_ZZ_p& a, const ZZ_p& b);mat_ZZ_p operator*(const mat_ZZ_p& a, long b);mat_ZZ_p operator*(const ZZ_p& a, const mat_ZZ_p& b);mat_ZZ_p operator*(long a, const mat_ZZ_p& b);// matrix/vector multiplication:vec_ZZ_p operator*(const mat_ZZ_p& a, const vec_ZZ_p& b);vec_ZZ_p operator*(const vec_ZZ_p& a, const mat_ZZ_p& b);// assignment operator notation:mat_ZZ_p& operator+=(mat_ZZ_p& x, const mat_ZZ_p& a);mat_ZZ_p& operator-=(mat_ZZ_p& x, const mat_ZZ_p& a);mat_ZZ_p& operator*=(mat_ZZ_p& x, const mat_ZZ_p& a);mat_ZZ_p& operator*=(mat_ZZ_p& x, const ZZ_p& a);mat_ZZ_p& operator*=(mat_ZZ_p& x, long a);vec_ZZ_p& operator*=(vec_ZZ_p& x, const mat_ZZ_p& a);

⌨️ 快捷键说明

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