-
Notifications
You must be signed in to change notification settings - Fork 5
/
OpSem.sml
323 lines (296 loc) · 13.4 KB
/
OpSem.sml
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
(* Celf
* Copyright (C) 2008 Anders Schack-Nielsen and Carsten Schürmann
*
* This file is part of Celf.
*
* Celf is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Celf is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Celf. If not, see <http://www.gnu.org/licenses/>.
*)
signature TLU_OpSem = TOP_LEVEL_UTIL
structure OpSem :> OPSEM =
struct
open Syntax
open Context
open PatternBind
open SignaturTable
(*******************)
val debugForwardChaining = ref false
fun trace _ _ _ = raise Fail "OpSem.sml"
fun printCtx _ = raise Fail "OpSem.sml"
(*******************)
val traceSolve = ref 0
val allowConstr = ref false
val fcLimit = ref NONE : int option ref
(* The type 'context' represents input and output contexts and the type
* 'lcontext' represents the part of the input context that has to occur
* at that specific point, i.e. it is not allowed to be passed to the
* output context. *)
type context = (asyncType * (lr list * headType) list) context
type lcontext = int list (* must-occur context: list of indices *)
val pBindCtx = depPatBind {dep = fn A => (A, []), nodep = fn A => (A, heads A)}
fun pBindLCtx p l =
let fun bind (n, p, l) = case Pattern.prj p of
PDepTensor (p1, p2) => bind (n, p2, bind (n + nbinds p2, p1, l))
| PDown _ => n::l
| _ => l (* POne, PAffi, PBang *)
in bind (1, p, map (fn k => k + nbinds p) l) end
fun pBind (p, sty) (l, ctx) = (pBindLCtx p l, pBindCtx (p, sty) ctx)
fun linDiff ctxs =
let fun f (SOME INT, SOME INT) = SOME INT
| f (SOME AFF, _) = SOME AFF
| f (NONE, NONE) = NONE
| f (SOME LIN, SOME LIN) = NONE
| f (SOME LIN, NONE) = SOME LIN
| f _ = raise Fail "Internal error: linDiff"
fun g ((x, A, m1), (_, _, m2)) = (x, A, f (m1, m2))
val diffctx = listPairMapEq g $ map12 ctx2list ctx2list ctxs
fun allLin (_, []) = []
| allLin (n, (_, _, SOME LIN)::ctx) = n :: allLin (n+1, ctx)
| allLin (n, _::ctx) = allLin (n+1, ctx)
in (allLin (1, diffctx), list2ctx diffctx) end
(* removeHyp : (lcontext * context) * int -> lcontext * context *)
(* Removes a variable from both lcontext and context. *)
fun removeHyp ((l, ctx), k) = (List.filter (fn n => n<>k) l, #1 $ ctxLookupNum (ctx, k))
(* Given a list of linear indices (an lcontext), remove those indices that no
* longer occur in the context. *)
(* linIntersect' : int * lcontext * (string * 'a * cmodality) list -> lcontext *)
(* linIntersect : lcontext * context -> lcontext * context *)
(* FIXME: improve complexity: use a multilookup in Context based on drop *)
fun linIntersect' (n, k::l, (x, A, m)::G) =
if n=k then
if m=SOME LIN then k :: linIntersect' (n+1, l, G)
else linIntersect' (n+1, l, G)
else linIntersect' (n+1, k::l, G)
| linIntersect' (_, [], _) = []
| linIntersect' (_, _::_, []) = raise Fail "Internal error: linIntersect: malformed lctx"
fun linIntersect (l, ctx) = (linIntersect' (1, l, ctx2list ctx), ctx)
(* cannotConsumeLin : syncType -> bool *)
(* Checks whether an object of the given type can consume linear resources. *)
fun cannotConsumeLin sty = case SyncType.prj sty of
LExists (_, S1, S2) => cannotConsumeLin S1 andalso cannotConsumeLin S2
| TDown _ => false
| _ => true (* TOne, TAffi, TBang *)
(* multSplit : syncType ->
{fst : lcontext * context -> lcontext * context,
snd : lcontext * context -> lcontext * context} *)
(* For a multiplicative context split involving the search for two objects
* of type A and B, beginning with the search for A; multSplit B returns two
* functions, fst and snd, which determine the lcontext for the individual
* searches based on the lcontext for the combined object. *)
fun multSplit sty2 =
if cannotConsumeLin sty2 then
{ fst = fn (l, ctx) => (l, ctx),
snd = fn (_, ctxm) => ([], ctxm) }
else
{ fst = fn (_, ctx) => ([], ctx),
snd = linIntersect }
fun genMon (ctx : context, p, sty) =
let val intCtx = ref NONE
fun getIntCtx () = case !intCtx of
SOME G => SOME G
| NONE => ( intCtx := (SOME $ ctxIntPart $ ctxMap #1 ctx) ; getIntCtx () )
fun gen (p, sty) = case (Pattern.prj p, SyncType.prj sty) of
(PDepTensor (p1, p2), LExists (p1', S1, S2)) =>
DepPair' (gen (Util.patternAddDep (p1, p1'), S1), gen (p2, S2))
| (POne, TOne) => One'
| (PDown (), TDown _) => MonUndef'
| (PAffi (), TAffi _) => MonUndef'
| (PBang NONE, TBang _) => MonUndef'
| (PBang (SOME x), TBang A) =>
let val X = newLVarCtx (getIntCtx ()) A
val () = case Obj.prj X of Atomic (h, _) => Timers.time Timers.unification Unify.pruneLVar (normalizeHead h)
| _ => raise Fail "Internal error: lvar expected"
in Bang' X end
| _ => raise Fail "Internal error: genMon"
fun gen' sty = case SyncType.prj sty of
LExists (p, S1, S2) => DepPair' (gen (p, S1), gen' S2)
| TOne => One'
| _ => MonUndef'
in case p of NONE => gen' sty | SOME p => gen (p, sty) end
fun traceLeftFocus (h, ty) =
if !traceSolve >= 2 then
print ("Trying "^PrettyPrint.printPreObj (Atomic' (h, Nil'))^
" : "^PrettyPrint.printType ty^"\n")
else ()
(* solve : (lcontext * context) * asyncType * (obj * context -> unit) -> unit *)
(* Right Inversion : Gamma;Delta => A *)
fun solve (ctx, ty, sc) =
( if !traceSolve >= 3 then
print ("Right Invert ("^PrettyPrint.printType ty^")\n")
else ()
; solve' (ctx, ty, sc) )
and solve' (ctx, ty, sc) = case Util.typePrjAbbrev ty of
TLPi (p, S, A) => solve (pBind (p, S) ctx, A,
fn (N, ctxo) => let val p' = Util.patternT2O p in
sc (LLam' (p', N), patUnbind (p', ctxo)) end)
(*| AddProd (A, B) => solve (ctx, A,
fn (N1, ctxo1) => solve (ctx, B,
fn (N2, ctxo2) => Option.app (fn ctxo => sc (AddPair' (N1, N2), ctxo))
(ctxAddJoinOpt (ctxo1, ctxo2))))*)
| AddProd (A, B) => solve (ctx, A,
fn (N1, ctxo1) => solve (linDiff (#2 ctx, ctxo1), B,
fn (N2, ctxo2) => sc (AddPair' (N1, N2),
ctxAddJoin (ctxo1, ctxJoinAffLin (ctxo2, ctxo1)))))
| TMonad S => forwardChain (!fcLimit, ctx, S, fn (E, ctxo) => sc (Monad' E, ctxo))
| P as TAtomic _ => matchAtom (ctx, P, sc)
| TAbbrev _ => raise Fail "Internal error: solve: TAbbrev"
(* matchAtom : (lcontext * context) * asyncType asyncTypeF * (obj * context -> unit) -> unit *)
(* Choice point: choose hypothesis and switch from Right Inversion to Left Focusing *)
and matchAtom (ctx, P, sc) =
( if !traceSolve >= 2 then
print ("Subgoal: MatchAtom ("^PrettyPrint.printType (AsyncType.inj P)^")\n")
else ()
; matchAtom' (ctx, P, sc) )
and matchAtom' (ctx, P, sc) =
let val aP = (case P of TAtomic (a, _) => a
| _ => raise Fail "Internal error: wrong argument to matchAtom!")
val P' = AsyncType.inj P
fun lFocus (ctx', lr, A, h) = fn () =>
( traceLeftFocus (h, A)
; leftFocus (lr, ctx', P', A, fn (S, ctxo) =>
sc (Atomic' (h, S), ctxo)) )
fun matchSig (c, lr, A) = BackTrack.backtrack (lFocus (ctx, lr, A, Const c))
fun matchCtx ([], _) = ()
| matchCtx ((_, _, NONE)::G, k) = matchCtx (G, k+1)
| matchCtx ((x, (A, hds), SOME modality)::G, k) =
let val ctx' = if modality=INT then ctx else removeHyp (ctx, k)
val A' = TClos (A, Subst.shift k)
val h = Var (modality, k)
val () = app (fn (lr, _) => BackTrack.backtrack (lFocus (ctx', lr, A', h)))
(List.filter (fn (_, HdAtom a) => a=aP | _ => false) hds)
in matchCtx (G, k+1) end
in
matchCtx (ctx2list $ #2 ctx, 1)
; app matchSig (getCandAtomic aP)
end
(* forwardChain : int * (lcontext * context) * syncType * (expObj * context -> unit) -> unit *)
and forwardChain (fcLim, ctx, S, sc) =
( if !traceSolve >= 2 then
print ("ForwardChain ("^PrettyPrint.printType (TMonad' S)^")\n")
else ()
; forwardChain' (fcLim, ctx, S, sc) )
and forwardChain' (fcLim, (l, ctx), S, sc) =
let fun mlFocus (ctx', lr, A, h) = fn commitExn =>
( traceLeftFocus (h, A)
; monLeftFocus (lr, ctx', A, fn (S, sty, ctxo) =>
if !allowConstr orelse Unify.constrsSolvable (Atomic' (h, S))
then raise commitExn ((h, S), sty, ctxo)
else () ) )
fun matchSig (c, lr, A) = fn () => BackTrack.backtrackC (mlFocus (ctx, lr, A, Const c))
fun matchCtx ([], _) = []
| matchCtx ((_, _, NONE)::G, k) = matchCtx (G, k+1)
| matchCtx ((x, (A, hds), SOME modality)::G, k) =
let val ctx' = if modality=INT then ctx else #2 $ removeHyp (([], ctx), k)
val A' = TClos (A, Subst.shift k)
in List.mapPartial
(fn (_, HdAtom _) => NONE
| (lr, HdMonad) => SOME (fn () =>
BackTrack.backtrackC (mlFocus (ctx', lr, A', Var (modality, k)))))
hds
@ matchCtx (G, k+1)
end
in case if fcLim <> SOME 0 then
PermuteList.findSome (fn f => f ())
(PermuteList.fromList
(matchCtx (ctx2list $ ctx, 1) @ map matchSig (getCandMonad ())))
else NONE of
NONE => rightFocus ((l, ctx), genMon (ctx, NONE, S), S,
fn (M, ctxo) => sc (Mon' M, ctxo))
| SOME (N, sty, ctxm) =>
let fun syncType2pat sty = case SyncType.prj sty of
LExists (p, _, S2) => PDepTensor' (p, syncType2pat S2)
| TOne => POne'
| TDown A => PDown' () | TAffi A => PAffi' () | TBang A => PBang' NONE
val p = syncType2pat sty
val p' = Util.patternT2O p
val () = if !traceSolve >= 1 then
print ("Committing:\n let {_} = "^PrettyPrint.printObj (Atomic' N)^
" : {"^PrettyPrint.printSyncType sty^"}\n") else ()
in forwardChain' (Option.map (fn x => x - 1) fcLim,
pBind (p, sty) $ linIntersect (l, ctxm),
STClos (S, Subst.shift $ nbinds p),
fn (E, ctxo) => sc (Let' (p', N, E), patUnbind (p', ctxo)))
end
end
(* rightFocus : (lcontext * context) * monadObj * syncType * (monadObj * context -> unit) -> unit *)
and rightFocus (ctx, m, sty, sc) =
( if !traceSolve >= 3 then
print ("RightFocus ("^PrettyPrint.printType (TMonad' sty)^")\n")
else ()
; rightFocus' (ctx, m, sty, sc) )
and rightFocus' ((l, ctx), m, sty, sc) = case (MonadObj.prj m, SyncType.prj sty) of
(DepPair (m1, m2), LExists (p, S1, S2)) =>
let val {fst, snd} = multSplit S2
in rightFocus (fst (l, ctx), m1, S1, fn (M1, ctxm) =>
rightFocus (snd (l, ctxm), m2,
STClos (S2, Subst.subM $ normalizeMonadObj M1), (* M1=m1 on free vars in S2 *)
fn (M2, ctxo) => sc (DepPair' (M1, M2), ctxo)))
end
| (One, TOne) => if l <> [] then () else sc (One', ctx)
| (MonUndef, TDown A) => solve ((l, ctx), A, fn (N, ctxo) => sc (Down' N, ctxo))
| (MonUndef, TAffi A) => if l <> [] then () else
solve (([], ctxAffPart ctx), A, fn (N, ctxo) => sc (Affi' N, ctxJoinAffLin (ctxo, ctx)))
| (MonUndef, TBang A) => if l <> [] then () else
solve (([], ctxIntPart ctx), A, fn (N, _) => sc (Bang' N, ctx))
| (Bang N, TBang A) => if l <> [] then () else sc (Bang' N, ctx)
| _ => raise Fail "Internal error: rightFocus: partial monadObj mismatch"
(* leftFocus : lr list * (lcontext * context) * asyncType * asyncType * (spine * context -> unit) -> unit *)
(* Left Focusing : Gamma;Delta;A >> P ~~ leftFocus (LR-Oracle, Gamma;Delta, P, A, SuccCont)
* Construct the spine corresponding to the chosen hypothesis. *)
and leftFocus (lr, ctx, P, ty, sc) =
( if !traceSolve >= 3 then
print ("LeftFocus ("^PrettyPrint.printType ty^")\n")
else ()
; leftFocus' (lr, ctx, P, ty, sc) )
and leftFocus' (lr, (l, ctx), P, ty, sc) = case Util.typePrjAbbrev ty of
TLPi (p, A, B) =>
let val m = genMon (ctx, SOME p, A)
val {fst, snd} = multSplit A
in leftFocus (lr, fst (l, ctx), P, TClos (B, Subst.subM $ normalizeMonadObj m),
fn (S, ctxm) => rightFocus (snd (l, ctxm), m, A,
fn (M, ctxo) => sc (LApp' (M, S), ctxo)))
end
| AddProd (A, B) => (case lr of
[] => raise Fail "Internal error: LR-oracle is out of answers"
| L::lrs => leftFocus (lrs, (l, ctx), P, A, fn (S, ctxo) => sc (ProjLeft' S, ctxo))
| R::lrs => leftFocus (lrs, (l, ctx), P, B, fn (S, ctxo) => sc (ProjRight' S, ctxo)))
| TMonad S => raise Fail "Internal error: leftFocus applied to monadic hypothesis!"
| P' as TAtomic _ =>
if l=[] then Unify.unifyAndBranch (AsyncType.inj P', P, fn () => sc (Nil', ctx))
else ()
| TAbbrev _ => raise Fail "Internal error: leftFocus: TAbbrev"
(* monLeftFocus : lr list * context * asyncType * (spine * syncType * context -> unit) -> unit *)
and monLeftFocus (lr, ctx, ty, sc) =
( if !traceSolve >= 3 then
print ("monLeftFocus ("^PrettyPrint.printType ty^")\n")
else ()
; monLeftFocus' (lr, ctx, ty, sc) )
and monLeftFocus' (lr, ctx, ty, sc) = case Util.typePrjAbbrev ty of
TLPi (p, A, B) => let val m = genMon (ctx, SOME p, A)
in rightFocus (([], ctx), m, A, fn (M, ctxm) =>
monLeftFocus (lr, ctxm,
TClos (B, Subst.subM $ normalizeMonadObj m),
fn (S, sty, ctxo) => sc (LApp' (M, S), sty, ctxo)))
end
| AddProd (A, B) => (case lr of
[] => raise Fail "Internal error: LR-oracle is out of answers!"
| L::lrs => monLeftFocus (lrs, ctx, A,
fn (S, sty, ctxo) => sc (ProjLeft' S, sty, ctxo))
| R::lrs => monLeftFocus (lrs, ctx, B,
fn (S, sty, ctxo) => sc (ProjRight' S, sty, ctxo)))
| TMonad sty => sc (Nil', sty, ctx)
| TAtomic _ => raise Fail "Internal error: monLeftFocus applied to wrong hypothesis!"
| TAbbrev _ => raise Fail "Internal error: monLeftFocus: TAbbrev"
(* solveEC : asyncType * (obj -> unit) -> unit *)
fun solveEC (ty, sc) = solve (([], emptyCtx), ty, sc o #1)
end