diff --git a/formalizations/guarded-cubical/Common/Common.agda b/formalizations/guarded-cubical/Common/Common.agda index 0c422dc4e96a66d285632e77a9d597753e731a7d..7a42434a0944dd2d19cce8a0b77b6d2876d73e8a 100644 --- a/formalizations/guarded-cubical/Common/Common.agda +++ b/formalizations/guarded-cubical/Common/Common.agda @@ -15,10 +15,14 @@ open import Cubical.Data.Empty open import Cubical.Data.Sigma open import Cubical.Data.Unit renaming (Unit to ⊤) +open import Cubical.Algebra.Monoid.Base +open import Cubical.Algebra.Monoid.FreeCommProduct +open import Cubical.Algebra.CommMonoid.Base + private variable - ℓ ℓ' : Level + ℓ ℓ' ℓ'' : Level ℓA ℓB ℓC ℓD : Level ℓR ℓS : Level @@ -77,3 +81,17 @@ isPropTwoCell isPropValuedS = isPropΠ3 (λ a b aRb -> isPropValuedS _ _) + + + +isSplitMono : {ℓA ℓB : Level} {A : Type ℓA} {B : Type ℓB} -> + (f : A -> B) -> Type (ℓ-max ℓA ℓB) +isSplitMono {A = A} {B = B} f = + Σ[ g ∈ (B -> A) ] (∀ a -> g (f a) ≡ a) + + +InjectiveMonoidHom : {ℓm ℓn : Level} -> + (M : Monoid ℓm) (N : Monoid ℓn) -> Type (ℓ-max ℓm ℓn) +InjectiveMonoidHom M N = + Σ[ f ∈ MonoidHom M N ] isSplitMono (fst f) +