catlog::zero::rig

Trait CommRig

Source
pub trait CommRig: Rig + CommMonoid { }
Expand description

A commutative rig, also known as a commutative semiring.

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.

Implementations on Foreign Types§

Source§

impl CommRig for f32

Source§

impl CommRig for f64

Source§

impl CommRig for i32

Source§

impl CommRig for i64

Source§

impl CommRig for u32

Source§

impl CommRig for u64

Source§

impl CommRig for usize

Implementors§

Source§

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