------------------------------------------------------------------------
-- A small prelude
------------------------------------------------------------------------

{-# OPTIONS --without-K #-}

-- Note that parts of Agda's standard library make use of the K rule.

module Prelude where

------------------------------------------------------------------------
-- Support for universe polymorphism

-- Universe levels.

infixl 6 _⊔_

postulate
  Level : Set
  lzero : Level
  lsuc  : Level  Level
  _⊔_   : Level  Level  Level

{-# BUILTIN LEVEL     Level #-}
{-# BUILTIN LEVELZERO lzero #-}
{-# BUILTIN LEVELSUC  lsuc  #-}
{-# BUILTIN LEVELMAX  _⊔_   #-}

-- Lifting.

record  {a}  (A : Set a) : Set (a  ) where
  constructor lift
  field lower : A

open  public

------------------------------------------------------------------------
-- Some finite types

-- The empty type.

data  {} : Set  where

⊥-elim :  {w } {Whatever : Set w}   {= }  Whatever
⊥-elim ()

-- A version of the empty type which is not universe-polymorphic.

⊥₀ : Set
⊥₀ = 

-- Negation.

infix 3 ¬_

¬_ :  {}  Set   Set 
¬ P = P   {= lzero}

-- The unit type.

record  : Set where
  constructor tt

-- Booleans.

data Bool : Set where
  true false : Bool

-- Conditional.

if_then_else_ :  {a} {A : Set a}  Bool  A  A  A
if true  then t else f = t
if false then t else f = f

-- Not.

not : Bool  Bool
not b = if b then false else true

-- And.

infixr 6 _∧_

_∧_ : Bool  Bool  Bool
b₁  b₂ = if b₁ then b₂ else false

-- Or.

infixr 5 _∨_

_∨_ : Bool  Bool  Bool
b₁  b₂ = if b₁ then true else b₂

-- The truth predicate T is only inhabited when its argument is true.

T : Bool  Set
T b = if b then  else 

------------------------------------------------------------------------
-- Natural numbers

data  : Set where
  zero : 
  suc  : (n : )  

-- Support for natural number literals.

{-# BUILTIN NATURAL     #-}
{-# BUILTIN ZERO    zero #-}
{-# BUILTIN SUC     suc  #-}

-- Dependent eliminator.

ℕ-rec :  {p} {P :   Set p} 
        P 0  (∀ n  P n  P (suc n))   n  P n
ℕ-rec z s zero    = z
ℕ-rec z s (suc n) = s n (ℕ-rec z s n)

-- Addition.

infixl 6 _+_

_+_ :     
zero  + n = n
suc m + n = suc (m + n)

-- The usual ordering of the natural numbers.

infix 4 _≤_

data _≤_ (m : ) :   Set where
  ≤-refl :                       m  m
  ≤-step :  {n} (m≤n : m  n)  m  suc n

abstract

  -- Some lemmas.

  zero≤ :  n  zero  n
  zero≤ zero    = ≤-refl
  zero≤ (suc n) = ≤-step (zero≤ n)

  suc≤suc :  {m n}  m  n  suc m  suc n
  suc≤suc ≤-refl       = ≤-refl
  suc≤suc (≤-step m≤n) = ≤-step (suc≤suc m≤n)

  m≤m+n :  m n  m  m + n
  m≤m+n zero    n = zero≤ n
  m≤m+n (suc m) n = suc≤suc (m≤m+n m n)

------------------------------------------------------------------------
-- Simple combinators working solely on and with functions

infixr 9 _∘_
infixr 0 _$_

-- The identity function.

id :  {a} {A : Set a}  A  A
id x = x

-- Composition.

_∘_ :  {a b c}
        {A : Set a} {B : A  Set b} {C : {x : A}  B x  Set c} 
      (∀ {x} (y : B x)  C y)  (g : (x : A)  B x) 
      ((x : A)  C (g x))
f  g = λ x  f (g x)

-- Application.

_$_ :  {a b} {A : Set a} {B : A  Set b} 
      ((x : A)  B x)  ((x : A)  B x)
f $ x = f x

-- Constant functions.

const :  {a b} {A : Set a} {B : Set b}  A  (B  A)
const x = λ _  x

-- Flips the first two arguments.

flip :  {a b c} {A : Set a} {B : Set b} {C : A  B  Set c} 
       ((x : A) (y : B)  C x y)  ((y : B) (x : A)  C x y)
flip f = λ x y  f y x

------------------------------------------------------------------------
-- Σ-types

infixr 4 _,_
infixr 2 _×_

record Σ {a b} (A : Set a) (B : A  Set b) : Set (a  b) where
  constructor _,_
  field
    proj₁ : A
    proj₂ : B proj₁

open Σ public

-- A variant where the first argument is implicit.

 :  {a b} {A : Set a}  (A  Set b)  Set (a  b)
 = Σ _

-- Binary products.

_×_ :  {a b} (A : Set a) (B : Set b)  Set (a  b)
A × B = Σ A (const B)

-- A map function.

Σ-map :  {a b p q}
          {A : Set a} {B : Set b} {P : A  Set p} {Q : B  Set q} 
        (f : A  B)  (∀ {x}  P x  Q (f x)) 
        Σ A P  Σ B Q
Σ-map f g = λ p  (f (proj₁ p) , g (proj₂ p))

-- Curry and uncurry.

curry :  {a b c} {A : Set a} {B : A  Set b} {C : Σ A B  Set c} 
        ((p : Σ A B)  C p) 
        ((x : A) (y : B x)  C (x , y))
curry f x y = f (x , y)

uncurry :  {a b c} {A : Set a} {B : A  Set b} {C : Σ A B  Set c} 
          ((x : A) (y : B x)  C (x , y)) 
          ((p : Σ A B)  C p)
uncurry f (x , y) = f x y

------------------------------------------------------------------------
-- W-types

data W {a b} (A : Set a) (B : A  Set b) : Set (a  b) where
  sup : (x : A) (f : B x  W A B)  W A B

-- Projections.

head :  {a b} {A : Set a} {B : A  Set b} 
       W A B  A
head (sup x f) = x

tail :  {a b} {A : Set a} {B : A  Set b} 
       (x : W A B)  B (head x)  W A B
tail (sup x f) = f

-- If B is always inhabited, then W A B is empty.

abstract

  inhabited⇒W-empty :  {a b} {A : Set a} {B : A  Set b} 
                      (∀ x  B x)  ¬ W A B
  inhabited⇒W-empty b (sup x f) = inhabited⇒W-empty b (f (b x))

------------------------------------------------------------------------
-- Support for coinduction

infix 1000 ♯_

postulate
    :  {a} (A : Set a)  Set a
  ♯_ :  {a} {A : Set a}  A   A
    :  {a} {A : Set a}   A  A

{-# BUILTIN INFINITY   #-}
{-# BUILTIN SHARP    ♯_ #-}
{-# BUILTIN FLAT       #-}

------------------------------------------------------------------------
-- M-types

data M {a b} (A : Set a) (B : A  Set b) : Set (a  b) where
  dns : (x : A) (f : B x   (M A B))  M A B

-- Projections.

pɐǝɥ :  {a b} {A : Set a} {B : A  Set b} 
       M A B  A
pɐǝɥ (dns x f) = x

lıɐʇ :  {a b} {A : Set a} {B : A  Set b} 
      (x : M A B)  B (pɐǝɥ x)  M A B
lıɐʇ (dns x f) y =  (f y)

------------------------------------------------------------------------
-- Binary sums

infixr 1 _⊎_

data _⊎_ {a b} (A : Set a) (B : Set b) : Set (a  b) where
  inj₁ : (x : A)  A  B
  inj₂ : (y : B)  A  B

-- Eliminator for binary sums.

[_,_] :  {a b c} {A : Set a} {B : Set b} {C : A  B  Set c} 
        ((x : A)  C (inj₁ x))  ((x : B)  C (inj₂ x)) 
        ((x : A  B)  C x)
[ f , g ] (inj₁ x) = f x
[ f , g ] (inj₂ y) = g y

-- A map function.

⊎-map :  {a₁ a₂ b₁ b₂}
          {A₁ : Set a₁} {A₂ : Set a₂} {B₁ : Set b₁} {B₂ : Set b₂} 
        (A₁  A₂)  (B₁  B₂)  A₁  B₁  A₂  B₂
⊎-map f g = [ inj₁  f , inj₂  g ]

-- A special case of binary sums: decided predicates.

Dec :  {p}  Set p  Set p
Dec P = P  ¬ P

-- Decidable relations.

Decidable :  {a b } {A : Set a} {B : Set b} 
            (A  B  Set )  Set (a  b  )
Decidable _∼_ =  x y  Dec (x  y)

------------------------------------------------------------------------
-- Lists

infixr 5 _∷_

data List {a} (A : Set a) : Set a where
  []  : List A
  _∷_ : (x : A) (xs : List A)  List A

-- Right fold.

foldr :  {a b} {A : Set a} {B : Set b} 
        (A  B  B)  B  List A  B
foldr _⊕_ ε []       = ε
foldr _⊕_ ε (x  xs) = x  foldr _⊕_ ε xs

-- The length of a list.

length :  {a} {A : Set a}  List A  
length = foldr (const suc) 0

-- Appends two lists.

infixr 5 _++_

_++_ :  {a} {A : Set a}  List A  List A  List A
xs ++ ys = foldr _∷_ ys xs

-- Maps a function over a list.

map :  {a b} {A : Set a} {B : Set b}  (A  B)  List A  List B
map f = foldr  x ys  f x  ys) []

-- Concatenates a list of lists.

concat :  {a} {A : Set a}  List (List A)  List A
concat = foldr _++_ []

-- The list monad's bind operation.

infixl 5 _>>=_

_>>=_ :  {a b} {A : Set a} {B : Set b} 
        List A  (A  List B)  List B
xs >>= f = concat (map f xs)

-- A filter function.

filter :  {a} {A : Set a}  (A  Bool)  List A  List A
filter p = foldr  x xs  if p x then x  xs else xs) []

------------------------------------------------------------------------
-- Finite sets

Fin :   Set
Fin zero    = 
Fin (suc n) =   Fin n

-- A lookup function.

lookup :  {a} {A : Set a} (xs : List A)  Fin (length xs)  A
lookup []       ()
lookup (x  xs) (inj₁ tt) = x
lookup (x  xs) (inj₂ i)  = lookup xs i