3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-27 16:38:45 +00:00

Fix term-ite models in theory_fpa. Fixes #2857.

This commit is contained in:
Christoph M. Wintersteiger 2020-01-13 19:24:31 +00:00
parent 0e096c55a9
commit 77689ed002
No known key found for this signature in database
GPG key ID: BCF6360F86294467
2 changed files with 32 additions and 1 deletions

View file

@ -196,6 +196,10 @@ namespace smt {
app_ref wrap(expr * e);
app_ref unwrap(expr * e, sort * s);
enode* ensure_enode(expr* e);
enode* get_root(expr* a) { return ensure_enode(a)->get_root(); }
app* get_ite_value(expr* e);
};
};