mirror of
https://github.com/Z3Prover/z3
synced 2025-07-25 21:57:00 +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
1 changed files with 1 additions and 1 deletions
|
@ -635,7 +635,7 @@ public:
|
||||||
|
|
||||||
static bool is_qfufnra(goal const& g) {
|
static bool is_qfufnra(goal const& g) {
|
||||||
is_non_qfufnra_functor p(g.m());
|
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 {
|
class is_qfufnra_probe : public probe {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue