mirror of
https://github.com/Z3Prover/z3
synced 2025-10-05 07:23:58 +00:00
fix compilation errors
This commit is contained in:
parent
ed7b343822
commit
e2901fff1e
2 changed files with 14 additions and 13 deletions
|
@ -24,6 +24,7 @@ Revision History:
|
|||
#include"smt_model_generator.h"
|
||||
#include"arith_decl_plugin.h"
|
||||
#include<set>
|
||||
#include<stack>
|
||||
|
||||
namespace smt {
|
||||
|
||||
|
@ -71,8 +72,8 @@ namespace smt {
|
|||
int tmpXorVarCount;
|
||||
std::map<std::pair<expr*, expr*>, std::map<int, expr*> > varForBreakConcat;
|
||||
|
||||
bool avoidLoopCut = true;
|
||||
bool loopDetected = false;
|
||||
bool avoidLoopCut;
|
||||
bool loopDetected;
|
||||
std::map<expr*, std::stack<T_cut *> > cut_var_map;
|
||||
protected:
|
||||
void assert_axiom(expr * e);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue