Trait FpsExp

Source
pub trait FpsExp {
    type Poly;

    // Required method
    fn fps_exp(&self, f: Self::Poly) -> Self::Poly;
}
Expand description

形式的冪級数の指数関数

Required Associated Types§

Source

type Poly

多項式の型

Required Methods§

Source

fn fps_exp(&self, f: Self::Poly) -> Self::Poly

$f(x) = \sum_0^{n-1} a_ix^i$について、$\exp (f(x))$の先頭$n$項を求める。

Implementors§

Source§

impl<const P: u32, const PR: u32> FpsExp for PolynomialOperator<'_, P, PR>