summaryrefslogtreecommitdiff
path: root/src/elab_util.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-02-24 12:01:24 -0500
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-02-24 12:01:24 -0500
commit7b71af9c790abcff2bfe0a16a417a1023776351d (patch)
tree9dd05f2dad9cc6d4e0e33af1e8f1cf0a1def9f15 /src/elab_util.sml
parentbb4aed8e1304d5cb3cbe7ec5fdcf95344e9aa2d5 (diff)
Switch to TDisjoint from CDisjoint; still need to implement obligation generation at EDisjoint uses
Diffstat (limited to 'src/elab_util.sml')
-rw-r--r--src/elab_util.sml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/elab_util.sml b/src/elab_util.sml
index be1c9459..e2dd0ce6 100644
--- a/src/elab_util.sml
+++ b/src/elab_util.sml
@@ -136,14 +136,14 @@ fun mapfoldB {kind = fk, con = fc, bind} =
S.map2 (mfc (bind (ctx, RelC (x, k))) c,
fn c' =>
(TCFun (e, x, k', c'), loc)))
- | CDisjoint (ai, c1, c2, c3) =>
+ | TDisjoint (c1, c2, c3) =>
S.bind2 (mfc ctx c1,
fn c1' =>
S.bind2 (mfc ctx c2,
fn c2' =>
S.map2 (mfc ctx c3,
fn c3' =>
- (CDisjoint (ai, c1', c2', c3'), loc))))
+ (TDisjoint (c1', c2', c3'), loc))))
| TRecord c =>
S.map2 (mfc ctx c,
fn c' =>