------------------------------------------------------------------------
-- The Agda standard library
--
-- Heterogeneous equality
------------------------------------------------------------------------

module Relation.Binary.HeterogeneousEquality where

open import Data.Product
open import Function
open import Function.Inverse using (Inverse)
open import Data.Unit.NonEta
open import Level
open import Relation.Nullary
open import Relation.Binary
open import Relation.Binary.Consequences
open import Relation.Binary.Indexed.Heterogeneous
  using (IndexedSetoid)
open import Relation.Binary.Indexed.Heterogeneous.Construct.At
  using (_atₛ_)
open import Relation.Binary.PropositionalEquality as P using (_≡_; refl)

import Relation.Binary.HeterogeneousEquality.Core as Core

------------------------------------------------------------------------
-- Heterogeneous equality

infix 4 _≇_

open Core public using (_≅_; refl)

-- Nonequality.

_≇_ :  {} {A : Set }  A  {B : Set }  B  Set 
x  y = ¬ x  y

------------------------------------------------------------------------
-- Conversion

open Core public using (≅-to-≡)

≡-to-≅ :  {a} {A : Set a} {x y : A}  x  y  x  y
≡-to-≅ refl = refl

≅-to-type-≡ :  {a} {A B : Set a} {x : A} {y : B} 
                x  y  A  B
≅-to-type-≡ refl = refl

≅-to-subst-≡ :  {a} {A B : Set a} {x : A} {y : B}  (p : x  y) 
                 P.subst  x  x) (≅-to-type-≡ p) x  y
≅-to-subst-≡ refl = refl

------------------------------------------------------------------------
-- Some properties

reflexive :  {a} {A : Set a}  _⇒_ {A = A} _≡_  x y  x  y)
reflexive refl = refl

sym :  {} {A B : Set } {x : A} {y : B}  x  y  y  x
sym refl = refl

trans :  {} {A B C : Set } {x : A} {y : B} {z : C} 
        x  y  y  z  x  z
trans refl eq = eq

subst :  {a} {A : Set a} {p}  Substitutive {A = A}  x y  x  y) p
subst P refl p = p

subst₂ :  {a b p} {A : Set a} {B : Set b} (P : A  B  Set p) 
          {x₁ x₂ y₁ y₂}  x₁  x₂  y₁  y₂  P x₁ y₁  P x₂ y₂
subst₂ P refl refl p = p

subst-removable :  {a p} {A : Set a}
                  (P : A  Set p) {x y} (eq : x  y) z 
                  subst P eq z  z
subst-removable P refl z = refl

≡-subst-removable :  {a p} {A : Set a}
                    (P : A  Set p) {x y} (eq : x  y) z 
                    P.subst P eq z  z
≡-subst-removable P refl z = refl

cong :  {a b} {A : Set a} {B : A  Set b} {x y}
       (f : (x : A)  B x)  x  y  f x  f y
cong f refl = refl

cong-app :  {a b} {A : Set a} {B : A  Set b} {f g : (x : A)  B x} 
           f  g  (x : A)  f x  g x
cong-app refl x = refl

cong₂ :  {a b c} {A : Set a} {B : A  Set b} {C :  x  B x  Set c}
          {x y u v}
        (f : (x : A) (y : B x)  C x y)  x  y  u  v  f x u  f y v
cong₂ f refl refl = refl

resp₂ :  {a } {A : Set a} ( : Rel A )   Respects₂  x y  x  y)
resp₂ _∼_ = subst⟶resp₂ _∼_ subst

icong :  {a b } {I : Set }
        (A : I  Set a) {B : {k : I}  A k  Set b}
        {i j : I} {x : A i} {y : A j} 
        i  j 
        (f : {k : I}  (z : A k)  B z) 
        x  y 
        f x  f y
icong _ refl _ refl = refl

icong₂ :  {a b c } {I : Set }
         (A : I  Set a)
         {B : {k : I}  A k  Set b}
         {C : {k : I}  (a : A k)  B a  Set c}
         {i j : I} {x : A i} {y : A j} {u : B x} {v : B y} 
         i  j 
         (f : {k : I}  (z : A k)  (w : B z)  C z w) 
         x  y  u  v 
         f x u  f y v
icong₂ _ refl _ refl refl = refl

icong-subst-removable :  {a b }
                        {I : Set }
                        (A : I  Set a) {B : {k : I}  A k  Set b}
                        {i j : I} (eq : i  j)
                        (f : {k : I}  (z : A k)  B z)
                        (x : A i) 
                        f (subst A eq x)  f x
icong-subst-removable _ refl _ _ = refl

icong-≡-subst-removable :  {a b }
                          {I : Set }
                          (A : I  Set a) {B : {k : I}  A k  Set b}
                          {i j : I} (eq : i  j)
                          (f : {k : I}  (z : A k)  B z)
                          (x : A i) 
                          f (P.subst A eq x)  f x
icong-≡-subst-removable _ refl _ _ = refl

------------------------------------------------------------------------
--Proof irrelevance

≅-irrelevance :  {} {A B : Set }  Irrelevant ((A  B  Set )  λ a  a ≅_)
≅-irrelevance refl refl = refl

module _ {} {A₁ A₂ A₃ A₄ : Set } {a₁ : A₁} {a₂ : A₂} {a₃ : A₃} {a₄ : A₄} where

 ≅-heterogeneous-irrelevance : (p : a₁  a₂) (q : a₃  a₄)  a₂  a₃  p  q
 ≅-heterogeneous-irrelevance refl refl refl = refl

 ≅-heterogeneous-irrelevanceˡ : (p : a₁  a₂) (q : a₃  a₄)  a₁  a₃  p  q
 ≅-heterogeneous-irrelevanceˡ refl refl refl = refl

 ≅-heterogeneous-irrelevanceʳ : (p : a₁  a₂) (q : a₃  a₄)  a₂  a₄  p  q
 ≅-heterogeneous-irrelevanceʳ refl refl refl = refl

------------------------------------------------------------------------
-- Structures

isEquivalence :  {a} {A : Set a} 
                IsEquivalence {A = A}  x y  x  y)
isEquivalence = record
  { refl  = refl
  ; sym   = sym
  ; trans = trans
  }

setoid :  {a}  Set a  Setoid _ _
setoid A = record
  { Carrier       = A
  ; _≈_           = λ x y  x  y
  ; isEquivalence = isEquivalence
  }

indexedSetoid :  {a b} {A : Set a}  (A  Set b)  IndexedSetoid A _ _
indexedSetoid B = record
  { Carrier       = B
  ; _≈_           = λ x y  x  y
  ; isEquivalence = record
    { refl  = refl
    ; sym   = sym
    ; trans = trans
    }
  }

≡↔≅ :  {a b} {A : Set a} (B : A  Set b) {x : A} 
      Inverse (P.setoid (B x)) ((indexedSetoid B) atₛ x)
≡↔≅ B = record
  { to         = record { _⟨$⟩_ = id; cong = ≡-to-≅ }
  ; from       = record { _⟨$⟩_ = id; cong = ≅-to-≡ }
  ; inverse-of = record
    { left-inverse-of  = λ _  refl
    ; right-inverse-of = λ _  refl
    }
  }

decSetoid :  {a} {A : Set a} 
            Decidable {A = A} {B = A}  x y  x  y) 
            DecSetoid _ _
decSetoid dec = record
  { _≈_              = λ x y  x  y
  ; isDecEquivalence = record
      { isEquivalence = isEquivalence
      ; _≟_           = dec
      }
  }

isPreorder :  {a} {A : Set a} 
             IsPreorder {A = A}  x y  x  y)  x y  x  y)
isPreorder = record
  { isEquivalence = isEquivalence
  ; reflexive     = id
  ; trans         = trans
  }

isPreorder-≡ :  {a} {A : Set a} 
               IsPreorder {A = A} _≡_  x y  x  y)
isPreorder-≡ = record
  { isEquivalence = P.isEquivalence
  ; reflexive     = reflexive
  ; trans         = trans
  }

preorder :  {a}  Set a  Preorder _ _ _
preorder A = record
  { Carrier    = A
  ; _≈_        = _≡_
  ; _∼_        = λ x y  x  y
  ; isPreorder = isPreorder-≡
  }

------------------------------------------------------------------------
-- Convenient syntax for equational reasoning

module ≅-Reasoning where

  -- The code in Relation.Binary.EqReasoning cannot handle
  -- heterogeneous equalities, hence the code duplication here.

  infix  4 _IsRelatedTo_
  infix  3 _∎
  infixr 2 _≅⟨_⟩_ _≡⟨_⟩_ _≡⟨⟩_
  infix  1 begin_

  data _IsRelatedTo_ {} {A : Set } (x : A) {B : Set } (y : B) :
                     Set  where
    relTo : (x≅y : x  y)  x IsRelatedTo y

  begin_ :  {} {A : Set } {x : A} {B} {y : B} 
           x IsRelatedTo y  x  y
  begin relTo x≅y = x≅y

  _≅⟨_⟩_ :  {} {A : Set } (x : A) {B} {y : B} {C} {z : C} 
           x  y  y IsRelatedTo z  x IsRelatedTo z
  _ ≅⟨ x≅y  relTo y≅z = relTo (trans x≅y y≅z)

  _≡⟨_⟩_ :  {} {A : Set } (x : A) {y C} {z : C} 
           x  y  y IsRelatedTo z  x IsRelatedTo z
  _ ≡⟨ x≡y  relTo y≅z = relTo (trans (reflexive x≡y) y≅z)

  _≡⟨⟩_ :  {} {A : Set } (x : A) {B} {y : B} 
          x IsRelatedTo y  x IsRelatedTo y
  _ ≡⟨⟩ x≅y = x≅y

  _∎ :  {a} {A : Set a} (x : A)  x IsRelatedTo x
  _∎ _ = relTo refl

------------------------------------------------------------------------
-- Functional extensionality

-- A form of functional extensionality for _≅_.

Extensionality : (a b : Level)  Set _
Extensionality a b =
  {A : Set a} {B₁ B₂ : A  Set b}
  {f₁ : (x : A)  B₁ x} {f₂ : (x : A)  B₂ x} 
  (∀ x  B₁ x  B₂ x)  (∀ x  f₁ x  f₂ x)  f₁  f₂

-- This form of extensionality follows from extensionality for _≡_.

≡-ext-to-≅-ext :  {ℓ₁ ℓ₂} 
  P.Extensionality ℓ₁ (suc ℓ₂)  Extensionality ℓ₁ ℓ₂
≡-ext-to-≅-ext           ext B₁≡B₂ f₁≅f₂ with ext B₁≡B₂
≡-ext-to-≅-ext {ℓ₁} {ℓ₂} ext B₁≡B₂ f₁≅f₂ | P.refl =
  ≡-to-≅ $ ext′ (≅-to-≡  f₁≅f₂)
  where
  ext′ : P.Extensionality ℓ₁ ℓ₂
  ext′ = P.extensionality-for-lower-levels ℓ₁ (suc ℓ₂) ext

------------------------------------------------------------------------
-- Inspect

-- Inspect can be used when you want to pattern match on the result r
-- of some expression e, and you also need to "remember" that r ≡ e.

record Reveal_·_is_ {a b} {A : Set a} {B : A  Set b}
                    (f : (x : A)  B x) (x : A) (y : B x) :
                    Set (a  b) where
  constructor [_]
  field eq : f x  y

inspect :  {a b} {A : Set a} {B : A  Set b}
          (f : (x : A)  B x) (x : A)  Reveal f · x is f x
inspect f x = [ refl ]

-- Example usage:

-- f x y with g x | inspect g x
-- f x y | c z | [ eq ] = ...


------------------------------------------------------------------------
-- DEPRECATED NAMES
------------------------------------------------------------------------
-- Please use the new names as continuing support for the old names is
-- not guaranteed.

-- Version 0.15

proof-irrelevance = ≅-irrelevance
{-# WARNING_ON_USAGE proof-irrelevance
"Warning: proof-irrelevance was deprecated in v0.15.
Please use ≅-irrelevance instead."
#-}