3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-15 21:38:44 +00:00

filter tactic on proofs and cores

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2015-05-10 14:55:28 -07:00
parent 1a4e8f89bd
commit 2e627e78bc

View file

@ -635,7 +635,7 @@ public:
static bool is_qfufnra(goal const& g) {
is_non_qfufnra_functor p(g.m());
return !test(g, p) && p.has_nonlinear();
return !g.proofs_enabled() && !g.unsat_core_enabled() && !test(g, p) && p.has_nonlinear();
}
class is_qfufnra_probe : public probe {