mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 02:15:19 +00:00
disable sat solver when proofs are turned on. Fixes issue #768
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
fa1a0aa7ba
commit
ba942af5a8
|
@ -42,7 +42,6 @@ Notes:
|
|||
#include "ast_smt_pp.h"
|
||||
#include "filter_model_converter.h"
|
||||
#include "ast_pp_util.h"
|
||||
#include "inc_sat_solver.h"
|
||||
#include "qsat.h"
|
||||
|
||||
namespace opt {
|
||||
|
@ -595,6 +594,9 @@ namespace opt {
|
|||
if (opt_params(m_params).priority() == symbol("pareto")) {
|
||||
return;
|
||||
}
|
||||
if (m.proofs_enabled()) {
|
||||
return;
|
||||
}
|
||||
m_params.set_bool("minimize_core_partial", true);
|
||||
m_params.set_bool("minimize_core", true);
|
||||
m_sat_solver = mk_inc_sat_solver(m, m_params);
|
||||
|
|
Loading…
Reference in a new issue