3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-07 08:21:56 +00:00

fix bugs reported by Nuno Lopes

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2013-06-04 12:55:35 -07:00
parent aa0d921240
commit b6d9d8a601
3 changed files with 11 additions and 4 deletions

View file

@ -1417,6 +1417,7 @@ namespace fm {
fm(ast_manager & _m):
m(_m),
m_is_variable(0),
m_allocator("fm-elim"),
m_util(m),
m_bvar2expr(m),
@ -1424,6 +1425,9 @@ namespace fm {
m_new_fmls(m),
m_inconsistent_core(m) {
m_cancel = false;
updt_params();
m_counter = 0;
m_inconsistent = false;
}
~fm() {