summaryrefslogtreecommitdiff
path: root/src/expr/node.h
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2019-09-27 21:01:54 -0500
committerGitHub <noreply@github.com>2019-09-27 21:01:54 -0500
commite25f99329c9905c67a565481dcb0d6a4499a7557 (patch)
treea85e7f998c4d4e722c80c8bcdedbc6292432bdb2 /src/expr/node.h
parentb2447df23d473184a7881ead02aa0b1e8f547d53 (diff)
Support smt2 language "match" term (#3258)
Diffstat (limited to 'src/expr/node.h')
-rw-r--r--src/expr/node.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/expr/node.h b/src/expr/node.h
index f0ee7a56c..b8a665f0c 100644
--- a/src/expr/node.h
+++ b/src/expr/node.h
@@ -468,7 +468,8 @@ public:
inline bool isClosure() const {
assertTNodeNotExpired();
return getKind() == kind::LAMBDA || getKind() == kind::FORALL
- || getKind() == kind::EXISTS || getKind() == kind::CHOICE;
+ || getKind() == kind::EXISTS || getKind() == kind::CHOICE
+ || getKind() == kind::MATCH_BIND_CASE;
}
/**
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback