modularising inductive families
play

Modularising inductive families Josh Ko & Jeremy Gibbons - PowerPoint PPT Presentation

Modularising inductive families Josh Ko & Jeremy Gibbons Department of Computer Science University of Oxford Workshop on Generic Programming 18 September 2011, Tokyo, Japan Internalism Externalism Internalism Constraints internalised


  1. Modularising inductive families Josh Ko & Jeremy Gibbons Department of Computer Science University of Oxford Workshop on Generic Programming 18 September 2011, Tokyo, Japan

  2. Internalism Externalism

  3. Internalism Constraints internalised in datatypes data Vec (A : Set) : Nat � Set where [] : Vec A 0 _ ∷ _ : (x : A) � {n : Nat} (xs : Vec A n) � Vec A (suc n) x ∷ y ∷ z ∷ [] : Vec A 3

  4. Internalist clarity Constraints cleanly expressed and managed zipWith3 : (f : A � B � C � D) � Vec A n � Vec B n � Vec C n � Vec D n zipWith3 f [] [] [] = [] zipWith3 f (x ∷ xs) (y ∷ ys) (z ∷ zs) = f x y z ∷ zipWith3 f xs ys zs

  5. Internalist libraries dreadful reusability/composability insert : Nat � List Nat � List Nat vinsert : Nat � Vec Nat n � Vec Nat (suc n) sinsert : (x : Nat) � SList b � SList (b ⊓ x) data SList : Nat � Set where nil : ∀ {b} � SList b cons : (x : Nat) � ∀ {b} � b ≤ x � (xs : SList x) � SList b

  6. Externalism Predicates imposed on existing datatypes (xs : List Nat) × Length n xs data Length : Nat � List A � Set where nil : Length 0 [] cons : ∀ {x n xs} � Length n xs � Length (suc n) (x ∷ xs)

  7. Externalist composability Easy to impose multiple constraints (xs : List Nat) × Length n xs × Sorted b xs data Sorted : Nat � List Nat � Set where nil : ∀ {b} � Sorted b [] cons : ∀ {x b} � b ≤ x � ∀ {xs} � Sorted x xs � Sorted b (x ∷ xs)

  8. Externalist composability Ideal for structuring libraries insert : Nat � List Nat � List Nat insert-length : Length n xs � Length (suc n) (insert x xs) insert-sorted : Sorted b xs � Sorted (b ⊓ x) (insert x xs)

  9. Is it possible to import externalist composability into internalist libraries ? Or: Can we get sorted vectors and insert on sorted vectors for free?

  10. Constraints Multiple constraints Internalism ?? ?? Externalism Predicates Pointwise conjunction of predicates

  11. Constraints Multiple constraints Internalism Ornaments! ?? Conor McBride Externalism Predicates Pointwise conjunction of predicates

  12. Ornaments Information added to a datatype to get a fancier one List (A : Set) : Set where data [] : List A _ ∷ _ : (x : A) � (xs : A ) � List List A

  13. Ornaments Information added to a datatype to get a fancier one List (A : Set) : Nat � Set where data [] : List A 0 _ ∷ _ : (x : A) � {n : Nat} (xs : A n ) � List List A (suc n)

  14. Ornaments Information added to a datatype to get a fancier one Vec (A : Set) : Nat � Set where data [] : Vec A 0 _ ∷ _ : (x : A) � {n : Nat} (xs : A n ) � Vec Vec A (suc n)

  15. Constraints Multiple constraints Internalism Ornaments ?? induce Externalism Predicates Pointwise conjunction of predicates

  16. Ornaments induce predicates Length : induces Nat � List A � Set predicate on basic type VecO A Vec A List A fancier type basic type

  17. Ornaments induce predicates and corresponding isomorphisms internalist externalist Length n ≅ (xs : ) × n xs Vec A List A fancier type basic type induced predicate SList b ≅ (xs : List Nat) × Sorted b xs

  18. Function upgrade with the help of the isomorphisms Vec Nat n ≅ (xs : List Nat) × Length n xs vinsert : Nat � Vec Nat n � Vec Nat (suc n) ≅ ≅ ↦ xs : List Nat insert x xs : List Nat ↦ l : Length n xs insert-length l : Length (suc n) (insert x xs) insert : Nat � List Nat � List Nat insert-length : Length n xs � Length (suc n) (insert x xs)

  19. Function upgrade with the help of the isomorphisms Vec Nat n ≅ (xs : List Nat) × Length n xs vinsert : Nat � Vec Nat n � Vec Nat (suc n) SList b ≅ (xs : List Nat) × Sorted b xs sinsert : (x : Nat) � SList b � SList (b ⊓ x) insert : Nat � List Nat � List Nat insert-length : Length n xs � Length (suc n) (insert x xs) insert-sorted : Sorted b xs � Sorted (b ⊓ x) (insert x xs)

  20. Sorted vectors data SList : � Set where Nat nil : � SList ∀ {b} b cons : (x : Nat) � � � ∀ {b} b ≤ x SList � SList x b data Vec Nat : � Set where Nat [] : Vec Nat 0 _ ∷ _ : Nat � � Vec Nat � Vec Nat ∀ {n} n (suc n)

  21. Sorted vectors = sorted lists + vectors! Nat Nat data SVec : � � Set where ∀ {b} b 0 nil : � SVec ∀ {b} b ≤ x cons : (x : Nat) � � � ∀ {n} x n b (suc n) � SVec � SVec

  22. Constraints Multiple constraints Internalism Ornaments Ornament fusion induce corresponds to Externalism Predicates Pointwise conjunction of predicates

  23. Ornament fusion corresponds to conjunction of induced predicates List Nat SList b Vec Nat n SVec b n Sorted b Length n SLen b n SLen b n xs ≅ Sorted b xs × Length n xs

  24. Ornament fusion corresponds to conjunction of induced predicates SVec b n ≅ (xs : List Nat) × SLen b n xs ≅ (xs : List Nat) × Sorted b xs × Length n xs

  25. Function upgrade with the help of the isomorphisms ≅ (xs : List Nat) × Sorted b xs SVec b n × Length n xs svinsert : (x : Nat) � SVec b n � SVec (b ⊓ x) (suc n) ≅ ≅ ↦ xs : List Nat insert x xs : List Nat ↦ s : Sorted b xs insert-sorted s : Sorted (b ⊓ x) (insert x xs) ↦ l : Length n xs insert-length l : Length (suc n) (insert x xs)

  26. Modular library structure data List ..., insert, ... orn Vec inducing Length ..., insert-length, ... orn SList inducing Sorted ..., insert-sorted, ...

  27. Constraints Multiple constraints Internalism Ornaments Ornament fusion induce corresponds to Externalism Predicates Pointwise conjunction of predicates

  28. Thanks!

  29. Descriptions A “universe” datatype containing codes for datatypes Vec : Set � Desc Nat Vec A = σ Bool (false ↦ say zero true ↦ σ A λ x � σ Nat λ n � ask n * say (suc n)) μ : Desc I � (I � Set) -- μ (Vec A) : Nat � Set

  30. Ornaments A richer universe of relative descriptions VecO : Set � Orn Nat ... VecO A = σ Bool (false ↦ say (ok zero) true ↦ σ A λ x � Δ Nat λ n � ask (ok n) * say (ok (suc n))) ⌊ _ ⌋ : Orn J ... � Desc J -- ⌊ VecO A ⌋ ≈ Vec A

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend