Mercurial > hg > Members > Moririn
annotate stack.agda @ 544:4f692df9b3db
add reference
author | ryokka |
---|---|
date | Thu, 11 Jan 2018 18:54:56 +0900 |
parents | fffeaf0b0024 |
children | 988c12d7f887 |
rev | line source |
---|---|
499 | 1 open import Level renaming (suc to succ ; zero to Zero ) |
496 | 2 module stack where |
154 | 3 |
161 | 4 open import Relation.Binary.PropositionalEquality |
477 | 5 open import Relation.Binary.Core |
484 | 6 open import Data.Nat |
478 | 7 |
484 | 8 ex : 1 + 2 ≡ 3 |
9 ex = refl | |
179 | 10 |
501 | 11 data Bool {n : Level } : Set n where |
161 | 12 True : Bool |
13 False : Bool | |
164 | 14 |
501 | 15 record _∧_ {n : Level } (a : Set n) (b : Set n): Set n where |
485 | 16 field |
17 pi1 : a | |
18 pi2 : b | |
477 | 19 |
496 | 20 data Maybe {n : Level } (a : Set n) : Set n where |
161 | 21 Nothing : Maybe a |
22 Just : a -> Maybe a | |
23 | |
515 | 24 record StackMethods {n m : Level } (a : Set n ) {t : Set m }(stackImpl : Set n ) : Set (m Level.⊔ n) where |
161 | 25 field |
26 push : stackImpl -> a -> (stackImpl -> t) -> t | |
27 pop : stackImpl -> (stackImpl -> Maybe a -> t) -> t | |
484 | 28 pop2 : stackImpl -> (stackImpl -> Maybe a -> Maybe a -> t) -> t |
483
9098ec0a9e6b
add getSingleLinkedStack,get2SingleLinkedStack. but get2SingleLinkedStack not working now
ryokka
parents:
478
diff
changeset
|
29 get : stackImpl -> (stackImpl -> Maybe a -> t) -> t |
484 | 30 get2 : stackImpl -> (stackImpl -> Maybe a -> Maybe a -> t) -> t |
531 | 31 clear : stackImpl -> (stackImpl -> t) -> t |
503
413ce51da50b
separate methods in stack.agda
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
502
diff
changeset
|
32 open StackMethods |
427 | 33 |
515 | 34 record Stack {n m : Level } (a : Set n ) {t : Set m } (si : Set n ) : Set (m Level.⊔ n) where |
503
413ce51da50b
separate methods in stack.agda
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
502
diff
changeset
|
35 field |
413ce51da50b
separate methods in stack.agda
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
502
diff
changeset
|
36 stack : si |
515 | 37 stackMethods : StackMethods {n} {m} a {t} si |
38 pushStack : a -> (Stack a si -> t) -> t | |
503
413ce51da50b
separate methods in stack.agda
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
502
diff
changeset
|
39 pushStack d next = push (stackMethods ) (stack ) d (\s1 -> next (record {stack = s1 ; stackMethods = stackMethods } )) |
515 | 40 popStack : (Stack a si -> Maybe a -> t) -> t |
503
413ce51da50b
separate methods in stack.agda
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
502
diff
changeset
|
41 popStack next = pop (stackMethods ) (stack ) (\s1 d1 -> next (record {stack = s1 ; stackMethods = stackMethods }) d1 ) |
515 | 42 pop2Stack : (Stack a si -> Maybe a -> Maybe a -> t) -> t |
503
413ce51da50b
separate methods in stack.agda
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
502
diff
changeset
|
43 pop2Stack next = pop2 (stackMethods ) (stack ) (\s1 d1 d2 -> next (record {stack = s1 ; stackMethods = stackMethods }) d1 d2) |
515 | 44 getStack : (Stack a si -> Maybe a -> t) -> t |
503
413ce51da50b
separate methods in stack.agda
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
502
diff
changeset
|
45 getStack next = get (stackMethods ) (stack ) (\s1 d1 -> next (record {stack = s1 ; stackMethods = stackMethods }) d1 ) |
515 | 46 get2Stack : (Stack a si -> Maybe a -> Maybe a -> t) -> t |
503
413ce51da50b
separate methods in stack.agda
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
502
diff
changeset
|
47 get2Stack next = get2 (stackMethods ) (stack ) (\s1 d1 d2 -> next (record {stack = s1 ; stackMethods = stackMethods }) d1 d2) |
531 | 48 clearStack : (Stack a si -> t) -> t |
49 clearStack next = clear (stackMethods ) (stack ) (\s1 -> next (record {stack = s1 ; stackMethods = stackMethods } )) | |
484 | 50 |
503
413ce51da50b
separate methods in stack.agda
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
502
diff
changeset
|
51 open Stack |
427 | 52 |
544 | 53 {-- |
496 | 54 data Element {n : Level } (a : Set n) : Set n where |
161 | 55 cons : a -> Maybe (Element a) -> Element a |
56 | |
544 | 57 |
496 | 58 datum : {n : Level } {a : Set n} -> Element a -> a |
161 | 59 datum (cons a _) = a |
60 | |
496 | 61 next : {n : Level } {a : Set n} -> Element a -> Maybe (Element a) |
161 | 62 next (cons _ n) = n |
544 | 63 --} |
161 | 64 |
65 | |
164 | 66 -- cannot define recrusive record definition. so use linked list with maybe. |
544 | 67 record Element {l : Level} (a : Set l) : Set l where |
68 inductive | |
69 constructor cons | |
161 | 70 field |
164 | 71 datum : a -- `data` is reserved by Agda. |
161 | 72 next : Maybe (Element a) |
155 | 73 |
544 | 74 open Element |
155 | 75 |
164 | 76 |
496 | 77 record SingleLinkedStack {n : Level } (a : Set n) : Set n where |
161 | 78 field |
79 top : Maybe (Element a) | |
80 open SingleLinkedStack | |
155 | 81 |
499 | 82 pushSingleLinkedStack : {n m : Level } {t : Set m } {Data : Set n} -> SingleLinkedStack Data -> Data -> (Code : SingleLinkedStack Data -> t) -> t |
161 | 83 pushSingleLinkedStack stack datum next = next stack1 |
84 where | |
85 element = cons datum (top stack) | |
164 | 86 stack1 = record {top = Just element} |
161 | 87 |
155 | 88 |
499 | 89 popSingleLinkedStack : {n m : Level } {t : Set m } {a : Set n} -> SingleLinkedStack a -> (Code : SingleLinkedStack a -> (Maybe a) -> t) -> t |
161 | 90 popSingleLinkedStack stack cs with (top stack) |
91 ... | Nothing = cs stack Nothing | |
92 ... | Just d = cs stack1 (Just data1) | |
154 | 93 where |
161 | 94 data1 = datum d |
95 stack1 = record { top = (next d) } | |
154 | 96 |
499 | 97 pop2SingleLinkedStack : {n m : Level } {t : Set m } {a : Set n} -> SingleLinkedStack a -> (Code : SingleLinkedStack a -> (Maybe a) -> (Maybe a) -> t) -> t |
98 pop2SingleLinkedStack {n} {m} {t} {a} stack cs with (top stack) | |
484 | 99 ... | Nothing = cs stack Nothing Nothing |
499 | 100 ... | Just d = pop2SingleLinkedStack' {n} {m} stack cs |
484 | 101 where |
499 | 102 pop2SingleLinkedStack' : {n m : Level } {t : Set m } -> SingleLinkedStack a -> (Code : SingleLinkedStack a -> (Maybe a) -> (Maybe a) -> t) -> t |
484 | 103 pop2SingleLinkedStack' stack cs with (next d) |
104 ... | Nothing = cs stack Nothing Nothing | |
511 | 105 ... | Just d1 = cs (record {top = (next d1)}) (Just (datum d)) (Just (datum d1)) |
484 | 106 |
107 | |
499 | 108 getSingleLinkedStack : {n m : Level } {t : Set m } {a : Set n} -> SingleLinkedStack a -> (Code : SingleLinkedStack a -> (Maybe a) -> t) -> t |
483
9098ec0a9e6b
add getSingleLinkedStack,get2SingleLinkedStack. but get2SingleLinkedStack not working now
ryokka
parents:
478
diff
changeset
|
109 getSingleLinkedStack stack cs with (top stack) |
9098ec0a9e6b
add getSingleLinkedStack,get2SingleLinkedStack. but get2SingleLinkedStack not working now
ryokka
parents:
478
diff
changeset
|
110 ... | Nothing = cs stack Nothing |
9098ec0a9e6b
add getSingleLinkedStack,get2SingleLinkedStack. but get2SingleLinkedStack not working now
ryokka
parents:
478
diff
changeset
|
111 ... | Just d = cs stack (Just data1) |
9098ec0a9e6b
add getSingleLinkedStack,get2SingleLinkedStack. but get2SingleLinkedStack not working now
ryokka
parents:
478
diff
changeset
|
112 where |
9098ec0a9e6b
add getSingleLinkedStack,get2SingleLinkedStack. but get2SingleLinkedStack not working now
ryokka
parents:
478
diff
changeset
|
113 data1 = datum d |
9098ec0a9e6b
add getSingleLinkedStack,get2SingleLinkedStack. but get2SingleLinkedStack not working now
ryokka
parents:
478
diff
changeset
|
114 |
499 | 115 get2SingleLinkedStack : {n m : Level } {t : Set m } {a : Set n} -> SingleLinkedStack a -> (Code : SingleLinkedStack a -> (Maybe a) -> (Maybe a) -> t) -> t |
116 get2SingleLinkedStack {n} {m} {t} {a} stack cs with (top stack) | |
483
9098ec0a9e6b
add getSingleLinkedStack,get2SingleLinkedStack. but get2SingleLinkedStack not working now
ryokka
parents:
478
diff
changeset
|
117 ... | Nothing = cs stack Nothing Nothing |
499 | 118 ... | Just d = get2SingleLinkedStack' {n} {m} stack cs |
483
9098ec0a9e6b
add getSingleLinkedStack,get2SingleLinkedStack. but get2SingleLinkedStack not working now
ryokka
parents:
478
diff
changeset
|
119 where |
499 | 120 get2SingleLinkedStack' : {n m : Level} {t : Set m } -> SingleLinkedStack a -> (Code : SingleLinkedStack a -> (Maybe a) -> (Maybe a) -> t) -> t |
484 | 121 get2SingleLinkedStack' stack cs with (next d) |
122 ... | Nothing = cs stack Nothing Nothing | |
123 ... | Just d1 = cs stack (Just (datum d)) (Just (datum d1)) | |
124 | |
531 | 125 clearSingleLinkedStack : {n m : Level } {t : Set m } {a : Set n} -> SingleLinkedStack a -> (SingleLinkedStack a -> t) -> t |
126 clearSingleLinkedStack stack next = next (record {top = Nothing}) | |
483
9098ec0a9e6b
add getSingleLinkedStack,get2SingleLinkedStack. but get2SingleLinkedStack not working now
ryokka
parents:
478
diff
changeset
|
127 |
9098ec0a9e6b
add getSingleLinkedStack,get2SingleLinkedStack. but get2SingleLinkedStack not working now
ryokka
parents:
478
diff
changeset
|
128 |
496 | 129 emptySingleLinkedStack : {n : Level } {a : Set n} -> SingleLinkedStack a |
161 | 130 emptySingleLinkedStack = record {top = Nothing} |
131 | |
509
51f0d5e5d1e5
stack proof on indeterminate stack state
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
504
diff
changeset
|
132 ----- |
51f0d5e5d1e5
stack proof on indeterminate stack state
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
504
diff
changeset
|
133 -- Basic stack implementations are specifications of a Stack |
51f0d5e5d1e5
stack proof on indeterminate stack state
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
504
diff
changeset
|
134 -- |
515 | 135 singleLinkedStackSpec : {n m : Level } {t : Set m } {a : Set n} -> StackMethods {n} {m} a {t} (SingleLinkedStack a) |
509
51f0d5e5d1e5
stack proof on indeterminate stack state
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
504
diff
changeset
|
136 singleLinkedStackSpec = record { |
503
413ce51da50b
separate methods in stack.agda
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
502
diff
changeset
|
137 push = pushSingleLinkedStack |
161 | 138 ; pop = popSingleLinkedStack |
484 | 139 ; pop2 = pop2SingleLinkedStack |
483
9098ec0a9e6b
add getSingleLinkedStack,get2SingleLinkedStack. but get2SingleLinkedStack not working now
ryokka
parents:
478
diff
changeset
|
140 ; get = getSingleLinkedStack |
484 | 141 ; get2 = get2SingleLinkedStack |
531 | 142 ; clear = clearSingleLinkedStack |
503
413ce51da50b
separate methods in stack.agda
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
502
diff
changeset
|
143 } |
161 | 144 |
515 | 145 createSingleLinkedStack : {n m : Level } {t : Set m } {a : Set n} -> Stack {n} {m} a {t} (SingleLinkedStack a) |
509
51f0d5e5d1e5
stack proof on indeterminate stack state
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
504
diff
changeset
|
146 createSingleLinkedStack = record { |
51f0d5e5d1e5
stack proof on indeterminate stack state
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
504
diff
changeset
|
147 stack = emptySingleLinkedStack ; |
51f0d5e5d1e5
stack proof on indeterminate stack state
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
504
diff
changeset
|
148 stackMethods = singleLinkedStackSpec |
51f0d5e5d1e5
stack proof on indeterminate stack state
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
504
diff
changeset
|
149 } |
51f0d5e5d1e5
stack proof on indeterminate stack state
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
504
diff
changeset
|
150 |