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

add Length function to theory of strings

This commit is contained in:
Murphy Berzish 2015-09-07 16:13:48 -04:00
parent 7f0d9157ac
commit dc86385e7f
4 changed files with 62 additions and 2 deletions

View file

@ -38,6 +38,14 @@ namespace smt {
virtual void new_eq_eh(theory_var, theory_var);
virtual void new_diseq_eh(theory_var, theory_var);
virtual theory* mk_fresh(context*) { return alloc(theory_str, get_manager()); }
virtual void init_search_eh();
virtual void relevant_eh(app * n);
virtual void assign_eh(bool_var v, bool is_true);
virtual void push_scope_eh();
virtual final_check_status final_check_eh();
public:
theory_str(ast_manager& m);
virtual ~theory_str();