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
use core::fmt::Debug;
use super::{
algebra::Field,
comp::{Basic, ParityCmp},
};
use crate::arithmetic::utils::Bits;
pub trait PrimeField: Field + Basic + ParityCmp {
const MODULUS: Self;
const INV: u64;
fn is_zero(self) -> bool;
fn to_bits(self) -> Bits;
fn double(self) -> Self;
fn square(self) -> Self;
fn double_assign(&mut self);
fn square_assign(&mut self);
}
pub trait FieldRepr: Debug {
const LIMBS_LENGTH: usize;
fn to_repr(self) -> Self;
}