mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 09:35:32 +00:00
re-enable LRA after fixing dispatch for LRA in smt-setup
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
49d2b86d35
commit
9b3e2a9afe
3 changed files with 23 additions and 4 deletions
|
@ -72,5 +72,17 @@ tactic * mk_qflra_tactic(ast_manager & m, params_ref const & p) {
|
|||
// using_params(mk_smt_tactic(), pivot_p)),
|
||||
// p);
|
||||
|
||||
#if 0
|
||||
|
||||
params_ref simplex_0, simplex_1, simplex_2;
|
||||
simplex_0.set("lp.simplex_strategy", 0);
|
||||
simplex_1.set("lp.simplex_strategy", 1);
|
||||
simplex_2.set("lp.simplex_strategy", 1);
|
||||
|
||||
tactic* lp_par = par_or(using_params(mk_smt_tactic(), simplex_0),
|
||||
using_params(mk_smt_tactic(), simplex_1),
|
||||
using_params(mk_smt_tactic(), simplex_2));
|
||||
|
||||
#endif
|
||||
return using_params(using_params(mk_smt_tactic(), pivot_p), p);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue