| author | wenzelm | 
| Thu, 27 Mar 2008 15:32:19 +0100 | |
| changeset 26436 | dfd6947ab5c2 | 
| parent 25955 | 94a515ed8a39 | 
| child 26887 | 0ae304689d01 | 
| permissions | -rw-r--r-- | 
| 6118 | 1 | (* Title: Pure/General/seq.ML | 
| 5014 | 2 | ID: $Id$ | 
| 3 | Author: Lawrence C Paulson, Cambridge University Computer Laboratory | |
| 12851 | 4 | Author: Markus Wenzel, TU Munich | 
| 5014 | 5 | |
| 6 | Unbounded sequences implemented by closures. RECOMPUTES if sequence | |
| 7 | is re-inspected. Memoing, using polymorphic refs, was found to be | |
| 8 | slower! (More GCs) | |
| 9 | *) | |
| 10 | ||
| 11 | signature SEQ = | |
| 12 | sig | |
| 13 | type 'a seq | |
| 14 |   val make: (unit -> ('a * 'a seq) option) -> 'a seq
 | |
| 15 |   val pull: 'a seq -> ('a * 'a seq) option
 | |
| 16 | val empty: 'a seq | |
| 19475 | 17 | val cons: 'a -> 'a seq -> 'a seq | 
| 5014 | 18 | val single: 'a -> 'a seq | 
| 11721 | 19 |   val try: ('a -> 'b) -> 'a -> 'b seq
 | 
| 5014 | 20 | val hd: 'a seq -> 'a | 
| 21 | val tl: 'a seq -> 'a seq | |
| 19865 | 22 | val chop: int -> 'a seq -> 'a list * 'a seq | 
| 5014 | 23 | val list_of: 'a seq -> 'a list | 
| 24 | val of_list: 'a list -> 'a seq | |
| 19865 | 25 | val append: 'a seq -> 'a seq -> 'a seq | 
| 5014 | 26 |   val mapp: ('a -> 'b) -> 'a seq -> 'b seq -> 'b seq
 | 
| 17347 | 27 | val interleave: 'a seq * 'a seq -> 'a seq | 
| 5014 | 28 |   val filter: ('a -> bool) -> 'a seq -> 'a seq
 | 
| 29 | val flat: 'a seq seq -> 'a seq | |
| 17347 | 30 |   val map: ('a -> 'b) -> 'a seq -> 'b seq
 | 
| 31 |   val maps: ('a -> 'b seq) -> 'a seq -> 'b seq
 | |
| 19484 | 32 |   val map_filter: ('a -> 'b option) -> 'a seq -> 'b seq
 | 
| 17347 | 33 |   val lift: ('a -> 'b -> 'c) -> 'a seq -> 'b -> 'c seq
 | 
| 34 |   val lifts: ('a -> 'b -> 'c seq) -> 'a seq -> 'b -> 'c seq
 | |
| 19912 | 35 |   val singleton: ('a list -> 'b list seq) -> 'a -> 'b seq
 | 
| 25955 | 36 |   val wrap: ((unit -> ('a * 'a seq) option) -> ('a * 'a seq) option) -> 'a seq -> 'a seq
 | 
| 5014 | 37 | val print: (int -> 'a -> unit) -> int -> 'a seq -> unit | 
| 38 |   val it_right : ('a * 'b seq -> 'b seq) -> 'a seq * 'b seq -> 'b seq
 | |
| 39 | val succeed: 'a -> 'a seq | |
| 40 | val fail: 'a -> 'b seq | |
| 41 |   val THEN: ('a -> 'b seq) * ('b -> 'c seq) -> 'a -> 'c seq
 | |
| 42 |   val ORELSE: ('a -> 'b seq) * ('a -> 'b seq) -> 'a -> 'b seq
 | |
| 43 |   val APPEND: ('a -> 'b seq) * ('a -> 'b seq) -> 'a -> 'b seq
 | |
| 44 |   val EVERY: ('a -> 'a seq) list -> 'a -> 'a seq
 | |
| 45 |   val FIRST: ('a -> 'b seq) list -> 'a -> 'b seq
 | |
| 46 |   val TRY: ('a -> 'a seq) -> 'a -> 'a seq
 | |
| 47 |   val REPEAT: ('a -> 'a seq) -> 'a -> 'a seq
 | |
| 5558 | 48 |   val REPEAT1: ('a -> 'a seq) -> 'a -> 'a seq
 | 
| 8535 | 49 | val INTERVAL: (int -> 'a -> 'a seq) -> int -> int -> 'a -> 'a seq | 
| 12851 | 50 |   val DETERM: ('a -> 'b seq) -> 'a -> 'b seq
 | 
| 5014 | 51 | end; | 
| 52 | ||
| 53 | structure Seq: SEQ = | |
| 54 | struct | |
| 55 | ||
| 56 | ||
| 57 | (** lazy sequences **) | |
| 58 | ||
| 59 | datatype 'a seq = Seq of unit -> ('a * 'a seq) option;
 | |
| 60 | ||
| 61 | (*the abstraction for making a sequence*) | |
| 62 | val make = Seq; | |
| 63 | ||
| 15531 | 64 | (*return next sequence element as NONE or SOME (x, xq)*) | 
| 5014 | 65 | fun pull (Seq f) = f (); | 
| 66 | ||
| 67 | ||
| 68 | (*the empty sequence*) | |
| 15531 | 69 | val empty = Seq (fn () => NONE); | 
| 5014 | 70 | |
| 71 | (*prefix an element to the sequence -- use cons (x, xq) only if | |
| 72 | evaluation of xq need not be delayed, otherwise use | |
| 15531 | 73 | make (fn () => SOME (x, xq))*) | 
| 19475 | 74 | fun cons x xq = make (fn () => SOME (x, xq)); | 
| 5014 | 75 | |
| 19475 | 76 | fun single x = cons x empty; | 
| 5014 | 77 | |
| 78 | (*head and tail -- beware of calling the sequence function twice!!*) | |
| 16002 | 79 | fun hd xq = #1 (the (pull xq)) | 
| 80 | and tl xq = #2 (the (pull xq)); | |
| 5014 | 81 | |
| 11721 | 82 | (*partial function as procedure*) | 
| 83 | fun try f x = | |
| 21395 
f34ac19659ae
moved some fundamental concepts to General/basics.ML;
 wenzelm parents: 
21270diff
changeset | 84 | (case Basics.try f x of | 
| 15531 | 85 | SOME y => single y | 
| 86 | | NONE => empty); | |
| 11721 | 87 | |
| 5014 | 88 | |
| 89 | (*the list of the first n elements, paired with rest of sequence; | |
| 90 | if length of list is less than n, then sequence had less than n elements*) | |
| 19865 | 91 | fun chop n xq = | 
| 5014 | 92 | if n <= 0 then ([], xq) | 
| 93 | else | |
| 94 | (case pull xq of | |
| 15531 | 95 | NONE => ([], xq) | 
| 21395 
f34ac19659ae
moved some fundamental concepts to General/basics.ML;
 wenzelm parents: 
21270diff
changeset | 96 | | SOME (x, xq') => apfst (Basics.cons x) (chop (n - 1) xq')); | 
| 5014 | 97 | |
| 98 | (*conversion from sequence to list*) | |
| 99 | fun list_of xq = | |
| 100 | (case pull xq of | |
| 15531 | 101 | NONE => [] | 
| 102 | | SOME (x, xq') => x :: list_of xq'); | |
| 5014 | 103 | |
| 104 | (*conversion from list to sequence*) | |
| 19475 | 105 | fun of_list xs = fold_rev cons xs empty; | 
| 5014 | 106 | |
| 107 | ||
| 17347 | 108 | (*sequence append: put the elements of xq in front of those of yq*) | 
| 19865 | 109 | fun append xq yq = | 
| 17347 | 110 | let | 
| 111 | fun copy s = | |
| 112 | make (fn () => | |
| 113 | (case pull s of | |
| 114 | NONE => pull yq | |
| 115 | | SOME (x, s') => SOME (x, copy s'))) | |
| 116 | in copy xq end; | |
| 5014 | 117 | |
| 118 | (*map over a sequence xq, append the sequence yq*) | |
| 119 | fun mapp f xq yq = | |
| 120 | let | |
| 121 | fun copy s = | |
| 122 | make (fn () => | |
| 123 | (case pull s of | |
| 15531 | 124 | NONE => pull yq | 
| 125 | | SOME (x, s') => SOME (f x, copy s'))) | |
| 5014 | 126 | in copy xq end; | 
| 127 | ||
| 17347 | 128 | (*interleave elements of xq with those of yq -- fairer than append*) | 
| 129 | fun interleave (xq, yq) = | |
| 130 | make (fn () => | |
| 131 | (case pull xq of | |
| 132 | NONE => pull yq | |
| 133 | | SOME (x, xq') => SOME (x, interleave (yq, xq')))); | |
| 5014 | 134 | |
| 135 | (*filter sequence by predicate*) | |
| 136 | fun filter pred xq = | |
| 137 | let | |
| 138 | fun copy s = | |
| 139 | make (fn () => | |
| 140 | (case pull s of | |
| 15531 | 141 | NONE => NONE | 
| 142 | | SOME (x, s') => if pred x then SOME (x, copy s') else pull (copy s'))); | |
| 5014 | 143 | in copy xq end; | 
| 144 | ||
| 145 | (*flatten a sequence of sequences to a single sequence*) | |
| 146 | fun flat xqq = | |
| 147 | make (fn () => | |
| 148 | (case pull xqq of | |
| 15531 | 149 | NONE => NONE | 
| 19865 | 150 | | SOME (xq, xqq') => pull (append xq (flat xqq')))); | 
| 5014 | 151 | |
| 17347 | 152 | (*map the function f over the sequence, making a new sequence*) | 
| 153 | fun map f xq = | |
| 5014 | 154 | make (fn () => | 
| 155 | (case pull xq of | |
| 17347 | 156 | NONE => NONE | 
| 157 | | SOME (x, xq') => SOME (f x, map f xq'))); | |
| 158 | ||
| 159 | fun maps f = flat o map f; | |
| 19484 | 160 | fun map_filter f = maps (fn x => (case f x of NONE => empty | SOME y => single y)); | 
| 17347 | 161 | |
| 162 | fun lift f xq y = map (fn x => f x y) xq; | |
| 163 | fun lifts f xq y = maps (fn x => f x y) xq; | |
| 5014 | 164 | |
| 19912 | 165 | fun singleton f x = f [x] |> map (fn [y] => y | _ => raise Empty); | 
| 166 | ||
| 25955 | 167 | (*wrapped lazy evaluation*) | 
| 168 | fun wrap f xq = | |
| 169 | make (fn () => | |
| 170 | (case f (fn () => pull xq) of | |
| 171 | NONE => NONE | |
| 172 | | SOME (x, xq') => SOME (x, wrap f xq'))); | |
| 19912 | 173 | |
| 16534 | 174 | (*print a sequence, up to "count" elements*) | 
| 175 | fun print print_elem count = | |
| 5014 | 176 | let | 
| 16534 | 177 | fun prnt k xq = | 
| 5014 | 178 | if k > count then () | 
| 179 | else | |
| 180 | (case pull xq of | |
| 15531 | 181 | NONE => () | 
| 16534 | 182 | | SOME (x, xq') => (print_elem k x; writeln ""; prnt (k + 1) xq')); | 
| 183 | in prnt 1 end; | |
| 5014 | 184 | |
| 185 | (*accumulating a function over a sequence; this is lazy*) | |
| 186 | fun it_right f (xq, yq) = | |
| 187 | let | |
| 188 | fun its s = | |
| 189 | make (fn () => | |
| 190 | (case pull s of | |
| 15531 | 191 | NONE => pull yq | 
| 192 | | SOME (a, s') => pull (f (a, its s')))) | |
| 5014 | 193 | in its xq end; | 
| 194 | ||
| 195 | ||
| 196 | ||
| 21270 | 197 | (** sequence functions **) (*cf. Pure/tctical.ML*) | 
| 5014 | 198 | |
| 199 | fun succeed x = single x; | |
| 200 | fun fail _ = empty; | |
| 201 | ||
| 21270 | 202 | fun op THEN (f, g) x = maps g (f x); | 
| 5014 | 203 | |
| 5864 | 204 | fun op ORELSE (f, g) x = | 
| 5014 | 205 | (case pull (f x) of | 
| 15531 | 206 | NONE => g x | 
| 5014 | 207 | | some => make (fn () => some)); | 
| 208 | ||
| 5864 | 209 | fun op APPEND (f, g) x = | 
| 19865 | 210 | append (f x) (make (fn () => pull (g x))); | 
| 5014 | 211 | |
| 23178 | 212 | fun EVERY fs = fold_rev (curry op THEN) fs succeed; | 
| 213 | fun FIRST fs = fold_rev (curry op ORELSE) fs fail; | |
| 5014 | 214 | |
| 215 | fun TRY f = ORELSE (f, succeed); | |
| 216 | ||
| 217 | fun REPEAT f = | |
| 218 | let | |
| 219 | fun rep qs x = | |
| 220 | (case pull (f x) of | |
| 15531 | 221 | NONE => SOME (x, make (fn () => repq qs)) | 
| 222 | | SOME (x', q) => rep (q :: qs) x') | |
| 223 | and repq [] = NONE | |
| 5014 | 224 | | repq (q :: qs) = | 
| 225 | (case pull q of | |
| 15531 | 226 | NONE => repq qs | 
| 227 | | SOME (x, q) => rep (q :: qs) x); | |
| 5014 | 228 | in fn x => make (fn () => rep [] x) end; | 
| 229 | ||
| 5558 | 230 | fun REPEAT1 f = THEN (f, REPEAT f); | 
| 231 | ||
| 8535 | 232 | fun INTERVAL f i j x = | 
| 233 | if i > j then single x | |
| 234 | else op THEN (f j, INTERVAL f i (j - 1)) x; | |
| 235 | ||
| 12851 | 236 | fun DETERM f x = | 
| 237 | (case pull (f x) of | |
| 15531 | 238 | NONE => empty | 
| 19475 | 239 | | SOME (x', _) => cons x' empty); | 
| 8535 | 240 | |
| 5014 | 241 | end; |