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

ctx_dep_analysis() done, final_check() WIP

This commit is contained in:
Murphy Berzish 2015-11-06 13:43:54 -05:00
parent 9f01b9dc92
commit 4a8ee88461
2 changed files with 451 additions and 70 deletions

View file

@ -153,6 +153,10 @@ namespace smt {
void classify_ast_by_type_in_positive_context(std::map<expr*, int> & varMap,
std::map<expr*, int> & concatMap, std::map<expr*, int> & unrollMap);
expr * get_alias_index_ast(std::map<expr*, expr*> & aliasIndexMap, expr * node);
expr * getMostLeftNodeInConcat(expr * node);
expr * getMostRightNodeInConcat(expr * node);
void dump_assignments();
public:
theory_str(ast_manager & m);