-
Notifications
You must be signed in to change notification settings - Fork 237
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactored from #2350 * enriched the `module` contents in response to review comments
- Loading branch information
1 parent
4da2da6
commit 59d7b2e
Showing
2 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
src/Data/List/Relation/Binary/Equality/Setoid/Properties.agda
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
------------------------------------------------------------------------ | ||
-- The Agda standard library | ||
-- | ||
-- Properties of List modulo ≋ | ||
------------------------------------------------------------------------ | ||
|
||
{-# OPTIONS --cubical-compatible --safe #-} | ||
|
||
open import Relation.Binary.Bundles using (Setoid) | ||
|
||
module Data.List.Relation.Binary.Equality.Setoid.Properties | ||
{c ℓ} (S : Setoid c ℓ) | ||
where | ||
|
||
open import Algebra.Bundles using (Magma; Semigroup; Monoid) | ||
import Algebra.Structures as Structures | ||
open import Data.List.Base using (List; []; _++_) | ||
import Data.List.Properties as List | ||
import Data.List.Relation.Binary.Equality.Setoid as ≋ | ||
open import Data.Product.Base using (_,_) | ||
open import Function.Base using (_∘_) | ||
open import Level using (_⊔_) | ||
|
||
open ≋ S using (_≋_; ≋-refl; ≋-reflexive; ≋-isEquivalence; ++⁺) | ||
open Structures _≋_ using (IsMagma; IsSemigroup; IsMonoid) | ||
|
||
------------------------------------------------------------------------ | ||
-- The []-++-Monoid | ||
|
||
-- Structures | ||
|
||
isMagma : IsMagma _++_ | ||
isMagma = record | ||
{ isEquivalence = ≋-isEquivalence | ||
; ∙-cong = ++⁺ | ||
} | ||
|
||
isSemigroup : IsSemigroup _++_ | ||
isSemigroup = record | ||
{ isMagma = isMagma | ||
; assoc = λ xs ys zs → ≋-reflexive (List.++-assoc xs ys zs) | ||
} | ||
|
||
isMonoid : IsMonoid _++_ [] | ||
isMonoid = record | ||
{ isSemigroup = isSemigroup | ||
; identity = (λ _ → ≋-refl) , ≋-reflexive ∘ List.++-identityʳ | ||
} | ||
|
||
-- Bundles | ||
|
||
magma : Magma c (c ⊔ ℓ) | ||
magma = record { isMagma = isMagma } | ||
|
||
semigroup : Semigroup c (c ⊔ ℓ) | ||
semigroup = record { isSemigroup = isSemigroup } | ||
|
||
monoid : Monoid c (c ⊔ ℓ) | ||
monoid = record { isMonoid = isMonoid } |