blob: 83f6845c1dc5f0ae859ce7aa312b6536797d28ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
module GetTypes where
open import Level using () renaming (zero to ℓ₀)
open import Data.Nat using (ℕ)
open import Data.List using (List ; map)
open import Data.Vec using (Vec) renaming (map to mapV)
open import Function using (_∘_ ; id)
open import Relation.Binary.PropositionalEquality using (_≗_)
open import Structures using (Shaped ; module Shaped)
open import Instances using (VecShaped)
module ListList where
record Get : Set₁ where
field
get : {A : Set} → List A → List A
free-theorem : {α β : Set} → (f : α → β) → get ∘ map f ≗ map f ∘ get
module VecVec where
record Get : Set₁ where
field
getlen : ℕ → ℕ
get : {A : Set} {n : ℕ} → Vec A n → Vec A (getlen n)
free-theorem : {α β : Set} (f : α → β) {n : ℕ} → get {_} {n} ∘ mapV f ≗ mapV f ∘ get
module PartialVecVec where
record Get : Set₁ where
field
I : Set
gl₁ : I → ℕ
gl₂ : I → ℕ
get : {A : Set} {i : I} → Vec A (gl₁ i) → Vec A (gl₂ i)
free-theorem : {α β : Set} → (f : α → β) → {i : I} → get {_} {i} ∘ mapV f ≗ mapV f ∘ get
VecVec-to-PartialVecVec : VecVec.Get → PartialVecVec.Get
VecVec-to-PartialVecVec G = record
{ I = ℕ
; gl₁ = id
; gl₂ = getlen
; get = get
; free-theorem = free-theorem
} where open VecVec.Get G
module PartialShapeShape where
record Get : Set₁ where
field
SourceShape : Set
SourceContainer : Set → SourceShape → Set
SourceShapeT : Shaped SourceShape SourceContainer
ViewShape : Set
ViewContainer : Set → ViewShape → Set
ViewShapeT : Shaped ViewShape ViewContainer
I : Set
gl₁ : I → SourceShape
gl₂ : I → ViewShape
open Shaped SourceShapeT using () renaming (fmap to fmapS)
open Shaped ViewShapeT using () renaming (fmap to fmapV)
field
get : {A : Set} {i : I} → SourceContainer A (gl₁ i) → ViewContainer A (gl₂ i)
free-theorem : {α β : Set} → (f : α → β) → {i : I} → get {_} {i} ∘ fmapS f ≗ fmapV f ∘ get
open Shaped SourceShapeT public using () renaming (fmap to fmapS)
open Shaped ViewShapeT public using () renaming (fmap to fmapV)
PartialVecVec-to-PartialShapeShape : PartialVecVec.Get → PartialShapeShape.Get
PartialVecVec-to-PartialShapeShape G = record
{ SourceShapeT = VecShaped
; ViewShapeT = VecShaped
; I = I
; gl₁ = gl₁
; gl₂ = gl₂
; get = get
; free-theorem = free-theorem
} where open PartialVecVec.Get G
|