3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-25 20:46:01 +00:00

bug fixes in uninitialized variables

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-11-11 12:09:33 -08:00
parent d7f9a3b37d
commit 6f273e7b8f
4 changed files with 11 additions and 2 deletions

View file

@ -33,7 +33,8 @@ namespace sat {
solver & s;
int64 m_counter;
random_gen m_rand;
unsigned m_calls;
// config
bool m_asymm_branch;
bool m_asymm_branch_all;
@ -63,6 +64,8 @@ namespace sat {
void collect_statistics(statistics & st) const;
void reset_statistics();
void init_search() { m_calls = 0; }
inline void dec(unsigned c) { m_counter -= c; }
};