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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
|
module Control.SearchTree.Unsafe
( SearchTree (..), someSearchTree, getSearchTree
, isDefined, showSearchTree, searchTreeSize, isVar, identicalVars, varId
, Strategy, dfsStrategy, bfsStrategy, idsStrategy, idsStrategyWith
, allValuesDFS, allValuesBFS, allValuesIDS, allValuesIDSwith
, ValueSequence, vsToList
, getAllValuesWith, someValue, someValueWith
) where
import ValueSequence
data SearchTree a = Value a
| Fail Int
| Or (SearchTree a) (SearchTree a)
isVar :: a -> Bool
isVar x = maybe False (const True) (lookupVarId x)
identicalVars :: a -> a -> Bool
identicalVars x y =
maybe False (\xi -> maybe False (==xi) (lookupVarId y)) (lookupVarId x)
varId :: a -> Int
varId x = maybe (error "UnsafeSearchTree.varId: argument not a variable")
id
(lookupVarId x)
lookupVarId :: a -> Maybe Int
lookupVarId external
type Strategy a = SearchTree a -> ValueSequence a
getSearchTree :: a -> IO (SearchTree a)
getSearchTree x = return (someSearchTree x)
someSearchTree :: a -> SearchTree a
someSearchTree external
isDefined :: a -> Bool
isDefined x = hasValue (someSearchTree x)
where hasValue y = case y of Value _ -> True
Fail _ -> False
Or t1 t2 -> hasValue t1 || hasValue t2
showSearchTree :: Show a => SearchTree a -> String
showSearchTree st = showsST [] st ""
where
showsST ctxt (Value a) = indent ctxt . shows a . nl
showsST ctxt (Fail _) = indent ctxt . showChar '!' . nl
showsST ctxt (Or t1 t2) = indent ctxt . showChar '?' . nl
. showsST (False : ctxt) t1
. showsST (True : ctxt) t2
indent [] = id
indent (i:is) = showString (concatMap showIndent $ reverse is)
. showChar (if i then llc else lmc)
. showString (hbar : " ")
where showIndent isLast = (if isLast then ' ' else vbar) : " "
vbar = '\9474'
hbar = '\9472'
llc = '\9492'
lmc = '\9500'
nl = showChar '\n'
shows x = showString (show x)
showChar c = (c:)
showString s = (s++)
searchTreeSize :: SearchTree _ -> (Int, Int, Int)
searchTreeSize (Value _) = (1, 0, 0)
searchTreeSize (Fail _) = (0, 1, 0)
searchTreeSize (Or t1 t2) = let (v1, f1, o1) = searchTreeSize t1
(v2, f2, o2) = searchTreeSize t2
in (v1 + v2, f1 + f2, o1 + o2 + 1)
allValuesDFS :: SearchTree a -> [a]
allValuesDFS = vsToList . dfsStrategy
dfsStrategy :: Strategy a
dfsStrategy (Fail d) = failVS d
dfsStrategy (Value x) = addVS x emptyVS
dfsStrategy (Or x y) = dfsStrategy x |++| dfsStrategy y
allValuesBFS :: SearchTree a -> [a]
allValuesBFS t = vsToList (bfsStrategy t)
children :: [SearchTree a] -> [SearchTree a]
children [] = []
children (Fail _:ts) = children ts
children (Value _:ts) = children ts
children (Or x y:ts) = x:y:children ts
values :: [SearchTree a] -> ValueSequence a
values [] = emptyVS
values (Fail d:ts) = failVS d |++| values ts
values (Value x:ts) = addVS x (values ts)
values (Or _ _:ts) = values ts
allBFS :: [SearchTree a] -> ValueSequence a
allBFS [] = emptyVS
allBFS (t:ts) = values (t:ts) |++| allBFS (children (t:ts))
bfsStrategy :: Strategy a
bfsStrategy t = allBFS [t]
defIDSDepth :: Int
defIDSDepth = 100
defIDSInc :: Int -> Int
defIDSInc = (2*)
allValuesIDS :: SearchTree a -> [a]
allValuesIDS t = allValuesIDSwith defIDSDepth defIDSInc t
idsStrategy :: Strategy a
idsStrategy t = idsStrategyWith defIDSDepth defIDSInc t
allValuesIDSwith :: Int -> (Int -> Int) -> SearchTree a -> [a]
allValuesIDSwith initdepth incrdepth = vsToList . idsStrategyWith initdepth incrdepth
idsStrategyWith :: Int -> (Int -> Int) -> Strategy a
idsStrategyWith initdepth incrdepth st =
iterIDS initdepth (collectInBounds 0 initdepth st)
where
iterIDS _ Nil = emptyVS
iterIDS n (Cons x xs) = addVS x (iterIDS n xs)
iterIDS n (FCons fd xs) = failVS fd |++| iterIDS n xs
iterIDS n Abort = let newdepth = incrdepth n
in iterIDS newdepth (collectInBounds n newdepth st)
collectInBounds :: Int -> Int -> SearchTree a -> AbortList a
collectInBounds oldbound newbound st = collectLevel newbound st
where
collectLevel d (Fail fd) = if d <newbound-oldbound then FCons fd Nil else Nil
collectLevel d (Value x) = if d<newbound-oldbound then Cons x Nil else Nil
collectLevel d (Or x y) =
if d>0 then concA (collectLevel (d-1) x) (collectLevel (d-1) y)
else Abort
data AbortList a = Nil | Cons a (AbortList a) | FCons Int (AbortList a) | Abort
concA :: AbortList a -> AbortList a -> AbortList a
concA Abort Abort = Abort
concA Abort Nil = Abort
concA Abort (Cons x xs) = Cons x (concA Abort xs)
concA Abort (FCons d xs) = FCons d (concA Abort xs)
concA Nil ys = ys
concA (Cons x xs) ys = Cons x (concA xs ys)
concA (FCons d xs) ys = FCons d (concA xs ys)
getAllValuesWith :: Strategy a -> a -> IO [a]
getAllValuesWith strategy exp = do
t <- getSearchTree exp
return (vsToList (strategy t))
someValue :: a -> a
someValue = someValueWith bfsStrategy
someValueWith :: Strategy a -> a -> a
someValueWith strategy x = head (vsToList (strategy (someSearchTree x)))
|