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:
parent
1a4e8f89bd
commit
2e627e78bc
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue