/usr/include/NTL/mat_ZZ_pE.h is in libntl-dev 5.4.2-4.1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 | #ifndef NTL_mat_ZZ_pE__H
#define NTL_mat_ZZ_pE__H
#include <NTL/vec_vec_ZZ_pE.h>
NTL_OPEN_NNS
NTL_matrix_decl(ZZ_pE,vec_ZZ_pE,vec_vec_ZZ_pE,mat_ZZ_pE)
NTL_io_matrix_decl(ZZ_pE,vec_ZZ_pE,vec_vec_ZZ_pE,mat_ZZ_pE)
NTL_eq_matrix_decl(ZZ_pE,vec_ZZ_pE,vec_vec_ZZ_pE,mat_ZZ_pE)
void add(mat_ZZ_pE& X, const mat_ZZ_pE& A, const mat_ZZ_pE& B);
void sub(mat_ZZ_pE& X, const mat_ZZ_pE& A, const mat_ZZ_pE& B);
void negate(mat_ZZ_pE& X, const mat_ZZ_pE& A);
void mul(mat_ZZ_pE& X, const mat_ZZ_pE& A, const mat_ZZ_pE& B);
void mul(vec_ZZ_pE& x, const mat_ZZ_pE& A, const vec_ZZ_pE& b);
void mul(vec_ZZ_pE& x, const vec_ZZ_pE& a, const mat_ZZ_pE& B);
void mul(mat_ZZ_pE& X, const mat_ZZ_pE& A, const ZZ_pE& b);
void mul(mat_ZZ_pE& X, const mat_ZZ_pE& A, const ZZ_p& b);
void mul(mat_ZZ_pE& X, const mat_ZZ_pE& A, long b);
inline void mul(mat_ZZ_pE& X, const ZZ_pE& a, const mat_ZZ_pE& B)
{ mul(X, B, a); }
inline void mul(mat_ZZ_pE& X, const ZZ_p& a, const mat_ZZ_pE& B)
{ mul(X, B, a); }
inline void mul(mat_ZZ_pE& X, long a, const mat_ZZ_pE& B)
{ mul(X, B, a); }
void ident(mat_ZZ_pE& X, long n);
inline mat_ZZ_pE ident_mat_ZZ_pE(long n)
{ mat_ZZ_pE X; ident(X, n); NTL_OPT_RETURN(mat_ZZ_pE, X); }
void determinant(ZZ_pE& d, const mat_ZZ_pE& A);
inline ZZ_pE determinant(const mat_ZZ_pE& A)
{ ZZ_pE d; determinant(d, A); NTL_OPT_RETURN(ZZ_pE, d); }
long IsIdent(const mat_ZZ_pE& A, long n);
void transpose(mat_ZZ_pE& X, const mat_ZZ_pE& A);
inline mat_ZZ_pE transpose(const mat_ZZ_pE& A)
{ mat_ZZ_pE X; transpose(X, A); NTL_OPT_RETURN(mat_ZZ_pE, X); }
void solve(ZZ_pE& d, vec_ZZ_pE& X,
const mat_ZZ_pE& A, const vec_ZZ_pE& b);
void inv(ZZ_pE& d, mat_ZZ_pE& X, const mat_ZZ_pE& A);
inline void sqr(mat_ZZ_pE& X, const mat_ZZ_pE& A)
{ mul(X, A, A); }
inline mat_ZZ_pE sqr(const mat_ZZ_pE& A)
{ mat_ZZ_pE X; sqr(X, A); NTL_OPT_RETURN(mat_ZZ_pE, X); }
void inv(mat_ZZ_pE& X, const mat_ZZ_pE& A);
inline mat_ZZ_pE inv(const mat_ZZ_pE& A)
{ mat_ZZ_pE X; inv(X, A); NTL_OPT_RETURN(mat_ZZ_pE, X); }
void power(mat_ZZ_pE& X, const mat_ZZ_pE& A, const ZZ& e);
inline mat_ZZ_pE power(const mat_ZZ_pE& A, const ZZ& e)
{ mat_ZZ_pE X; power(X, A, e); NTL_OPT_RETURN(mat_ZZ_pE, X); }
inline void power(mat_ZZ_pE& X, const mat_ZZ_pE& A, long e)
{ power(X, A, ZZ_expo(e)); }
inline mat_ZZ_pE power(const mat_ZZ_pE& A, long e)
{ mat_ZZ_pE X; power(X, A, e); NTL_OPT_RETURN(mat_ZZ_pE, X); }
void diag(mat_ZZ_pE& X, long n, const ZZ_pE& d);
inline mat_ZZ_pE diag(long n, const ZZ_pE& d)
{ mat_ZZ_pE X; diag(X, n, d); NTL_OPT_RETURN(mat_ZZ_pE, X); }
long IsDiag(const mat_ZZ_pE& A, long n, const ZZ_pE& d);
long gauss(mat_ZZ_pE& M);
long gauss(mat_ZZ_pE& M, long w);
void image(mat_ZZ_pE& X, const mat_ZZ_pE& A);
void kernel(mat_ZZ_pE& X, const mat_ZZ_pE& A);
void clear(mat_ZZ_pE& a);
// x = 0 (dimension unchanged)
long IsZero(const mat_ZZ_pE& a);
// test if a is the zero matrix (any dimension)
// operator notation:
mat_ZZ_pE operator+(const mat_ZZ_pE& a, const mat_ZZ_pE& b);
mat_ZZ_pE operator-(const mat_ZZ_pE& a, const mat_ZZ_pE& b);
mat_ZZ_pE operator*(const mat_ZZ_pE& a, const mat_ZZ_pE& b);
mat_ZZ_pE operator-(const mat_ZZ_pE& a);
// matrix/scalar multiplication:
inline mat_ZZ_pE operator*(const mat_ZZ_pE& a, const ZZ_pE& b)
{ mat_ZZ_pE x; mul(x, a, b); NTL_OPT_RETURN(mat_ZZ_pE, x); }
inline mat_ZZ_pE operator*(const mat_ZZ_pE& a, const ZZ_p& b)
{ mat_ZZ_pE x; mul(x, a, b); NTL_OPT_RETURN(mat_ZZ_pE, x); }
inline mat_ZZ_pE operator*(const mat_ZZ_pE& a, long b)
{ mat_ZZ_pE x; mul(x, a, b); NTL_OPT_RETURN(mat_ZZ_pE, x); }
inline mat_ZZ_pE operator*(const ZZ_pE& a, const mat_ZZ_pE& b)
{ mat_ZZ_pE x; mul(x, a, b); NTL_OPT_RETURN(mat_ZZ_pE, x); }
inline mat_ZZ_pE operator*(const ZZ_p& a, const mat_ZZ_pE& b)
{ mat_ZZ_pE x; mul(x, a, b); NTL_OPT_RETURN(mat_ZZ_pE, x); }
inline mat_ZZ_pE operator*(long a, const mat_ZZ_pE& b)
{ mat_ZZ_pE x; mul(x, a, b); NTL_OPT_RETURN(mat_ZZ_pE, x); }
// matrix/vector multiplication:
vec_ZZ_pE operator*(const mat_ZZ_pE& a, const vec_ZZ_pE& b);
vec_ZZ_pE operator*(const vec_ZZ_pE& a, const mat_ZZ_pE& b);
// assignment operator notation:
inline mat_ZZ_pE& operator+=(mat_ZZ_pE& x, const mat_ZZ_pE& a)
{
add(x, x, a);
return x;
}
inline mat_ZZ_pE& operator-=(mat_ZZ_pE& x, const mat_ZZ_pE& a)
{
sub(x, x, a);
return x;
}
inline mat_ZZ_pE& operator*=(mat_ZZ_pE& x, const mat_ZZ_pE& a)
{
mul(x, x, a);
return x;
}
inline mat_ZZ_pE& operator*=(mat_ZZ_pE& x, const ZZ_pE& a)
{
mul(x, x, a);
return x;
}
inline mat_ZZ_pE& operator*=(mat_ZZ_pE& x, const ZZ_p& a)
{
mul(x, x, a);
return x;
}
inline mat_ZZ_pE& operator*=(mat_ZZ_pE& x, long a)
{
mul(x, x, a);
return x;
}
inline vec_ZZ_pE& operator*=(vec_ZZ_pE& x, const mat_ZZ_pE& a)
{
mul(x, x, a);
return x;
}
NTL_CLOSE_NNS
#endif
|