[][src]Trait rustfst::semirings::StarSemiring

pub trait StarSemiring: Semiring {
    fn closure(&self) -> Self;
}

A complete semiring S is a starsemiring that is a semiring that can be augmented with an internal unary closure operation ∗ defined by a∗=⊕an (infinite sum) for any a ∈ S. Furthermore, associativity, commutativity, and distributivity apply to these infinite sums. For more information : https://cs.nyu.edu/~mohri/pub/hwa.pdf

Required methods

fn closure(&self) -> Self

Loading content...

Implementors

impl StarSemiring for BooleanWeight[src]

impl StarSemiring for IntegerWeight[src]

impl StarSemiring for LogWeight[src]

impl StarSemiring for ProbabilityWeight[src]

impl StarSemiring for TropicalWeight[src]

Loading content...