3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

fix #3917 remove non-native mode for recfun

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-04-11 14:19:26 -07:00
parent 0ee79182d4
commit 97af74d8cb
3 changed files with 2 additions and 8 deletions

View file

@ -73,10 +73,11 @@ void rule_properties::check_quantifier_free() {
}
static const std::string qkind_str(quantifier_kind qkind) {
switch(qkind) {
switch (qkind) {
case forall_k: return "FORALL";
case exists_k: return "EXISTS";
case lambda_k: return "LAMBDA";
default: UNREACHABLE(); return "";
}
}