3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-04 23:13:57 +00:00

optimization: return integer consts for strlen() over constant strings

This commit is contained in:
Murphy Berzish 2015-09-07 19:51:52 -04:00
parent 9b04f1570f
commit 799fd07c85
2 changed files with 13 additions and 4 deletions

View file

@ -34,6 +34,8 @@ namespace smt {
// TODO
protected:
bool search_started;
arith_util m_autil;
str_util m_strutil;
protected:
virtual bool internalize_atom(app * atom, bool gate_ctx);
virtual bool internalize_term(app * term);
@ -61,7 +63,6 @@ namespace smt {
public:
theory_str(ast_manager & m);
virtual ~theory_str();
arith_util m_autil;
protected:
void attach_new_th_var(enode * n);
};