pub trait MultipointEval {
type Poly;
type Value;
// Required method
fn multipoint_eval(
&self,
a: Self::Poly,
p: Vec<Self::Value>,
) -> Vec<Self::Value>;
}
Expand description
多項式の多点評価
pub trait MultipointEval {
type Poly;
type Value;
// Required method
fn multipoint_eval(
&self,
a: Self::Poly,
p: Vec<Self::Value>,
) -> Vec<Self::Value>;
}
多項式の多点評価