mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 09:35:32 +00:00
disable buggy clausification in ba_solver
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
3047d930e1
commit
ae728374c8
3 changed files with 25 additions and 5 deletions
|
@ -193,6 +193,8 @@ void solver::assert_expr(expr* f, expr* t) {
|
|||
expr_ref fml(f, m);
|
||||
expr_ref a(t, m);
|
||||
if (m_enforce_model_conversion) {
|
||||
IF_VERBOSE(0, verbose_stream() << "enforce model conversion\n";);
|
||||
exit(0);
|
||||
model_converter_ref mc = get_model_converter();
|
||||
mc = concat(mc0(), mc.get());
|
||||
if (mc) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue