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:
parent
0ee79182d4
commit
97af74d8cb
3 changed files with 2 additions and 8 deletions
|
@ -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 "";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue