mirror of
https://github.com/Z3Prover/z3
synced 2025-08-13 14:40:55 +00:00
cube and conquer parallel tactic
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
6df3e47b07
commit
59ea11b1a3
7 changed files with 449 additions and 321 deletions
|
@ -47,9 +47,14 @@ public:
|
|||
|
||||
virtual ~pb2bv_solver() {}
|
||||
|
||||
virtual solver* translate(ast_manager& m, params_ref const& p) {
|
||||
virtual solver* translate(ast_manager& dst_m, params_ref const& p) {
|
||||
flush_assertions();
|
||||
return alloc(pb2bv_solver, m, p, m_solver->translate(m, p));
|
||||
solver* result = alloc(pb2bv_solver, dst_m, p, m_solver->translate(dst_m, p));
|
||||
if (mc0()) {
|
||||
ast_translation tr(m, dst_m);
|
||||
result->set_model_converter(mc0()->translate(tr));
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
virtual void assert_expr(expr * t) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue