catlog::zero::rig

Trait RigModule

Source
pub trait RigModule: AdditiveMonoid + Mul<Self::Rig, Output = Self> {
    type Rig: CommRig;
}
Expand description

A module over a commutative rig.

Required Associated Types§

Source

type Rig: CommRig

Base rig for the module.

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> RigModule for Combination<Var, Coef>
where Var: Ord, Coef: Clone + Default + CommRig,

Source§

type Rig = Coef

Source§

impl<Var, Coef, Exp> RigModule for Polynomial<Var, Coef, Exp>
where Var: Ord, Coef: Clone + Default + CommRig, Exp: Ord,

Source§

type Rig = Coef