ark_poly/polynomial/
mod.rs1use ark_ff::{Field, Zero};
3use ark_serialize::{CanonicalDeserialize, CanonicalSerialize};
4use ark_std::{
5 fmt::Debug,
6 hash::Hash,
7 ops::{Add, AddAssign, Neg, SubAssign},
8 rand::Rng,
9 vec::*,
10};
11
12pub mod multivariate;
13pub mod univariate;
14
15pub trait Polynomial<F: Field>:
17 Sized
18 + Clone
19 + Debug
20 + Hash
21 + PartialEq
22 + Eq
23 + Add
24 + Neg
25 + Zero
26 + CanonicalSerialize
27 + CanonicalDeserialize
28 + for<'a> AddAssign<&'a Self>
29 + for<'a> AddAssign<(F, &'a Self)>
30 + for<'a> SubAssign<&'a Self>
31{
32 type Point: Sized + Clone + Ord + Debug + Sync + Hash;
34
35 fn degree(&self) -> usize;
37
38 fn evaluate(&self, point: &Self::Point) -> F;
40}
41
42pub trait DenseUVPolynomial<F: Field>: Polynomial<F, Point = F> {
44 fn from_coefficients_slice(coeffs: &[F]) -> Self;
46
47 fn from_coefficients_vec(coeffs: Vec<F>) -> Self;
49
50 fn coeffs(&self) -> &[F];
52
53 fn rand<R: Rng>(d: usize, rng: &mut R) -> Self;
56}
57
58pub trait DenseMVPolynomial<F: Field>: Polynomial<F> {
60 type Term: multivariate::Term;
62
63 fn from_coefficients_slice(num_vars: usize, terms: &[(F, Self::Term)]) -> Self {
65 Self::from_coefficients_vec(num_vars, terms.to_vec())
66 }
67
68 fn from_coefficients_vec(num_vars: usize, terms: Vec<(F, Self::Term)>) -> Self;
70
71 fn terms(&self) -> &[(F, Self::Term)];
73
74 fn num_vars(&self) -> usize;
76
77 fn rand<R: Rng>(d: usize, num_vars: usize, rng: &mut R) -> Self;
80}