Struct nekolib::math::Polynomial
source · pub struct Polynomial<M: NttFriendly>(/* private fields */);
Expand description
Implementations§
source§impl<M: NttFriendly> Polynomial<M>
impl<M: NttFriendly> Polynomial<M>
sourcepub fn new() -> Self
pub fn new() -> Self
を返す。
Examples
use nekolib::math::{Mod998244353, Polynomial};
let f = Polynomial::<Mod998244353>::new();
assert!(f.is_zero());
use nekolib::math::{Mod998244353, Polynomial};
type Poly = Polynomial<Mod998244353>;
let f = Poly::new();
assert!(f.is_zero());
sourcepub fn recip(&self, len: usize) -> Self
pub fn recip(&self, len: usize) -> Self
なる を返す。
Examples
let f: Poly = [1, -1].into();
let g: Poly = [1; 10].into();
assert_eq!(f.recip(10), g);
sourcepub fn truncated(self, len: usize) -> Self
pub fn truncated(self, len: usize) -> Self
を返す。
Examples
let f: Poly = [1, 2, 3, 4, 5].into();
let g: Poly = [1, 2, 3].into();
assert_eq!(f.truncated(3), g);
sourcepub fn ref_truncated(&self, len: usize) -> Self
pub fn ref_truncated(&self, len: usize) -> Self
を返す。
Examples
let f: Poly = [1, 2, 3, 4, 5].into();
let g: Poly = [1, 2, 3].into();
assert_eq!(f.ref_truncated(3), g);
assert_eq!(f.ref_truncated(3), g);
sourcepub fn truncate(&mut self, len: usize)
pub fn truncate(&mut self, len: usize)
で更新する。
Examples
let mut f: Poly = [1, 2, 3, 4, 5].into();
let g: Poly = [1, 2, 3].into();
f.truncate(3);
assert_eq!(f, g);
sourcepub fn reversed(self) -> Self
pub fn reversed(self) -> Self
を返す。ただし の場合は を返す。
Examples
let f: Poly = [0, 1, 2].into();
let g: Poly = [2, 1].into();
assert_eq!(f.reversed(), g);
sourcepub fn reverse(&mut self)
pub fn reverse(&mut self)
で更新する。
Examples
let mut f: Poly = [0, 1, 2].into();
let g: Poly = [2, 1].into();
f.reverse();
assert_eq!(f, g);
sourcepub fn differential(self) -> Self
pub fn differential(self) -> Self
を返す。
とし、 のとき、 となる。ただし、 のとき である。
Examples
let f: Poly = [1, 1, 1, 1].into();
let g: Poly = [1, 2, 3].into();
assert_eq!(f.differential(), g);
sourcepub fn differentiate(&mut self)
pub fn differentiate(&mut self)
で更新する。
Examples
let mut f: Poly = [1, 1, 1, 1].into();
let g: Poly = [1, 2, 3].into();
f.differentiate();
assert_eq!(f, g);
sourcepub fn integral(self) -> Self
pub fn integral(self) -> Self
を返す。
とし、 のとき、 となる。ただし、 のとき である。
Examples
let f: Poly = [1, 2, 3].into();
let g: Poly = [0, 1, 1, 1].into();
assert_eq!(f.integral(), g);
let f = Poly::from([1, -1]).recip(4).integral();
let g = Poly::from([0, 1, 499122177, 332748118, 748683265]);
// \Integrate (1/(1-x)) dx = x + 1/2 x^2 + 1/3 x^3 + 1/4 x^4 + ...
assert_eq!(f, g);
sourcepub fn integrate(&mut self)
pub fn integrate(&mut self)
で更新する。
Examples
let mut f: Poly = [1, 2, 3].into();
let g: Poly = [0, 1, 1, 1].into();
f.integrate();
assert_eq!(f, g);
sourcepub fn log(&self, len: usize) -> Self
pub fn log(&self, len: usize) -> Self
なる に対し、 を返す。
などで定義される。 や などが成り立つ。
また、 となる。
Examples
let f: Poly = [1, 1].into();
let g: Poly = [0, 1, 499122176, 332748118, 249561088].into();
// log(1+x) = x - 1/2 x^2 + 1/3 x^3 - 1/4 x^4 + ...
assert_eq!(f.log(5), g);
assert_eq!(f.log(5).differential(), [1, -1, 1, -1].into());
sourcepub fn exp(&self, len: usize) -> Self
pub fn exp(&self, len: usize) -> Self
なる に対し、 を返す。
によって定義される。 や などが成り立つ。
また、 や も成り立つ。
Examples
let f: Poly = [0, 1].into();
let g: Poly = [1, 1, 499122177, 166374059, 291154603].into();
// exp(x) = 1 + x + 1/2 x^2 + 1/6 x^3 + 1/24 x^4 + ...
assert_eq!(f.exp(5), g);
sourcepub fn pow<I: Into<StaticModInt<M>>>(&self, k: I, len: usize) -> Self
pub fn pow<I: Into<StaticModInt<M>>>(&self, k: I, len: usize) -> Self
を返す。
Ideas
自明なケースとして、 のときは である。 のときは である。 としている。
それ以外のとき、 と書ける。
によって計算できる。 の引数の定数項が であることと、 の引数の定数項が になっていることに注意せよ。
Examples
let f: Poly = [1, 1].into();
let g: Poly = [1, 4, 6, 4, 1].into();
// (1+x)^4 = 1 + 4x + 6x^2 + 4x^3 + x^4
assert_eq!(f.pow(4, 10), g);
let f: Poly = [0, 0, 2, 6].into();
let g = Poly::from([64, 1152, 8640, 34560]) << 12;
// (2x^2+6x^3)^6
// = (2x^2 (1 + 3x))^6
// = 64x^12 (1 + 18x + 135x^2 + 540x^3 + ...)
// = 64x^12 + 1152x^13 + 8640x^14 + 34560x^15 + ...
assert_eq!(f.pow(6, 16), g);
sourcepub fn circular(&self, im: &Self, len: usize) -> (Self, Self)
pub fn circular(&self, im: &Self, len: usize) -> (Self, Self)
かつ なる に対して を返す。
から定義される。
Examples
let zero = Poly::new();
let f: Poly = [0, 1].into();
let g_re: Poly = [1, 0, -499122177, 0, 291154603, 0].into();
let g_im: Poly = [0, 1, 0, -166374059, 0, 856826403].into();
// cos(x) = 1 - 1/2 x^2 + 1/24 x^4 - ...
// sin(x) = x - 1/6 x^3 + 1/120 x^5 - ...
assert_eq!(zero.circular(&f, 6), (g_re, g_im));
sourcepub fn cos(&self, len: usize) -> Self
pub fn cos(&self, len: usize) -> Self
を返す。
Examples
let zero = Poly::new();
let f: Poly = [0, 1].into();
let g: Poly = [1, 0, -499122177, 0, 291154603, 0].into();
// cos(x) = 1 - 1/2 x^2 + 1/24 x^4 - ...
assert_eq!(f.cos(6), g);
sourcepub fn sin(&self, len: usize) -> Self
pub fn sin(&self, len: usize) -> Self
を返す。
Examples
let zero = Poly::new();
let f: Poly = [0, 1].into();
let g: Poly = [0, 1, 0, -166374059, 0, 856826403].into();
// sin(x) = x - 1/6 x^3 + 1/120 x^5 - ...
assert_eq!(f.sin(6), g);
sourcepub fn tan(&self, len: usize) -> Self
pub fn tan(&self, len: usize) -> Self
を返す。
Examples
let zero = Poly::new();
let f: Poly = [0, 1].into();
let g: Poly = [0, 1, 0, 332748118, 0, 732045859].into();
// tan(x) = x + 1/3 x^3 + 2/15 x^5 ...
assert_eq!(f.tan(6), g);
sourcepub fn polyeqn(self, n: usize, f_dfr: impl Fn(&Self, usize) -> Self) -> Self
pub fn polyeqn(self, n: usize, f_dfr: impl Fn(&Self, usize) -> Self) -> Self
self
を初期解とし、 を満たす を求める。
f_dfr
は に対して を返すとする。
Newton 法による に基づき、 で更新する。
Ideas
多項式 の のまわりでの Taylor 展開は、 として定義される。各係数 は一意に定まり、Taylor 係数と呼ばれる。
微分して を代入することなどで、ある多項式 を用いて以下のように書ける。
さて、 なる が得られており、かつ が逆元を持つとき、 で得られる によって が成り立つことを示す。
Proof
まず、 であることと、 が を割り切ることから は成り立つ。 これより、 も従う。 さて、多項式 の のまわりでの Taylor 展開から、ある に対して が成り立つので、 となる。 について整理して を得る。
なお、一般に、環 において、 が を法とする逆元を持つことは、 () を法とする逆元を持つことと同値である。
よって、上記の手続きを繰り返すことにより、 を任意の次数で求めることができる。 としていた箇所は、一般に と置き換えることも可能。 実際には、定数項のみを与え、 を法として始めることが多いであろう。
References
- Von Zur Gathen, Joachim, and Jürgen Gerhard. Modern computer algebra. Cambridge university press, 2013.
Examples
let one = Poly::from([1]);
let two = Poly::from([2]);
let three = Poly::from([3]);
let catalan = |y: &Poly, n| {
// c(x) = 1 + x c(x)^2
// f(y) = x y^2 - y + 1
// f(y) / f'(y) = (x y^2 - y + 1) / (2xy - 1)
let f = ((y * y) << 1) - y + &one;
let df = ((y * &two) << 1) - &one;
(f.truncated(n) * df.recip(n)).truncated(n)
};
let f = Poly::from([1]).polyeqn(6, catalan);
let g = Poly::from([1, 1, 2, 5, 14, 42]);
assert_eq!(f, g);
sourcepub fn fode(self, n: usize, f_df: impl Fn(&Self, usize) -> (Self, Self)) -> Self
pub fn fode(self, n: usize, f_df: impl Fn(&Self, usize) -> (Self, Self)) -> Self
self
を初期解とし、 を満たす を求める。
f_df
は に対して を返すとする。
Ideas
基本的な方針は Newton 法と同じである。Taylor 展開を用いて二次収束する更新式を得る。
を満たす が得られているとする。 このとき、ある が存在して、 の のまわりでの Taylor 展開が と書ける。仮定より なので、 となる。また、 と書けるので、 より が成り立つ。
ここで とおくと、 が成り立つ。 について整理して を得る。 の形式の微分方程式が得られたので、これについて考える。
を両辺に掛けて1、 より、 を得る。 の性質から であり、 となる。 ところで、 であったため、 となる必要がある。
さて、 なので、 とすると、 を得られる。 すなわち、以下で更新することになる。
実際には を immutable で管理して の更新をしている。
References
- Fateman, Richard J. “Series solutions of algebraic and differential equations: a comparison of linear and quadratic algebraic convergence.” In Proceedings of the ACM-SIGSAM 1989 international symposium on Symbolic and algebraic computation, pp. 11–16. 1989.
- Von Zur Gathen, Joachim, and Jürgen Gerhard. Modern computer algebra. Cambridge university press, 2013.
Examples
let x: Poly = [0, 1].into();
let one: Poly = [1].into();
let three: Poly = [3].into();
let f_df = |y: &Poly, n| {
let d = y - &x;
// (f(y), f'(y)) = ((y-x)^3+1, 3(y-x)^2)
let dd = (&d * &d).truncated(n);
((&dd * &d + &one).truncated(n), &dd * &three)
};
let n = 4;
let y = Poly::from([2]).fode(n + 1, f_df);
// y = x + 2/sqrt(1-8x) = 2 + 9x + 48x^2 + 320x^3 + 2240x^4 + ...
assert_eq!(y, [2, 9, 48, 320, 2240].into());
assert_eq!(f_df(&y, n).0, y.differential());
の引数の定数項は となる必要がある。 ↩
sourcepub fn get(&self, i: usize) -> StaticModInt<M>
pub fn get(&self, i: usize) -> StaticModInt<M>
を返す。
Examples
let f: Poly = [5, 0, 7].into();
assert_eq!(f.get(0).get(), 5);
assert_eq!(f.get(1).get(), 0);
assert_eq!(f.get(2).get(), 7);
assert_eq!(f.get(3).get(), 0);
assert_eq!(f.get(4).get(), 0);
pub fn eval(&self, t: impl Into<StaticModInt<M>>) -> StaticModInt<M>
sourcepub fn into_inner(self) -> Vec<StaticModInt<M>>
pub fn into_inner(self) -> Vec<StaticModInt<M>>
を返す。
sourcepub fn fft_butterfly(&mut self, len: usize)
pub fn fft_butterfly(&mut self, len: usize)
を返す。
とか とかの定義をちゃんと書く。butterfly をどう書くか悩ましい。
sourcepub fn fft_inv_butterfly(&mut self, len: usize)
pub fn fft_inv_butterfly(&mut self, len: usize)
を返す。
sourcepub fn fft_butterfly_double(&mut self, to_len: usize)
pub fn fft_butterfly_double(&mut self, to_len: usize)
を で更新する。
sourcepub fn div_mod(&self, other: &Polynomial<M>) -> (Self, Self)
pub fn div_mod(&self, other: &Polynomial<M>) -> (Self, Self)
を返す。
は ではなく多項式としての除算である。
sourcepub fn div_nth(&self, other: &Polynomial<M>, n: usize) -> StaticModInt<M>
pub fn div_nth(&self, other: &Polynomial<M>, n: usize) -> StaticModInt<M>
を返す。
Trait Implementations§
source§impl<'a, M: NttFriendly> Add<&'a Polynomial<M>> for &'a Polynomial<M>
impl<'a, M: NttFriendly> Add<&'a Polynomial<M>> for &'a Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
+
operator.source§fn add(self, other: &'a Polynomial<M>) -> Polynomial<M>
fn add(self, other: &'a Polynomial<M>) -> Polynomial<M>
+
operation. Read moresource§impl<'a, M: NttFriendly> Add<&'a Polynomial<M>> for Polynomial<M>
impl<'a, M: NttFriendly> Add<&'a Polynomial<M>> for Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
+
operator.source§fn add(self, other: &'a Polynomial<M>) -> Polynomial<M>
fn add(self, other: &'a Polynomial<M>) -> Polynomial<M>
+
operation. Read moresource§impl<'a, M: NttFriendly> Add<&'a StaticModInt<M>> for &'a Polynomial<M>
impl<'a, M: NttFriendly> Add<&'a StaticModInt<M>> for &'a Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
+
operator.source§fn add(self, other: &'a StaticModInt<M>) -> Polynomial<M>
fn add(self, other: &'a StaticModInt<M>) -> Polynomial<M>
+
operation. Read moresource§impl<'a, M: NttFriendly> Add<&'a StaticModInt<M>> for Polynomial<M>
impl<'a, M: NttFriendly> Add<&'a StaticModInt<M>> for Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
+
operator.source§fn add(self, other: &'a StaticModInt<M>) -> Polynomial<M>
fn add(self, other: &'a StaticModInt<M>) -> Polynomial<M>
+
operation. Read moresource§impl<'a, M: NttFriendly> Add<Polynomial<M>> for &'a Polynomial<M>
impl<'a, M: NttFriendly> Add<Polynomial<M>> for &'a Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
+
operator.source§fn add(self, other: Polynomial<M>) -> Polynomial<M>
fn add(self, other: Polynomial<M>) -> Polynomial<M>
+
operation. Read moresource§impl<M: NttFriendly> Add<Polynomial<M>> for Polynomial<M>
impl<M: NttFriendly> Add<Polynomial<M>> for Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
+
operator.source§fn add(self, other: Polynomial<M>) -> Polynomial<M>
fn add(self, other: Polynomial<M>) -> Polynomial<M>
+
operation. Read moresource§impl<'a, M: NttFriendly> Add<StaticModInt<M>> for &'a Polynomial<M>
impl<'a, M: NttFriendly> Add<StaticModInt<M>> for &'a Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
+
operator.source§fn add(self, other: StaticModInt<M>) -> Polynomial<M>
fn add(self, other: StaticModInt<M>) -> Polynomial<M>
+
operation. Read moresource§impl<M: NttFriendly> Add<StaticModInt<M>> for Polynomial<M>
impl<M: NttFriendly> Add<StaticModInt<M>> for Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
+
operator.source§fn add(self, other: StaticModInt<M>) -> Polynomial<M>
fn add(self, other: StaticModInt<M>) -> Polynomial<M>
+
operation. Read moresource§impl<'a, M: NttFriendly> AddAssign<&'a Polynomial<M>> for Polynomial<M>
impl<'a, M: NttFriendly> AddAssign<&'a Polynomial<M>> for Polynomial<M>
source§fn add_assign(&mut self, other: &'a Polynomial<M>)
fn add_assign(&mut self, other: &'a Polynomial<M>)
+=
operation. Read moresource§impl<'a, M: NttFriendly> AddAssign<&'a StaticModInt<M>> for Polynomial<M>
impl<'a, M: NttFriendly> AddAssign<&'a StaticModInt<M>> for Polynomial<M>
source§fn add_assign(&mut self, other: &'a StaticModInt<M>)
fn add_assign(&mut self, other: &'a StaticModInt<M>)
+=
operation. Read moresource§impl<M: NttFriendly> AddAssign<Polynomial<M>> for Polynomial<M>
impl<M: NttFriendly> AddAssign<Polynomial<M>> for Polynomial<M>
source§fn add_assign(&mut self, other: Polynomial<M>)
fn add_assign(&mut self, other: Polynomial<M>)
+=
operation. Read moresource§impl<M: NttFriendly> AddAssign<StaticModInt<M>> for Polynomial<M>
impl<M: NttFriendly> AddAssign<StaticModInt<M>> for Polynomial<M>
source§fn add_assign(&mut self, other: StaticModInt<M>)
fn add_assign(&mut self, other: StaticModInt<M>)
+=
operation. Read moresource§impl<'a, M: NttFriendly> BitAnd<&'a Polynomial<M>> for &'a Polynomial<M>
impl<'a, M: NttFriendly> BitAnd<&'a Polynomial<M>> for &'a Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
&
operator.source§fn bitand(self, other: &'a Polynomial<M>) -> Polynomial<M>
fn bitand(self, other: &'a Polynomial<M>) -> Polynomial<M>
&
operation. Read moresource§impl<'a, M: NttFriendly> BitAnd<&'a Polynomial<M>> for Polynomial<M>
impl<'a, M: NttFriendly> BitAnd<&'a Polynomial<M>> for Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
&
operator.source§fn bitand(self, other: &'a Polynomial<M>) -> Polynomial<M>
fn bitand(self, other: &'a Polynomial<M>) -> Polynomial<M>
&
operation. Read moresource§impl<'a, M: NttFriendly> BitAnd<&'a StaticModInt<M>> for &'a Polynomial<M>
impl<'a, M: NttFriendly> BitAnd<&'a StaticModInt<M>> for &'a Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
&
operator.source§fn bitand(self, other: &'a StaticModInt<M>) -> Polynomial<M>
fn bitand(self, other: &'a StaticModInt<M>) -> Polynomial<M>
&
operation. Read moresource§impl<'a, M: NttFriendly> BitAnd<&'a StaticModInt<M>> for Polynomial<M>
impl<'a, M: NttFriendly> BitAnd<&'a StaticModInt<M>> for Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
&
operator.source§fn bitand(self, other: &'a StaticModInt<M>) -> Polynomial<M>
fn bitand(self, other: &'a StaticModInt<M>) -> Polynomial<M>
&
operation. Read moresource§impl<'a, M: NttFriendly> BitAnd<Polynomial<M>> for &'a Polynomial<M>
impl<'a, M: NttFriendly> BitAnd<Polynomial<M>> for &'a Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
&
operator.source§fn bitand(self, other: Polynomial<M>) -> Polynomial<M>
fn bitand(self, other: Polynomial<M>) -> Polynomial<M>
&
operation. Read moresource§impl<M: NttFriendly> BitAnd<Polynomial<M>> for Polynomial<M>
impl<M: NttFriendly> BitAnd<Polynomial<M>> for Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
&
operator.source§fn bitand(self, other: Polynomial<M>) -> Polynomial<M>
fn bitand(self, other: Polynomial<M>) -> Polynomial<M>
&
operation. Read moresource§impl<'a, M: NttFriendly> BitAnd<StaticModInt<M>> for &'a Polynomial<M>
impl<'a, M: NttFriendly> BitAnd<StaticModInt<M>> for &'a Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
&
operator.source§fn bitand(self, other: StaticModInt<M>) -> Polynomial<M>
fn bitand(self, other: StaticModInt<M>) -> Polynomial<M>
&
operation. Read moresource§impl<M: NttFriendly> BitAnd<StaticModInt<M>> for Polynomial<M>
impl<M: NttFriendly> BitAnd<StaticModInt<M>> for Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
&
operator.source§fn bitand(self, other: StaticModInt<M>) -> Polynomial<M>
fn bitand(self, other: StaticModInt<M>) -> Polynomial<M>
&
operation. Read moresource§impl<'a, M: NttFriendly> BitAndAssign<&'a Polynomial<M>> for Polynomial<M>
impl<'a, M: NttFriendly> BitAndAssign<&'a Polynomial<M>> for Polynomial<M>
source§fn bitand_assign(&mut self, other: &'a Polynomial<M>)
fn bitand_assign(&mut self, other: &'a Polynomial<M>)
&=
operation. Read moresource§impl<'a, M: NttFriendly> BitAndAssign<&'a StaticModInt<M>> for Polynomial<M>
impl<'a, M: NttFriendly> BitAndAssign<&'a StaticModInt<M>> for Polynomial<M>
source§fn bitand_assign(&mut self, other: &'a StaticModInt<M>)
fn bitand_assign(&mut self, other: &'a StaticModInt<M>)
&=
operation. Read moresource§impl<M: NttFriendly> BitAndAssign<Polynomial<M>> for Polynomial<M>
impl<M: NttFriendly> BitAndAssign<Polynomial<M>> for Polynomial<M>
source§fn bitand_assign(&mut self, other: Polynomial<M>)
fn bitand_assign(&mut self, other: Polynomial<M>)
&=
operation. Read moresource§impl<M: NttFriendly> BitAndAssign<StaticModInt<M>> for Polynomial<M>
impl<M: NttFriendly> BitAndAssign<StaticModInt<M>> for Polynomial<M>
source§fn bitand_assign(&mut self, other: StaticModInt<M>)
fn bitand_assign(&mut self, other: StaticModInt<M>)
&=
operation. Read moresource§impl<M: Clone + NttFriendly> Clone for Polynomial<M>
impl<M: Clone + NttFriendly> Clone for Polynomial<M>
source§fn clone(&self) -> Polynomial<M>
fn clone(&self) -> Polynomial<M>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<M: NttFriendly> Debug for Polynomial<M>
impl<M: NttFriendly> Debug for Polynomial<M>
source§impl<M: NttFriendly> Display for Polynomial<M>
impl<M: NttFriendly> Display for Polynomial<M>
source§impl<'a, M: NttFriendly> Div<&'a Polynomial<M>> for &'a Polynomial<M>
impl<'a, M: NttFriendly> Div<&'a Polynomial<M>> for &'a Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
/
operator.source§fn div(self, other: &'a Polynomial<M>) -> Polynomial<M>
fn div(self, other: &'a Polynomial<M>) -> Polynomial<M>
/
operation. Read moresource§impl<'a, M: NttFriendly> Div<&'a Polynomial<M>> for Polynomial<M>
impl<'a, M: NttFriendly> Div<&'a Polynomial<M>> for Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
/
operator.source§fn div(self, other: &'a Polynomial<M>) -> Polynomial<M>
fn div(self, other: &'a Polynomial<M>) -> Polynomial<M>
/
operation. Read moresource§impl<'a, M: NttFriendly> Div<&'a StaticModInt<M>> for &'a Polynomial<M>
impl<'a, M: NttFriendly> Div<&'a StaticModInt<M>> for &'a Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
/
operator.source§fn div(self, other: &'a StaticModInt<M>) -> Polynomial<M>
fn div(self, other: &'a StaticModInt<M>) -> Polynomial<M>
/
operation. Read moresource§impl<'a, M: NttFriendly> Div<&'a StaticModInt<M>> for Polynomial<M>
impl<'a, M: NttFriendly> Div<&'a StaticModInt<M>> for Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
/
operator.source§fn div(self, other: &'a StaticModInt<M>) -> Polynomial<M>
fn div(self, other: &'a StaticModInt<M>) -> Polynomial<M>
/
operation. Read moresource§impl<'a, M: NttFriendly> Div<Polynomial<M>> for &'a Polynomial<M>
impl<'a, M: NttFriendly> Div<Polynomial<M>> for &'a Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
/
operator.source§fn div(self, other: Polynomial<M>) -> Polynomial<M>
fn div(self, other: Polynomial<M>) -> Polynomial<M>
/
operation. Read moresource§impl<M: NttFriendly> Div<Polynomial<M>> for Polynomial<M>
impl<M: NttFriendly> Div<Polynomial<M>> for Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
/
operator.source§fn div(self, other: Polynomial<M>) -> Polynomial<M>
fn div(self, other: Polynomial<M>) -> Polynomial<M>
/
operation. Read moresource§impl<'a, M: NttFriendly> Div<StaticModInt<M>> for &'a Polynomial<M>
impl<'a, M: NttFriendly> Div<StaticModInt<M>> for &'a Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
/
operator.source§fn div(self, other: StaticModInt<M>) -> Polynomial<M>
fn div(self, other: StaticModInt<M>) -> Polynomial<M>
/
operation. Read moresource§impl<M: NttFriendly> Div<StaticModInt<M>> for Polynomial<M>
impl<M: NttFriendly> Div<StaticModInt<M>> for Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
/
operator.source§fn div(self, other: StaticModInt<M>) -> Polynomial<M>
fn div(self, other: StaticModInt<M>) -> Polynomial<M>
/
operation. Read moresource§impl<'a, M: NttFriendly> DivAssign<&'a Polynomial<M>> for Polynomial<M>
impl<'a, M: NttFriendly> DivAssign<&'a Polynomial<M>> for Polynomial<M>
source§fn div_assign(&mut self, other: &'a Polynomial<M>)
fn div_assign(&mut self, other: &'a Polynomial<M>)
/=
operation. Read moresource§impl<'a, M: NttFriendly> DivAssign<&'a StaticModInt<M>> for Polynomial<M>
impl<'a, M: NttFriendly> DivAssign<&'a StaticModInt<M>> for Polynomial<M>
source§fn div_assign(&mut self, other: &'a StaticModInt<M>)
fn div_assign(&mut self, other: &'a StaticModInt<M>)
/=
operation. Read moresource§impl<M: NttFriendly> DivAssign<Polynomial<M>> for Polynomial<M>
impl<M: NttFriendly> DivAssign<Polynomial<M>> for Polynomial<M>
source§fn div_assign(&mut self, other: Polynomial<M>)
fn div_assign(&mut self, other: Polynomial<M>)
/=
operation. Read moresource§impl<M: NttFriendly> DivAssign<StaticModInt<M>> for Polynomial<M>
impl<M: NttFriendly> DivAssign<StaticModInt<M>> for Polynomial<M>
source§fn div_assign(&mut self, other: StaticModInt<M>)
fn div_assign(&mut self, other: StaticModInt<M>)
/=
operation. Read moresource§impl<'a, M: NttFriendly> From<&'a [StaticModInt<M>]> for Polynomial<M>
impl<'a, M: NttFriendly> From<&'a [StaticModInt<M>]> for Polynomial<M>
source§fn from(buf: &'a [StaticModInt<M>]) -> Self
fn from(buf: &'a [StaticModInt<M>]) -> Self
source§impl<'a, M: NttFriendly> From<&'a [i128]> for Polynomial<M>
impl<'a, M: NttFriendly> From<&'a [i128]> for Polynomial<M>
source§impl<'a, M: NttFriendly> From<&'a [i16]> for Polynomial<M>
impl<'a, M: NttFriendly> From<&'a [i16]> for Polynomial<M>
source§impl<'a, M: NttFriendly> From<&'a [i32]> for Polynomial<M>
impl<'a, M: NttFriendly> From<&'a [i32]> for Polynomial<M>
source§impl<'a, M: NttFriendly> From<&'a [i64]> for Polynomial<M>
impl<'a, M: NttFriendly> From<&'a [i64]> for Polynomial<M>
source§impl<'a, M: NttFriendly> From<&'a [i8]> for Polynomial<M>
impl<'a, M: NttFriendly> From<&'a [i8]> for Polynomial<M>
source§impl<'a, M: NttFriendly> From<&'a [isize]> for Polynomial<M>
impl<'a, M: NttFriendly> From<&'a [isize]> for Polynomial<M>
source§impl<'a, M: NttFriendly> From<&'a [u128]> for Polynomial<M>
impl<'a, M: NttFriendly> From<&'a [u128]> for Polynomial<M>
source§impl<'a, M: NttFriendly> From<&'a [u16]> for Polynomial<M>
impl<'a, M: NttFriendly> From<&'a [u16]> for Polynomial<M>
source§impl<'a, M: NttFriendly> From<&'a [u32]> for Polynomial<M>
impl<'a, M: NttFriendly> From<&'a [u32]> for Polynomial<M>
source§impl<'a, M: NttFriendly> From<&'a [u64]> for Polynomial<M>
impl<'a, M: NttFriendly> From<&'a [u64]> for Polynomial<M>
source§impl<'a, M: NttFriendly> From<&'a [u8]> for Polynomial<M>
impl<'a, M: NttFriendly> From<&'a [u8]> for Polynomial<M>
source§impl<'a, M: NttFriendly> From<&'a [usize]> for Polynomial<M>
impl<'a, M: NttFriendly> From<&'a [usize]> for Polynomial<M>
source§impl<M: NttFriendly, const N: usize> From<[StaticModInt<M>; N]> for Polynomial<M>
impl<M: NttFriendly, const N: usize> From<[StaticModInt<M>; N]> for Polynomial<M>
source§fn from(buf: [StaticModInt<M>; N]) -> Self
fn from(buf: [StaticModInt<M>; N]) -> Self
source§impl<M: NttFriendly, const N: usize> From<[i128; N]> for Polynomial<M>
impl<M: NttFriendly, const N: usize> From<[i128; N]> for Polynomial<M>
source§impl<M: NttFriendly, const N: usize> From<[i16; N]> for Polynomial<M>
impl<M: NttFriendly, const N: usize> From<[i16; N]> for Polynomial<M>
source§impl<M: NttFriendly, const N: usize> From<[i32; N]> for Polynomial<M>
impl<M: NttFriendly, const N: usize> From<[i32; N]> for Polynomial<M>
source§impl<M: NttFriendly, const N: usize> From<[i64; N]> for Polynomial<M>
impl<M: NttFriendly, const N: usize> From<[i64; N]> for Polynomial<M>
source§impl<M: NttFriendly, const N: usize> From<[i8; N]> for Polynomial<M>
impl<M: NttFriendly, const N: usize> From<[i8; N]> for Polynomial<M>
source§impl<M: NttFriendly, const N: usize> From<[isize; N]> for Polynomial<M>
impl<M: NttFriendly, const N: usize> From<[isize; N]> for Polynomial<M>
source§impl<M: NttFriendly, const N: usize> From<[u128; N]> for Polynomial<M>
impl<M: NttFriendly, const N: usize> From<[u128; N]> for Polynomial<M>
source§impl<M: NttFriendly, const N: usize> From<[u16; N]> for Polynomial<M>
impl<M: NttFriendly, const N: usize> From<[u16; N]> for Polynomial<M>
source§impl<M: NttFriendly, const N: usize> From<[u32; N]> for Polynomial<M>
impl<M: NttFriendly, const N: usize> From<[u32; N]> for Polynomial<M>
source§impl<M: NttFriendly, const N: usize> From<[u64; N]> for Polynomial<M>
impl<M: NttFriendly, const N: usize> From<[u64; N]> for Polynomial<M>
source§impl<M: NttFriendly, const N: usize> From<[u8; N]> for Polynomial<M>
impl<M: NttFriendly, const N: usize> From<[u8; N]> for Polynomial<M>
source§impl<M: NttFriendly, const N: usize> From<[usize; N]> for Polynomial<M>
impl<M: NttFriendly, const N: usize> From<[usize; N]> for Polynomial<M>
source§impl<M: NttFriendly> From<Vec<StaticModInt<M>, Global>> for Polynomial<M>
impl<M: NttFriendly> From<Vec<StaticModInt<M>, Global>> for Polynomial<M>
source§fn from(buf: Vec<StaticModInt<M>>) -> Self
fn from(buf: Vec<StaticModInt<M>>) -> Self
source§impl<M: NttFriendly> From<Vec<i128, Global>> for Polynomial<M>
impl<M: NttFriendly> From<Vec<i128, Global>> for Polynomial<M>
source§impl<M: NttFriendly> From<Vec<i16, Global>> for Polynomial<M>
impl<M: NttFriendly> From<Vec<i16, Global>> for Polynomial<M>
source§impl<M: NttFriendly> From<Vec<i32, Global>> for Polynomial<M>
impl<M: NttFriendly> From<Vec<i32, Global>> for Polynomial<M>
source§impl<M: NttFriendly> From<Vec<i64, Global>> for Polynomial<M>
impl<M: NttFriendly> From<Vec<i64, Global>> for Polynomial<M>
source§impl<M: NttFriendly> From<Vec<i8, Global>> for Polynomial<M>
impl<M: NttFriendly> From<Vec<i8, Global>> for Polynomial<M>
source§impl<M: NttFriendly> From<Vec<isize, Global>> for Polynomial<M>
impl<M: NttFriendly> From<Vec<isize, Global>> for Polynomial<M>
source§impl<M: NttFriendly> From<Vec<u128, Global>> for Polynomial<M>
impl<M: NttFriendly> From<Vec<u128, Global>> for Polynomial<M>
source§impl<M: NttFriendly> From<Vec<u16, Global>> for Polynomial<M>
impl<M: NttFriendly> From<Vec<u16, Global>> for Polynomial<M>
source§impl<M: NttFriendly> From<Vec<u32, Global>> for Polynomial<M>
impl<M: NttFriendly> From<Vec<u32, Global>> for Polynomial<M>
source§impl<M: NttFriendly> From<Vec<u64, Global>> for Polynomial<M>
impl<M: NttFriendly> From<Vec<u64, Global>> for Polynomial<M>
source§impl<M: NttFriendly> From<Vec<u8, Global>> for Polynomial<M>
impl<M: NttFriendly> From<Vec<u8, Global>> for Polynomial<M>
source§impl<M: NttFriendly> From<Vec<usize, Global>> for Polynomial<M>
impl<M: NttFriendly> From<Vec<usize, Global>> for Polynomial<M>
source§impl<'a, M: NttFriendly> Mul<&'a Polynomial<M>> for &'a Polynomial<M>
impl<'a, M: NttFriendly> Mul<&'a Polynomial<M>> for &'a Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
*
operator.source§fn mul(self, other: &'a Polynomial<M>) -> Polynomial<M>
fn mul(self, other: &'a Polynomial<M>) -> Polynomial<M>
*
operation. Read moresource§impl<'a, M: NttFriendly> Mul<&'a Polynomial<M>> for Polynomial<M>
impl<'a, M: NttFriendly> Mul<&'a Polynomial<M>> for Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
*
operator.source§fn mul(self, other: &'a Polynomial<M>) -> Polynomial<M>
fn mul(self, other: &'a Polynomial<M>) -> Polynomial<M>
*
operation. Read moresource§impl<'a, M: NttFriendly> Mul<&'a StaticModInt<M>> for &'a Polynomial<M>
impl<'a, M: NttFriendly> Mul<&'a StaticModInt<M>> for &'a Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
*
operator.source§fn mul(self, other: &'a StaticModInt<M>) -> Polynomial<M>
fn mul(self, other: &'a StaticModInt<M>) -> Polynomial<M>
*
operation. Read moresource§impl<'a, M: NttFriendly> Mul<&'a StaticModInt<M>> for Polynomial<M>
impl<'a, M: NttFriendly> Mul<&'a StaticModInt<M>> for Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
*
operator.source§fn mul(self, other: &'a StaticModInt<M>) -> Polynomial<M>
fn mul(self, other: &'a StaticModInt<M>) -> Polynomial<M>
*
operation. Read moresource§impl<'a, M: NttFriendly> Mul<Polynomial<M>> for &'a Polynomial<M>
impl<'a, M: NttFriendly> Mul<Polynomial<M>> for &'a Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
*
operator.source§fn mul(self, other: Polynomial<M>) -> Polynomial<M>
fn mul(self, other: Polynomial<M>) -> Polynomial<M>
*
operation. Read moresource§impl<M: NttFriendly> Mul<Polynomial<M>> for Polynomial<M>
impl<M: NttFriendly> Mul<Polynomial<M>> for Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
*
operator.source§fn mul(self, other: Polynomial<M>) -> Polynomial<M>
fn mul(self, other: Polynomial<M>) -> Polynomial<M>
*
operation. Read moresource§impl<'a, M: NttFriendly> Mul<StaticModInt<M>> for &'a Polynomial<M>
impl<'a, M: NttFriendly> Mul<StaticModInt<M>> for &'a Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
*
operator.source§fn mul(self, other: StaticModInt<M>) -> Polynomial<M>
fn mul(self, other: StaticModInt<M>) -> Polynomial<M>
*
operation. Read moresource§impl<M: NttFriendly> Mul<StaticModInt<M>> for Polynomial<M>
impl<M: NttFriendly> Mul<StaticModInt<M>> for Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
*
operator.source§fn mul(self, other: StaticModInt<M>) -> Polynomial<M>
fn mul(self, other: StaticModInt<M>) -> Polynomial<M>
*
operation. Read moresource§impl<'a, M: NttFriendly> MulAssign<&'a Polynomial<M>> for Polynomial<M>
impl<'a, M: NttFriendly> MulAssign<&'a Polynomial<M>> for Polynomial<M>
source§fn mul_assign(&mut self, other: &'a Polynomial<M>)
fn mul_assign(&mut self, other: &'a Polynomial<M>)
*=
operation. Read moresource§impl<'a, M: NttFriendly> MulAssign<&'a StaticModInt<M>> for Polynomial<M>
impl<'a, M: NttFriendly> MulAssign<&'a StaticModInt<M>> for Polynomial<M>
source§fn mul_assign(&mut self, other: &'a StaticModInt<M>)
fn mul_assign(&mut self, other: &'a StaticModInt<M>)
*=
operation. Read moresource§impl<M: NttFriendly> MulAssign<Polynomial<M>> for Polynomial<M>
impl<M: NttFriendly> MulAssign<Polynomial<M>> for Polynomial<M>
source§fn mul_assign(&mut self, other: Polynomial<M>)
fn mul_assign(&mut self, other: Polynomial<M>)
*=
operation. Read moresource§impl<M: NttFriendly> MulAssign<StaticModInt<M>> for Polynomial<M>
impl<M: NttFriendly> MulAssign<StaticModInt<M>> for Polynomial<M>
source§fn mul_assign(&mut self, other: StaticModInt<M>)
fn mul_assign(&mut self, other: StaticModInt<M>)
*=
operation. Read moresource§impl<'a, M: NttFriendly> Neg for &'a Polynomial<M>
impl<'a, M: NttFriendly> Neg for &'a Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
-
operator.source§fn neg(self) -> Polynomial<M>
fn neg(self) -> Polynomial<M>
-
operation. Read moresource§impl<M: NttFriendly> Neg for Polynomial<M>
impl<M: NttFriendly> Neg for Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
-
operator.source§fn neg(self) -> Polynomial<M>
fn neg(self) -> Polynomial<M>
-
operation. Read moresource§impl<M: PartialEq + NttFriendly> PartialEq<Polynomial<M>> for Polynomial<M>
impl<M: PartialEq + NttFriendly> PartialEq<Polynomial<M>> for Polynomial<M>
source§fn eq(&self, other: &Polynomial<M>) -> bool
fn eq(&self, other: &Polynomial<M>) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl<'a, M: NttFriendly> Rem<&'a Polynomial<M>> for &'a Polynomial<M>
impl<'a, M: NttFriendly> Rem<&'a Polynomial<M>> for &'a Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
%
operator.source§fn rem(self, other: &'a Polynomial<M>) -> Polynomial<M>
fn rem(self, other: &'a Polynomial<M>) -> Polynomial<M>
%
operation. Read moresource§impl<'a, M: NttFriendly> Rem<&'a Polynomial<M>> for Polynomial<M>
impl<'a, M: NttFriendly> Rem<&'a Polynomial<M>> for Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
%
operator.source§fn rem(self, other: &'a Polynomial<M>) -> Polynomial<M>
fn rem(self, other: &'a Polynomial<M>) -> Polynomial<M>
%
operation. Read moresource§impl<'a, M: NttFriendly> Rem<&'a StaticModInt<M>> for &'a Polynomial<M>
impl<'a, M: NttFriendly> Rem<&'a StaticModInt<M>> for &'a Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
%
operator.source§fn rem(self, other: &'a StaticModInt<M>) -> Polynomial<M>
fn rem(self, other: &'a StaticModInt<M>) -> Polynomial<M>
%
operation. Read moresource§impl<'a, M: NttFriendly> Rem<&'a StaticModInt<M>> for Polynomial<M>
impl<'a, M: NttFriendly> Rem<&'a StaticModInt<M>> for Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
%
operator.source§fn rem(self, other: &'a StaticModInt<M>) -> Polynomial<M>
fn rem(self, other: &'a StaticModInt<M>) -> Polynomial<M>
%
operation. Read moresource§impl<'a, M: NttFriendly> Rem<Polynomial<M>> for &'a Polynomial<M>
impl<'a, M: NttFriendly> Rem<Polynomial<M>> for &'a Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
%
operator.source§fn rem(self, other: Polynomial<M>) -> Polynomial<M>
fn rem(self, other: Polynomial<M>) -> Polynomial<M>
%
operation. Read moresource§impl<M: NttFriendly> Rem<Polynomial<M>> for Polynomial<M>
impl<M: NttFriendly> Rem<Polynomial<M>> for Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
%
operator.source§fn rem(self, other: Polynomial<M>) -> Polynomial<M>
fn rem(self, other: Polynomial<M>) -> Polynomial<M>
%
operation. Read moresource§impl<'a, M: NttFriendly> Rem<StaticModInt<M>> for &'a Polynomial<M>
impl<'a, M: NttFriendly> Rem<StaticModInt<M>> for &'a Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
%
operator.source§fn rem(self, other: StaticModInt<M>) -> Polynomial<M>
fn rem(self, other: StaticModInt<M>) -> Polynomial<M>
%
operation. Read moresource§impl<M: NttFriendly> Rem<StaticModInt<M>> for Polynomial<M>
impl<M: NttFriendly> Rem<StaticModInt<M>> for Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
%
operator.source§fn rem(self, other: StaticModInt<M>) -> Polynomial<M>
fn rem(self, other: StaticModInt<M>) -> Polynomial<M>
%
operation. Read moresource§impl<'a, M: NttFriendly> RemAssign<&'a Polynomial<M>> for Polynomial<M>
impl<'a, M: NttFriendly> RemAssign<&'a Polynomial<M>> for Polynomial<M>
source§fn rem_assign(&mut self, other: &'a Polynomial<M>)
fn rem_assign(&mut self, other: &'a Polynomial<M>)
%=
operation. Read moresource§impl<'a, M: NttFriendly> RemAssign<&'a StaticModInt<M>> for Polynomial<M>
impl<'a, M: NttFriendly> RemAssign<&'a StaticModInt<M>> for Polynomial<M>
source§fn rem_assign(&mut self, other: &'a StaticModInt<M>)
fn rem_assign(&mut self, other: &'a StaticModInt<M>)
%=
operation. Read moresource§impl<M: NttFriendly> RemAssign<Polynomial<M>> for Polynomial<M>
impl<M: NttFriendly> RemAssign<Polynomial<M>> for Polynomial<M>
source§fn rem_assign(&mut self, other: Polynomial<M>)
fn rem_assign(&mut self, other: Polynomial<M>)
%=
operation. Read moresource§impl<M: NttFriendly> RemAssign<StaticModInt<M>> for Polynomial<M>
impl<M: NttFriendly> RemAssign<StaticModInt<M>> for Polynomial<M>
source§fn rem_assign(&mut self, other: StaticModInt<M>)
fn rem_assign(&mut self, other: StaticModInt<M>)
%=
operation. Read moresource§impl<'a, M: NttFriendly> Shl<usize> for &'a Polynomial<M>
impl<'a, M: NttFriendly> Shl<usize> for &'a Polynomial<M>
source§impl<M: NttFriendly> Shl<usize> for Polynomial<M>
impl<M: NttFriendly> Shl<usize> for Polynomial<M>
source§impl<M: NttFriendly> ShlAssign<usize> for Polynomial<M>
impl<M: NttFriendly> ShlAssign<usize> for Polynomial<M>
source§fn shl_assign(&mut self, sh: usize)
fn shl_assign(&mut self, sh: usize)
<<=
operation. Read moresource§impl<'a, M: NttFriendly> Shr<usize> for &'a Polynomial<M>
impl<'a, M: NttFriendly> Shr<usize> for &'a Polynomial<M>
source§impl<M: NttFriendly> Shr<usize> for Polynomial<M>
impl<M: NttFriendly> Shr<usize> for Polynomial<M>
source§impl<M: NttFriendly> ShrAssign<usize> for Polynomial<M>
impl<M: NttFriendly> ShrAssign<usize> for Polynomial<M>
source§fn shr_assign(&mut self, sh: usize)
fn shr_assign(&mut self, sh: usize)
>>=
operation. Read moresource§impl<'a, M: NttFriendly> Sub<&'a Polynomial<M>> for &'a Polynomial<M>
impl<'a, M: NttFriendly> Sub<&'a Polynomial<M>> for &'a Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
-
operator.source§fn sub(self, other: &'a Polynomial<M>) -> Polynomial<M>
fn sub(self, other: &'a Polynomial<M>) -> Polynomial<M>
-
operation. Read moresource§impl<'a, M: NttFriendly> Sub<&'a Polynomial<M>> for Polynomial<M>
impl<'a, M: NttFriendly> Sub<&'a Polynomial<M>> for Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
-
operator.source§fn sub(self, other: &'a Polynomial<M>) -> Polynomial<M>
fn sub(self, other: &'a Polynomial<M>) -> Polynomial<M>
-
operation. Read moresource§impl<'a, M: NttFriendly> Sub<&'a StaticModInt<M>> for &'a Polynomial<M>
impl<'a, M: NttFriendly> Sub<&'a StaticModInt<M>> for &'a Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
-
operator.source§fn sub(self, other: &'a StaticModInt<M>) -> Polynomial<M>
fn sub(self, other: &'a StaticModInt<M>) -> Polynomial<M>
-
operation. Read moresource§impl<'a, M: NttFriendly> Sub<&'a StaticModInt<M>> for Polynomial<M>
impl<'a, M: NttFriendly> Sub<&'a StaticModInt<M>> for Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
-
operator.source§fn sub(self, other: &'a StaticModInt<M>) -> Polynomial<M>
fn sub(self, other: &'a StaticModInt<M>) -> Polynomial<M>
-
operation. Read moresource§impl<'a, M: NttFriendly> Sub<Polynomial<M>> for &'a Polynomial<M>
impl<'a, M: NttFriendly> Sub<Polynomial<M>> for &'a Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
-
operator.source§fn sub(self, other: Polynomial<M>) -> Polynomial<M>
fn sub(self, other: Polynomial<M>) -> Polynomial<M>
-
operation. Read moresource§impl<M: NttFriendly> Sub<Polynomial<M>> for Polynomial<M>
impl<M: NttFriendly> Sub<Polynomial<M>> for Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
-
operator.source§fn sub(self, other: Polynomial<M>) -> Polynomial<M>
fn sub(self, other: Polynomial<M>) -> Polynomial<M>
-
operation. Read moresource§impl<'a, M: NttFriendly> Sub<StaticModInt<M>> for &'a Polynomial<M>
impl<'a, M: NttFriendly> Sub<StaticModInt<M>> for &'a Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
-
operator.source§fn sub(self, other: StaticModInt<M>) -> Polynomial<M>
fn sub(self, other: StaticModInt<M>) -> Polynomial<M>
-
operation. Read moresource§impl<M: NttFriendly> Sub<StaticModInt<M>> for Polynomial<M>
impl<M: NttFriendly> Sub<StaticModInt<M>> for Polynomial<M>
§type Output = Polynomial<M>
type Output = Polynomial<M>
-
operator.source§fn sub(self, other: StaticModInt<M>) -> Polynomial<M>
fn sub(self, other: StaticModInt<M>) -> Polynomial<M>
-
operation. Read moresource§impl<'a, M: NttFriendly> SubAssign<&'a Polynomial<M>> for Polynomial<M>
impl<'a, M: NttFriendly> SubAssign<&'a Polynomial<M>> for Polynomial<M>
source§fn sub_assign(&mut self, other: &'a Polynomial<M>)
fn sub_assign(&mut self, other: &'a Polynomial<M>)
-=
operation. Read moresource§impl<'a, M: NttFriendly> SubAssign<&'a StaticModInt<M>> for Polynomial<M>
impl<'a, M: NttFriendly> SubAssign<&'a StaticModInt<M>> for Polynomial<M>
source§fn sub_assign(&mut self, other: &'a StaticModInt<M>)
fn sub_assign(&mut self, other: &'a StaticModInt<M>)
-=
operation. Read moresource§impl<M: NttFriendly> SubAssign<Polynomial<M>> for Polynomial<M>
impl<M: NttFriendly> SubAssign<Polynomial<M>> for Polynomial<M>
source§fn sub_assign(&mut self, other: Polynomial<M>)
fn sub_assign(&mut self, other: Polynomial<M>)
-=
operation. Read moresource§impl<M: NttFriendly> SubAssign<StaticModInt<M>> for Polynomial<M>
impl<M: NttFriendly> SubAssign<StaticModInt<M>> for Polynomial<M>
source§fn sub_assign(&mut self, other: StaticModInt<M>)
fn sub_assign(&mut self, other: StaticModInt<M>)
-=
operation. Read more