-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathPoly.h
70 lines (55 loc) · 1 KB
/
Poly.h
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
/*
* Poly.h
*
* Created on: Dec 19, 2009
* Author: bhess
*/
#ifndef POLY_H_
#define POLY_H_
#include <vector>
#include <gmpxx.h>
#include "GFE.h"
using namespace std;
class Poly {
public:
static Poly zero() {
Poly a(0);
a.set_coeff(0, 0);
return a;
}
static Poly one() {
Poly a(0);
a.set_coeff(0, 1);
return a;
}
static Poly two() {
Poly a(0);
a.set_coeff(0, 2);
return a;
}
Poly() {};
Poly(mpz_class bin);
Poly(int d);
void set_coeff(int d, mpz_class val);
vector<mpz_class> coeffs;
int degree;
Poly operator+(const Poly& other);
Poly operator-(const Poly& other);
Poly operator*(const Poly& other);
void operator*=(int s);
void operator/=(int s);
//void operator%=(mpz_class m);
void operator%=(int logm);
Poly operator>>(int m);
Poly operator<<(int m);
Poly operator-();
bool operator==(const Poly& other);
Poly PXpPmX();
Poly PXmPmX();
Poly sqSubst();
Poly modXpowm(int m);
Poly reverse();
mpz_class to_gfe_el();
void print();
};
#endif /* POLY_H_ */