Safe Haskell | Safe |
---|---|
Language | Haskell2010 |
Data.Dioid.Property
Contents
Synopsis
- ordered_preordered :: Dioid r => r -> r -> Bool
- ordered_monotone_zero :: (Monoid r, Dioid r) => r -> Bool
- ordered_monotone_addition :: Dioid r => r -> r -> r -> Bool
- ordered_positive_addition :: (Prd r, Monoid r) => r -> r -> Bool
- ordered_monotone_multiplication :: Dioid r => r -> r -> r -> Bool
- ordered_annihilative_sunit :: (Monoid r, Dioid r) => r -> Bool
- ordered_idempotent_addition :: (Prd r, Monoid r) => r -> r -> Bool
- ordered_positive_multiplication :: (Monoid r, Dioid r) => r -> r -> Bool
- absorbative_addition :: (Eq r, Dioid r) => r -> r -> Bool
- absorbative_addition' :: (Eq r, Dioid r) => r -> r -> Bool
- idempotent_addition :: (Eq r, Monoid r, Dioid r) => r -> Bool
- absorbative_multiplication :: (Eq r, Dioid r) => r -> r -> Bool
- absorbative_multiplication' :: (Eq r, Dioid r) => r -> r -> Bool
- annihilative_addition :: (Eq r, Monoid r, Dioid r) => r -> Bool
- annihilative_addition' :: (Eq r, Monoid r, Dioid r) => r -> Bool
- codistributive :: (Eq r, Dioid r) => r -> r -> r -> Bool
- kleene_pstable :: (Eq r, Prd r, Monoid r, Dioid r) => Natural -> r -> Bool
- kleene_paffine :: (Eq r, Monoid r, Dioid r) => Natural -> r -> r -> Bool
- kleene_stable :: (Eq r, Monoid r, Dioid r, Kleene r) => r -> Bool
- kleene_affine :: (Eq r, Monoid r, Dioid r, Kleene r) => r -> r -> Bool
- idempotent_star :: (Eq r, Monoid r, Dioid r, Kleene r) => r -> Bool
Properties of dioids (aka ordered semirings)
ordered_preordered :: Dioid r => r -> r -> Bool Source #
ordered_monotone_zero :: (Monoid r, Dioid r) => r -> Bool Source #
mempty
is a minimal or least element of r
.
This is a required property.
ordered_monotone_addition :: Dioid r => r -> r -> r -> Bool Source #
( forall a, b, c: b leq c Rightarrow b + a leq c + a
In an ordered semiring this follows directly from the definition of <~
.
Compare cancellative_addition
.
This is a required property.
ordered_positive_addition :: (Prd r, Monoid r) => r -> r -> Bool Source #
∀a,b:a+b=0⇒a=0∧b=0
This is a required property.
ordered_monotone_multiplication :: Dioid r => r -> r -> r -> Bool Source #
( forall a, b, c: b leq c Rightarrow b * a leq c * a
In an ordered semiring this follows directly from distributive
and the definition of <~
.
Compare cancellative_multiplication
.
This is a required property.
ordered_annihilative_sunit :: (Monoid r, Dioid r) => r -> Bool Source #
<~
is consistent with annihilativity.
This means that a dioid with an annihilative multiplicative sunit must satisfy:
(one
<~) ≡ (one
==)
ordered_idempotent_addition :: (Prd r, Monoid r) => r -> r -> Bool Source #
( forall a, b: a leq b Rightarrow a + b = b
Properties of absorbative dioids
absorbative_addition :: (Eq r, Dioid r) => r -> r -> Bool Source #
∀a,b∈R:a∗b+b=b
Right-additive absorbativity is a generalized form of idempotency:
absorbative_addition
sunit
a ~~ a <> a ~~ a
absorbative_addition' :: (Eq r, Dioid r) => r -> r -> Bool Source #
∀a,b∈R:b+b∗a=b
Left-additive absorbativity is a generalized form of idempotency:
absorbative_addition
sunit
a ~~ a <> a ~~ a
absorbative_multiplication :: (Eq r, Dioid r) => r -> r -> Bool Source #
∀a,b∈R:(a+b)∗b=b
Right-mulitplicative absorbativity is a generalized form of idempotency:
absorbative_multiplication
mempty
a ~~ a><
a ~~ a
absorbative_multiplication' :: (Eq r, Dioid r) => r -> r -> Bool Source #
∀a,b∈R:b∗(b+a)=b
Left-mulitplicative absorbativity is a generalized form of idempotency:
absorbative_multiplication'
mempty
a ~~ a><
a ~~ a
Properties of annihilative dioids
annihilative_addition' :: (Eq r, Monoid r, Dioid r) => r -> Bool Source #
codistributive :: (Eq r, Dioid r) => r -> r -> r -> Bool Source #
∀a,b,c∈R:c+(a∗b)≡(c+a)∗(c+b)
A right-codistributive semiring has a right-annihilative muliplicative sunit:
codistributive
sunit
amempty
~~sunit
~~sunit
<>
a
idempotent mulitiplication:
codistributive
mempty
mempty
a ~~ a ~~ a><
a
and idempotent addition:
codistributive
amempty
a ~~ a ~~ a<>
a
Furthermore if R is commutative then it is a right-distributive lattice.
Properties of kleene dioids
kleene_paffine :: (Eq r, Monoid r, Dioid r) => Natural -> r -> r -> Bool Source #
x=a∗x+b⇒x=(1+∑Pi=1ai)∗b
If a is p-stable for some p, then we have: