pub trait ModMulAssign<RHS = Self, M = Self> {
    fn mod_mul_assign(&mut self, other: RHS, m: M);
}
Expand description

Multiplies two numbers modulo a third number $m$, in place. Assumes the inputs are already reduced modulo $m$.

Required Methods

Implementations on Foreign Types

Multiplies two numbers modulo a third number $m$, in place. Assumes the inputs are already reduced modulo $m$.

$x \gets z$, where $x, y, z < m$ and $xy \equiv z \mod m$.

Worst-case complexity

Constant time and additional memory.

Examples

See here.

This is equivalent to nmod_mul from nmod_vec.h, FLINT 2.7.1, where the result is assigned to a.

Multiplies two numbers modulo a third number $m$, in place. Assumes the inputs are already reduced modulo $m$.

$x \gets z$, where $x, y, z < m$ and $xy \equiv z \mod m$.

Worst-case complexity

Constant time and additional memory.

Examples

See here.

This is equivalent to nmod_mul from nmod_vec.h, FLINT 2.7.1, where the result is assigned to a.

Multiplies two numbers modulo a third number $m$, in place. Assumes the inputs are already reduced modulo $m$.

$x \gets z$, where $x, y, z < m$ and $xy \equiv z \mod m$.

Worst-case complexity

Constant time and additional memory.

Examples

See here.

This is equivalent to nmod_mul from nmod_vec.h, FLINT 2.7.1, where the result is assigned to a.

Multiplies two numbers modulo a third number $m$, in place. Assumes the inputs are already reduced modulo $m$.

$x \gets z$, where $x, y, z < m$ and $xy \equiv z \mod m$.

Worst-case complexity

Constant time and additional memory.

Examples

See here.

This is equivalent to nmod_mul from nmod_vec.h, FLINT 2.7.1, where the result is assigned to a.

Multiplies two numbers modulo a third number $m$, in place. Assumes the inputs are already reduced modulo $m$.

$x \gets z$, where $x, y, z < m$ and $xy \equiv z \mod m$.

Worst-case complexity

Constant time and additional memory.

Examples

See here.

This is equivalent to nmod_mul from nmod_vec.h, FLINT 2.7.1, where the result is assigned to a.

Multiplies two numbers modulo a third number $m$, in place. Assumes the inputs are already reduced modulo $m$.

$x \gets z$, where $x, y, z < m$ and $xy \equiv z \mod m$.

Worst-case complexity

Constant time and additional memory.

Examples

See here.

This is equivalent to nmod_mul from nmod_vec.h, FLINT 2.7.1, where the result is assigned to a.

Implementors