Created
February 10, 2017 00:37
-
-
Save larrytheliquid/383b6f2aa80dd9d1aead670b7e4867ec to your computer and use it in GitHub Desktop.
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
open import Data.Nat | |
open import Data.Fin renaming ( zero to here ; suc to there ) | |
open import Data.Product | |
open import Relation.Binary.PropositionalEquality | |
module _ where | |
mutual | |
data Vec₁ (A : Set) : ℕ → Set where | |
nil₁ : Vec₁ A zero | |
cons₁ : {n : ℕ} → A → (xs : Vec₁ A n) → toℕ (Vec₂ xs) ≡ n → Vec₁ A (suc n) | |
Vec₂ : {A : Set}{n : ℕ} → Vec₁ A n → Fin (suc n) | |
Vec₂ nil₁ = here | |
Vec₂ (cons₁ x xs q) = there (Vec₂ xs) | |
Vec : Set → ℕ → Set | |
Vec A n = Σ (Vec₁ A n) (λ xs → toℕ (Vec₂ xs) ≡ n) | |
nil : {A : Set} → Vec A zero | |
nil = nil₁ , refl | |
cons : {A : Set} {n : ℕ} → A → Vec A n → Vec A (suc n) | |
cons x (xs , q) = cons₁ x xs q , cong suc q | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment