packages feed

Agda-2.3.2.2: examples/Termination/Common/Coinduction.agda

{-# OPTIONS --universe-polymorphism #-}

module Common.Coinduction where

open import Common.Level

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     ♭  #-}