mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 11:55:51 +00:00
disable aig tactic in inc_sat_solver (it can blow up the size of formulas significantly without sharing) and fix configuration update bug for optimization context exposed in example by Corina
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
95fe9a3a68
commit
c1a6163bda
4 changed files with 8 additions and 2 deletions
|
@ -383,6 +383,9 @@ void cmd_context::global_params_updated() {
|
|||
p.set_bool("auto_config", false);
|
||||
m_solver->updt_params(p);
|
||||
}
|
||||
if (m_opt) {
|
||||
get_opt()->updt_params(gparams::get_module("opt"));
|
||||
}
|
||||
}
|
||||
|
||||
void cmd_context::set_produce_models(bool f) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue