3
0
Fork 0
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:
Nikolaj Bjorner 2018-01-15 17:20:19 -08:00
parent 3047d930e1
commit ae728374c8
3 changed files with 25 additions and 5 deletions

View file

@ -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) {