3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-05 07:23:58 +00:00

attempt to clean up out-of-scope variables more, still crashing

This commit is contained in:
Murphy Berzish 2015-12-01 19:19:00 -05:00
parent c44d49b625
commit 52f0277c99
2 changed files with 48 additions and 6 deletions

View file

@ -63,9 +63,9 @@ namespace smt {
};
protected:
bool search_started;
int sLevel;
arith_util m_autil;
str_util m_strutil;
int sLevel;
str_value_factory * m_factory;
@ -75,6 +75,8 @@ namespace smt {
int tmpStringVarCount;
int tmpXorVarCount;
int tmpLenTestVarCount;
int tmpValTestVarCount;
std::map<std::pair<expr*, expr*>, std::map<int, expr*> > varForBreakConcat;
bool avoidLoopCut;