-
Notifications
You must be signed in to change notification settings - Fork 6
/
normalize.sml
706 lines (638 loc) · 22.4 KB
/
normalize.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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
(* normalization *)
structure Normalize = struct
open Util
open UVar
open Expr
open Subst
open TypecheckUtil
infixr 0 $
(* update all [Refined] uvars *)
fun load_uvar on_refined on_fresh (a as (x, r)) =
case !x of
Refined b => on_refined b
| Fresh _ => on_fresh x
fun load_uvar' on_refined origin x = load_uvar on_refined (const_fun origin) (x, dummy)
fun update_idx_visitor_vtable cast () : ('this, unit) idx_visitor_vtable =
let
val vtable =
default_idx_visitor_vtable
cast
extend_noop
visit_noop
(visit_imposs "update/visit_UVarBS")
(visit_imposs "update/visit_UVarI")
(visit_imposs "update/visit_UVarS")
visit_noop
fun visit_UVarBS this env x =
let
val vtable = cast this
in
load_uvar' (#visit_bsort vtable this env) (UVarBS x) x
end
val vtable = override_visit_UVarBS vtable visit_UVarBS
fun visit_UVarI this env (data as (x, r)) =
let
val vtable = cast this
in
load_uvar' (#visit_idx vtable this env) (UVarI data) x
end
val vtable = override_visit_UVarI vtable visit_UVarI
fun visit_UVarS this env (data as (x, r)) =
let
val vtable = cast this
in
load_uvar' (#visit_sort vtable this env) (UVarS data) x
end
val vtable = override_visit_UVarS vtable visit_UVarS
in
vtable
end
fun new_update_idx_visitor a = new_idx_visitor update_idx_visitor_vtable a
fun update_bs b =
let
val visitor as (IdxVisitor vtable) = new_update_idx_visitor ()
in
#visit_bsort vtable visitor () b
end
fun update_i b =
let
val visitor as (IdxVisitor vtable) = new_update_idx_visitor ()
in
#visit_idx vtable visitor () b
end
fun update_p b =
let
val visitor as (IdxVisitor vtable) = new_update_idx_visitor ()
in
#visit_prop vtable visitor () b
end
fun update_s b =
let
val visitor as (IdxVisitor vtable) = new_update_idx_visitor ()
in
#visit_sort vtable visitor () b
end
(* fun update_bs bs = *)
(* case bs of *)
(* UVarBS x => *)
(* (case !x of *)
(* Refined bs => *)
(* let *)
(* val bs = update_bs bs *)
(* val () = x := Refined bs *)
(* in *)
(* bs *)
(* end *)
(* | Fresh _ => bs *)
(* ) *)
(* | BSArrow (a, b) => BSArrow (update_bs a, update_bs b) *)
(* | Base _ => bs *)
(* fun update_i i = *)
(* case i of *)
(* UVarI (x, r) => load_uvar' update_i i x *)
(* | IConst _ => i *)
(* | UnOpI (opr, i, r) => UnOpI (opr, update_i i, r) *)
(* | BinOpI (opr, i1, i2) => BinOpI (opr, update_i i1, update_i i2) *)
(* | Ite (i1, i2, i3, r) => Ite (update_i i1, update_i i2, update_i i3, r) *)
(* | VarI _ => i *)
(* | IAbs (b, Bind (name, i), r) => IAbs (update_bs b, Bind (name, update_i i), r) *)
(* fun update_p p = *)
(* case p of *)
(* Quan (q, bs, Bind (name, p), r) => Quan (q, update_bs bs, Bind (name, update_p p), r) *)
(* | BinConn (opr, p1, p2) => BinConn (opr, update_p p1, update_p p2) *)
(* | BinPred (opr, i1, i2) => BinPred (opr, update_i i1, update_i i2) *)
(* | Not (p, r) => Not (update_p p, r) *)
(* | PTrueFalse _ => p *)
(* fun update_s s = *)
(* case s of *)
(* UVarS (x, r) => load_uvar' update_s s x *)
(* | Basic _ => s *)
(* | Subset ((b, r1), Bind (name, p), r) => Subset ((update_bs b, r1), Bind (name, update_p p), r) *)
(* | SAbs (s1, Bind (name, s), r) => SAbs (update_bs s1, Bind (name, update_s s), r) *)
(* | SApp (s, i) => SApp (update_s s, update_i i) *)
fun update_k k = mapSnd (map update_bs) k
fun update_type_visitor_vtable cast (on_bs, on_i, on_s, on_k) : ('this, unit) type_visitor_vtable =
let
fun adapt f this env b = f b
val vtable =
default_type_visitor_vtable
cast
extend_noop
extend_noop
visit_noop
(adapt on_bs)
(adapt on_i)
(adapt on_s)
(adapt on_k)
(visit_imposs "update/visit_UVar")
fun visit_UVar this env (data as (x, r)) =
let
val vtable = cast this
in
load_uvar' (#visit_mtype vtable this env) (UVar data) x
end
val vtable = override_visit_UVar vtable visit_UVar
in
vtable
end
fun new_update_type_visitor a = new_type_visitor update_type_visitor_vtable a
fun update_mt b =
let
val visitor as (TypeVisitor vtable) = new_update_type_visitor (update_bs, update_i, update_s, update_k)
in
#visit_mtype vtable visitor () b
end
fun update_t b =
let
val visitor as (TypeVisitor vtable) = new_update_type_visitor (update_bs, update_i, update_s, update_k)
in
#visit_ty vtable visitor () b
end
fun update_c b =
let
val visitor as (TypeVisitor vtable) = new_update_type_visitor (update_bs, update_i, update_s, update_k)
in
#visit_constr_info vtable visitor () b
end
(* fun update_mt t = *)
(* case t of *)
(* UVar (x, r) => load_uvar' update_mt t x *)
(* | Unit r => Unit r *)
(* | Arrow (t1, d, t2) => Arrow (update_mt t1, update_i d, update_mt t2) *)
(* | TyArray (t, i) => TyArray (update_mt t, update_i i) *)
(* | TyNat (i, r) => TyNat (update_i i, r) *)
(* | Prod (t1, t2) => Prod (update_mt t1, update_mt t2) *)
(* | UniI (s, Bind (name, t1), r) => UniI (update_s s, Bind (name, update_mt t1), r) *)
(* | MtVar x => MtVar x *)
(* | MtAbs (k, Bind (name, t), r) => MtAbs (update_k k, Bind (name, update_mt t), r) *)
(* | MtApp (t1, t2) => MtApp (update_mt t1, update_mt t2) *)
(* | MtAbsI (s, Bind (name, t), r) => MtAbsI (update_bs s, Bind (name, update_mt t), r) *)
(* | MtAppI (t, i) => MtAppI (update_mt t, update_i i) *)
(* | BaseType a => BaseType a *)
(* | TDatatype (Bind (name, tbinds), r) => *)
(* let *)
(* val (tname_kinds, (bsorts, decls)) = unfold_binds tbinds *)
(* val bsorts = map update_bs bsorts *)
(* fun update_constr_core ibinds = *)
(* let *)
(* val (name_sorts, (t, is)) = unfold_binds ibinds *)
(* val name_sorts = map (mapSnd update_s) name_sorts *)
(* val t = update_mt t *)
(* val is = map update_i is *)
(* in *)
(* fold_binds (name_sorts, (t, is)) *)
(* end *)
(* val decls = map (map2_3 update_constr_core) decls *)
(* val tbinds = fold_binds (tname_kinds, (bsorts, decls)) *)
(* in *)
(* TDatatype (Bind (name, tbinds), r) *)
(* end *)
(* fun update_t t = *)
(* case t of *)
(* Mono t => Mono (update_mt t) *)
(* | Uni (Bind (name, t), r) => Uni (Bind (name, update_t t), r) *)
(* fun update_c ((x, tbinds) : mtype constr_info) = *)
(* let *)
(* val (tname_kinds, ibinds) = unfold_binds tbinds *)
(* val (ns, (t, is)) = unfold_binds ibinds *)
(* val ns = map (mapSnd update_s) ns *)
(* val t = update_mt t *)
(* val is = map update_i is *)
(* val ibinds = fold_binds (ns, (t, is)) *)
(* val tbinds = fold_binds (tname_kinds, ibinds) *)
(* in *)
(* (x, tbinds) *)
(* end *)
fun update_ke (k, t) = (update_k k, Option.map update_mt t)
fun update_ctx (sctx, kctx, cctx, tctx) =
let
val sctx = map (mapSnd update_s) sctx
val kctx = map (mapSnd update_ke) kctx
val cctx = map (mapSnd update_c) cctx
val tctx = map (mapSnd update_t) tctx
in
(sctx, kctx, cctx, tctx)
end
fun update_sgntr sg =
case sg of
Sig ctx => Sig $ update_ctx ctx
| FunctorBind ((arg_name, arg), body) =>
FunctorBind ((arg_name, update_ctx arg), update_ctx body)
fun update_sgntr_list gctx =
List.map (mapSnd update_sgntr) gctx
open Bind
(* Normalize to weak head normal form (WHNF) (i.e. only reveal head structure). Efficient for equivalence test. *)
fun whnf_i i =
case i of
UVarI (x, r) => load_uvar' whnf_i i x
| BinOpI (opr, i1, i2) =>
let
val i1 = whnf_i i1
val i2 = whnf_i i2
in
case (opr, i1) of
(IApp, IAbs (_, Bind (_, i1), _)) => whnf_i (subst_i_i i2 i1)
| _ => BinOpI (opr, i1, i2)
end
| Ite (i1, i2, i3, r) =>
let
val i1 = whnf_i i1
val i2 = whnf_i i2
val i3 = whnf_i i3
in
case i1 of
IConst (ICBool b, _) => if b then i2 else i3
| _ => Ite (i1, i2, i3, r)
end
| _ => i
fun whnf_s s =
case s of
UVarS (x, r) => load_uvar' whnf_s s x
| SApp (s, i) =>
let
val s = whnf_s s
val i = whnf_i i
in
case s of
SAbs (_, Bind (_, s), _) => whnf_s (subst_i_s i s)
| _ => SApp (s, i)
end
| _ => s
fun whnf_mt gctx kctx (t : mtype) : mtype =
let
val whnf_mt = whnf_mt gctx
in
case t of
UVar (x, r) => load_uvar' (whnf_mt kctx) t x
| MtVar x => try_retrieve_MtVar (whnf_mt kctx) gctx kctx x
| MtAppI (t, i) =>
let
val t = whnf_mt kctx t
val i = whnf_i i
in
case t of
MtAbsI (_, Bind (_, t), _) => whnf_mt kctx (subst_i_mt i t)
| _ => MtAppI (t, i)
end
| MtApp (t1, t2) =>
let
val t1 = whnf_mt kctx t1
val t2 = whnf_mt kctx t2
in
case t1 of
MtAbs (_, Bind (_, t1), _) => whnf_mt kctx (subst_t_mt t2 t1)
| _ => MtApp (t1, t2)
end
| _ => t
end
(* Normalize to full normal form (i.e reduce under binders) *)
fun normalize_idx_visitor_vtable cast () : ('this, unit) idx_visitor_vtable =
let
val vtable =
update_idx_visitor_vtable
cast
()
fun visit_BinOpI this env (data as (opr, i1, i2)) =
let
val vtable = cast this
fun normalize_i a = #visit_idx vtable this env a
val i1 = normalize_i i1
val i2 = normalize_i i2
in
case (opr, i1) of
(IApp, IAbs (_, Bind (_, i1), _)) => normalize_i (subst_i_i i2 i1)
| _ => BinOpI (opr, i1, i2)
end
val vtable = override_visit_BinOpI vtable visit_BinOpI
fun visit_Ite this env (data as (i1, i2, i3, r)) =
let
val vtable = cast this
fun normalize_i a = #visit_idx vtable this env a
val i1 = normalize_i i1
val i2 = normalize_i i2
val i3 = normalize_i i3
in
case i1 of
IConst (ICBool b, _) => if b then i2 else i3
| _ => Ite (i1, i2, i3, r)
end
val vtable = override_visit_Ite vtable visit_Ite
fun visit_SApp this env (data as (s, i)) =
let
val vtable = cast this
fun normalize_i a = #visit_idx vtable this env a
fun normalize_s a = #visit_sort vtable this env a
val s = normalize_s s
val i = normalize_i i
in
case s of
SAbs (_, Bind (_, s), _) => normalize_s (subst_i_s i s)
| _ => SApp (s, i)
end
val vtable = override_visit_SApp vtable visit_SApp
in
vtable
end
fun new_normalize_idx_visitor a = new_idx_visitor normalize_idx_visitor_vtable a
fun normalize_bs b =
let
val visitor as (IdxVisitor vtable) = new_normalize_idx_visitor ()
in
#visit_bsort vtable visitor () b
end
fun normalize_i b =
let
val visitor as (IdxVisitor vtable) = new_normalize_idx_visitor ()
in
#visit_idx vtable visitor () b
end
fun normalize_p b =
let
val visitor as (IdxVisitor vtable) = new_normalize_idx_visitor ()
in
#visit_prop vtable visitor () b
end
fun normalize_s b =
let
val visitor as (IdxVisitor vtable) = new_normalize_idx_visitor ()
in
#visit_sort vtable visitor () b
end
(* val normalize_bs = update_bs *)
(* fun normalize_i i = *)
(* case i of *)
(* UVarI (x, r) => load_uvar' normalize_i i x *)
(* | IConst _ => i *)
(* | UnOpI (opr, i, r) => UnOpI (opr, normalize_i i, r) *)
(* | BinOpI (opr, i1, i2) => *)
(* let *)
(* val i1 = normalize_i i1 *)
(* val i2 = normalize_i i2 *)
(* in *)
(* case (opr, i1) of *)
(* (IApp, IAbs (_, Bind (_, i1), _)) => normalize_i (subst_i_i i2 i1) *)
(* | _ => BinOpI (opr, i1, i2) *)
(* end *)
(* | Ite (i1, i2, i3, r) => *)
(* let *)
(* val i1 = normalize_i i1 *)
(* val i2 = normalize_i i2 *)
(* val i3 = normalize_i i3 *)
(* in *)
(* case i1 of *)
(* IConst (ICBool b, _) => if b then i2 else i3 *)
(* | _ => Ite (i1, i2, i3, r) *)
(* end *)
(* | VarI _ => i *)
(* | IAbs (b, Bind (name, i), r) => IAbs (normalize_bs b, Bind (name, normalize_i i), r) *)
(* fun normalize_p p = *)
(* case p of *)
(* Quan (q, bs, Bind (name, p), r) => Quan (q, normalize_bs bs, Bind (name, normalize_p p), r) *)
(* | BinConn (opr, p1, p2) => BinConn (opr, normalize_p p1, normalize_p p2) *)
(* | BinPred (opr, i1, i2) => BinPred (opr, normalize_i i1, normalize_i i2) *)
(* | Not (p, r) => Not (normalize_p p, r) *)
(* | PTrueFalse _ => p *)
(* fun normalize_s s = *)
(* case s of *)
(* UVarS (x, r) => load_uvar' normalize_s s x *)
(* | Basic _ => s *)
(* | Subset ((b, r1), Bind (name, p), r) => Subset ((normalize_bs b, r1), Bind (name, normalize_p p), r) *)
(* | SAbs (s_arg, Bind (name, s), r) => SAbs (normalize_bs s_arg, Bind (name, normalize_s s), r) *)
(* | SApp (s, i) => *)
(* let *)
(* val s = normalize_s s *)
(* val i = normalize_i i *)
(* in *)
(* case s of *)
(* SAbs (_, Bind (_, s), _) => normalize_s (subst_i_s i s) *)
(* | _ => SApp (s, i) *)
(* end *)
fun normalize_k k = mapSnd (map normalize_bs) k
(* fun normalize_ibind f kctx (Bind (name, t) : ('a * 'b) ibind) = *)
(* Bind (name, f (shiftx_i_kctx 1 kctx) t) *)
(* fun normalize_tbind f kctx k (Bind (name, t) : ((string * 'a) * 'b) tbind) = *)
(* Bind (name, f (add_kinding (fst name, k) kctx) t) *)
(* fun normalize_binds get_cls on_bind f_cls f ctx binds = *)
(* let *)
(* val normalize_binds = normalize_binds get_cls on_bind f_cls f *)
(* in *)
(* case binds of *)
(* BindNil a => BindNil (f ctx a) *)
(* | BindCons (cls, bind) => *)
(* let *)
(* val cls = f_cls cls *)
(* in *)
(* BindCons (cls, on_bind normalize_binds ctx (get_cls cls) bind) *)
(* end *)
(* end *)
(* fun normalize_ibind' f kctx _ bind = normalize_ibind f kctx bind *)
(* fun normalize_ibinds f_cls f ctx (b : ('classifier, 'name, 'inner) ibinds) = normalize_binds id normalize_ibind' f_cls f ctx b *)
(* fun normalize_tbinds get_cls f_cls f ctx (b : ('classifier, string * 'a, 'inner) tbinds) = normalize_binds get_cls normalize_tbind f_cls f ctx b *)
fun normalize_type_visitor_vtable cast gctx : ('this, kcontext) type_visitor_vtable =
let
fun adapt f this env b = f b
fun extend_i this kctx name = shiftx_i_kctx 1 kctx (*an optimization opportunity here by lazy shifting*)
fun extend_t this kctx name = add_kinding (fst name, Type) kctx
fun extend_t_anno this kctx (name, k) = add_kinding (fst name, k) kctx
val vtable =
default_type_visitor_vtable
cast
extend_i
extend_t
visit_noop
(adapt normalize_bs)
(adapt normalize_i)
(adapt normalize_s)
(adapt normalize_k)
(visit_imposs "update/visit_UVar")
val vtable = override_extend_t_anno vtable extend_t_anno
fun visit_MtVar this kctx x =
let
val vtable = cast this
fun normalize_mt a = #visit_mtype vtable this kctx a
in
try_retrieve_MtVar normalize_mt gctx kctx x
end
val vtable = override_visit_MtVar vtable visit_MtVar
fun visit_UVar this env (data as (x, r)) =
let
val vtable = cast this
in
load_uvar' (#visit_mtype vtable this env) (UVar data) x
end
val vtable = override_visit_UVar vtable visit_UVar
fun visit_MtAppI this kctx (data as (t, i)) =
let
val vtable = cast this
fun normalize_mt a = #visit_mtype vtable this kctx a
fun normalize_i a = #visit_idx vtable this kctx a
val t = normalize_mt t
val i = normalize_i i
in
case t of
MtAbsI (_, Bind (_, t), _) => normalize_mt (subst_i_mt i t)
| _ => MtAppI (t, i)
end
val vtable = override_visit_MtAppI vtable visit_MtAppI
fun visit_MtApp this kctx (data as (t1, t2)) =
let
val vtable = cast this
fun normalize_mt a = #visit_mtype vtable this kctx a
val t1 = normalize_mt t1
val t2 = normalize_mt t2
in
case t1 of
MtAbs (_, Bind (_, t1), _) => normalize_mt (subst_t_mt t2 t1)
| _ => MtApp (t1, t2)
end
val vtable = override_visit_MtApp vtable visit_MtApp
in
vtable
end
fun new_normalize_type_visitor a = new_type_visitor normalize_type_visitor_vtable a
fun normalize_mt gctx kctx b =
let
val visitor as (TypeVisitor vtable) = new_normalize_type_visitor gctx
in
#visit_mtype vtable visitor kctx b
end
fun normalize_t gctx kctx b =
let
val visitor as (TypeVisitor vtable) = new_normalize_type_visitor gctx
in
#visit_ty vtable visitor kctx b
end
fun normalize_constr_core gctx kctx b =
let
val visitor as (TypeVisitor vtable) = new_normalize_type_visitor gctx
in
#visit_constr_core vtable visitor kctx b
end
fun normalize_c gctx kctx b =
let
val visitor as (TypeVisitor vtable) = new_normalize_type_visitor gctx
in
#visit_constr_info vtable visitor kctx b
end
(* fun normalize_mt gctx kctx t = *)
(* let *)
(* val normalize_mt = normalize_mt gctx *)
(* (* val () = println $ "begin normalize_mt()" *) *)
(* val ret = *)
(* case t of *)
(* UVar (x, r) => load_uvar' (normalize_mt kctx) t x *)
(* | Unit r => Unit r *)
(* | Arrow (t1, d, t2) => Arrow (normalize_mt kctx t1, normalize_i d, normalize_mt kctx t2) *)
(* | TyArray (t, i) => TyArray (normalize_mt kctx t, normalize_i i) *)
(* | TyNat (i, r) => TyNat (normalize_i i, r) *)
(* | Prod (t1, t2) => Prod (normalize_mt kctx t1, normalize_mt kctx t2) *)
(* | UniI (s, bind, r) => UniI (normalize_s s, normalize_ibind normalize_mt kctx bind, r) *)
(* | MtVar x => try_retrieve_MtVar (normalize_mt kctx) gctx kctx x *)
(* | MtAbsI (s, bind, r) => MtAbsI (normalize_bs s, normalize_ibind normalize_mt kctx bind, r) *)
(* | MtAppI (t, i) => *)
(* let *)
(* val t = normalize_mt kctx t *)
(* val i = normalize_i i *)
(* in *)
(* case t of *)
(* MtAbsI (_, Bind (_, t), _) => normalize_mt kctx (subst_i_mt i t) *)
(* | _ => MtAppI (t, i) *)
(* end *)
(* | MtAbs (k, bind, r) => *)
(* let *)
(* val k = normalize_k k *)
(* val t = MtAbs (k, normalize_tbind normalize_mt kctx k bind, r) *)
(* in *)
(* t *)
(* end *)
(* | MtApp (t1, t2) => *)
(* let *)
(* val t1 = normalize_mt kctx t1 *)
(* val t2 = normalize_mt kctx t2 *)
(* in *)
(* case t1 of *)
(* MtAbs (_, Bind (_, t1), _) => normalize_mt kctx (subst_t_mt t2 t1) *)
(* | _ => MtApp (t1, t2) *)
(* end *)
(* | BaseType a => BaseType a *)
(* | TDatatype (dt, r) => *)
(* let *)
(* fun get_kind (Bind dt) = *)
(* let *)
(* val (tname_kinds, (bsorts, _)) = unfold_binds $ snd dt *)
(* in *)
(* (length tname_kinds, bsorts) *)
(* end *)
(* fun on_body kctx (bsorts, constr_decls) = *)
(* (bsorts, (map o map2_3) (normalize_constr_core gctx kctx) constr_decls) *)
(* val dt = normalize_tbind (normalize_tbinds (const_fun Type) id on_body) kctx (get_kind dt) $ dt *)
(* in *)
(* TDatatype (dt, r) *)
(* end *)
(* (* val () = println $ "end normalize_mt()" *) *)
(* in *)
(* ret *)
(* end *)
(* and normalize_constr_core gctx kctx c = *)
(* let *)
(* fun on_body kctx (t, is) = *)
(* let *)
(* val t = normalize_mt gctx kctx t *)
(* val is = map normalize_i is *)
(* in *)
(* (t, is) *)
(* end *)
(* in *)
(* normalize_ibinds normalize_s on_body kctx c *)
(* end *)
(* fun normalize_t gctx kctx t = *)
(* case t of *)
(* Mono t => Mono (normalize_mt gctx kctx t) *)
(* | Uni (Bind (name, t), r) => Uni (Bind (name, normalize_t gctx (add_kinding (fst name, Type) kctx) t), r) *)
(* fun normalize_c gctx kctx ((x, core) : mtype constr) : mtype constr = *)
(* let *)
(* val core = normalize_tbinds (const_fun Type) id (normalize_constr_core gctx) kctx core *)
(* in *)
(* (x, core) *)
(* end *)
fun normalize_k k = mapSnd (map normalize_bs) k
fun normalize_ke gctx kctx ((k, t) : kind_ext) = (normalize_k k, Option.map (normalize_mt gctx kctx) t)
fun normalize_ctx gctx ((sctx, kctx, cctx, tctx) : context) =
let
val sctx = map (mapSnd normalize_s) sctx
val kctx = foldr (fn ((name, ke), kctx) => (name, normalize_ke gctx kctx ke) :: kctx) [] kctx
val cctx = map (mapSnd (normalize_c gctx kctx)) cctx
val tctx = map (mapSnd (normalize_t gctx kctx)) tctx
in
(sctx, kctx, cctx, tctx)
end
fun normalize_sgntr gctx sg =
case sg of
Sig ctx => Sig $ normalize_ctx gctx ctx
| FunctorBind ((arg_name, arg), body) =>
let
val arg = normalize_ctx gctx arg
in
FunctorBind ((arg_name, arg), normalize_ctx (add_sigging (arg_name, arg) gctx) body)
end
fun normalize_sgntr_list gctx0 gctx =
fst $ foldr (fn ((name, sg), (acc, gctx)) => let val p = (name, normalize_sgntr gctx sg) in (p :: acc, add p gctx) end) ([], gctx0) gctx
fun normalize_gctx gctx0 gctx =
let
val gctx0 = Gctx.union (gctx0, gctx)
in
Gctx.map (normalize_sgntr gctx0) gctx
end
open VC
fun normalize_hyp h =
case h of
VarH (name, b) => VarH (name, normalize_bs b)
| PropH p => PropH (normalize_p p)
fun normalize_vc ((hyps, p) : vc) : vc =
let
val hyps = map normalize_hyp hyps
val p = normalize_p p
in
(hyps, p)
end
end