Skip to content

Commit a47f30d

Browse files
committed
add: an implementation for unboxing user-defined predicates
1 parent 6d55087 commit a47f30d

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/chc/unbox.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ fn unbox_pred(pred: Pred) -> Pred {
4242
Pred::Known(pred) => Pred::Known(pred),
4343
Pred::Var(pred) => Pred::Var(pred),
4444
Pred::Matcher(pred) => unbox_matcher_pred(pred),
45+
Pred::UserDefined(pred) => Pred::UserDefined(pred),
4546
}
4647
}
4748

0 commit comments

Comments
 (0)