mirror of
https://github.com/Z3Prover/z3
synced 2025-08-12 06:00:53 +00:00
more consistent use of parallel mode when enabled, takes care of example test from #1898 that didn't trigger parallel mode
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
d9e77ba443
commit
cf4bf7b591
20 changed files with 73 additions and 65 deletions
|
@ -68,7 +68,7 @@ tactic * mk_qflra_tactic(ast_manager & m, params_ref const & p) {
|
|||
#endif
|
||||
|
||||
// return using_params(or_else(mip,
|
||||
// using_params(mk_smt_tactic(), pivot_p)),
|
||||
// using_params(mk_smt_tactic(m), pivot_p)),
|
||||
// p);
|
||||
|
||||
#if 0
|
||||
|
@ -82,7 +82,7 @@ tactic * mk_qflra_tactic(ast_manager & m, params_ref const & p) {
|
|||
using_params(mk_smt_tactic(), simplex_1),
|
||||
using_params(mk_smt_tactic(), simplex_2));
|
||||
#else
|
||||
return using_params(using_params(mk_smt_tactic(), pivot_p), p);
|
||||
return using_params(using_params(mk_smt_tactic(m), pivot_p), p);
|
||||
#endif
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue