mirror of
https://github.com/Z3Prover/z3
synced 2025-08-11 05:30:51 +00:00
including all touched tautology literals each round
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
a954ab7d8d
commit
f2dfc0dc24
4 changed files with 26 additions and 24 deletions
|
@ -29,6 +29,7 @@ Notes:
|
|||
#include "tactic/aig/aig_tactic.h"
|
||||
#include "sat/tactic/sat_tactic.h"
|
||||
#include "tactic/portfolio/parallel_tactic.h"
|
||||
#include "tactic/portfolio/parallel_params.hpp"
|
||||
#include "ackermannization/ackermannize_bv_tactic.h"
|
||||
|
||||
#define MEMLIMIT 300
|
||||
|
@ -128,11 +129,11 @@ static tactic * mk_qfbv_tactic(ast_manager& m, params_ref const & p, tactic* sat
|
|||
|
||||
|
||||
tactic * mk_qfbv_tactic(ast_manager & m, params_ref const & p) {
|
||||
|
||||
parallel_params pp(p);
|
||||
bool use_parallel = pp.enable();
|
||||
tactic * new_sat = cond(mk_produce_proofs_probe(),
|
||||
and_then(mk_simplify_tactic(m), mk_smt_tactic()),
|
||||
//mk_parallel_tactic(m, p));
|
||||
mk_sat_tactic(m));
|
||||
use_parallel ? mk_parallel_tactic(m, p): mk_sat_tactic(m));
|
||||
|
||||
return mk_qfbv_tactic(m, p, new_sat, mk_smt_tactic());
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue