3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-05 02:40:24 +00:00

add recfuns to Java #4820

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-11-25 12:24:46 -08:00
parent 6aba325cea
commit d6a5ef4343
6 changed files with 71 additions and 17 deletions

View file

@ -112,11 +112,6 @@ namespace sat {
}
}
if (n == 3 && c[0] == literal(9357, true) && c[1] == literal(25, true) && c[2] == literal(8691, false)) {
SASSERT(false);
UNREACHABLE();
}
if (!st.is_sat()) {
for (char ch : m_theory[st.get_th()])
buffer[len++] = ch;
@ -147,6 +142,11 @@ namespace sat {
buffer[len++] = '\n';
m_out->write(buffer, len);
if (n == 3 && c[0] == literal(9357, true) && c[1] == literal(25, true) && c[2] == literal(8691, false)) {
m_out->flush();
SASSERT(false);
UNREACHABLE();
}
}
void drat::dump_activity() {