catlog::zero::alg

Trait CommAlg

Source
pub trait CommAlg: CommRing + Module<Ring = Self::R> {
    type R: CommRing;

    // Provided method
    fn from_scalar(r: Self::R) -> Self { ... }
}
Expand description

A commutative algebra over a commutative ring.

Required Associated Types§

Source

type R: CommRing

The base ring of the algebra.

Provided Methods§

Source

fn from_scalar(r: Self::R) -> Self

Convert an element of the base ring into an element of the algebra.

A commutative algebra A over a commutative ring R can be defined as a ring homomorphism from R to A. This method computes that homomorphism.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<Var, Coef, Exp> CommAlg for Polynomial<Var, Coef, Exp>
where Var: Clone + Ord, Coef: Clone + Default + CommRing, Exp: Clone + Ord + AdditiveMonoid,

Source§

type R = Coef