blob: 0db3f310d9805e20e59b0c59024d409f7998a43a (
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
79
80
81
82
83
84
85
86
|
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 (_∘_)
open import Function.Equality using (_⟶_ ; _⟨$⟩_)
open import Function.Injection using (module Injection) renaming (Injection to _↪_ ; id to id↪)
open import Relation.Binary.PropositionalEquality using (_≗_) renaming (setoid to EqSetoid)
open import Relation.Binary using (Setoid)
open Injection using (to)
open import Generic using (≡-to-Π)
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 : Setoid ℓ₀ ℓ₀
gl₁ : I ↪ EqSetoid ℕ
gl₂ : I ⟶ EqSetoid ℕ
|I| = Setoid.Carrier I
|gl₁| = _⟨$⟩_ (to gl₁)
|gl₂| = _⟨$⟩_ gl₂
field
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 = EqSetoid ℕ
; gl₁ = id↪
; gl₂ = ≡-to-Π getlen
; get = get
; free-theorem = free-theorem
} where open VecVec.Get G
module PartialShapeVec where
record Get : Set₁ where
field
Shape : Set
Container : Set → Shape → Set
ShapeT : Shaped Shape Container
I : Setoid ℓ₀ ℓ₀
gl₁ : I ↪ EqSetoid Shape
gl₂ : I ⟶ EqSetoid ℕ
|I| = Setoid.Carrier I
|gl₁| = _⟨$⟩_ (to gl₁)
|gl₂| = _⟨$⟩_ gl₂
open Shaped ShapeT using (fmap)
field
get : {A : Set} {i : |I|} → Container A (|gl₁| i) → Vec A (|gl₂| i)
free-theorem : {α β : Set} → (f : α → β) → {i : |I|} → get {_} {i} ∘ fmap f ≗ mapV f ∘ get
open Shaped ShapeT public
PartialVecVec-to-PartialShapeVec : PartialVecVec.Get → PartialShapeVec.Get
PartialVecVec-to-PartialShapeVec G = record
{ ShapeT = VecShaped
; I = I
; gl₁ = gl₁
; gl₂ = gl₂
; get = get
; free-theorem = free-theorem
} where open PartialVecVec.Get G
|