mirror of
https://github.com/Z3Prover/z3
synced 2026-02-20 15:34:41 +00:00
add finite_set to quantifieed theories in smt_setup, fix type signature for map-inverse axioms
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
c0ca3b5a0a
commit
2f06bcc731
5 changed files with 65 additions and 57 deletions
|
|
@ -201,8 +201,8 @@ public:
|
|||
return m_manager.mk_app(m_fid, OP_FINITE_SET_MAP, arr, set);
|
||||
}
|
||||
|
||||
app *mk_map_inverse(expr *arr, expr *a, expr *b) {
|
||||
return m_manager.mk_app(m_fid, OP_FINITE_SET_MAP_INVERSE, arr, b, a);
|
||||
app *mk_map_inverse(expr *f, expr *x, expr *b) {
|
||||
return m_manager.mk_app(m_fid, OP_FINITE_SET_MAP_INVERSE, f, x, b);
|
||||
}
|
||||
|
||||
app * mk_filter(expr* arr, expr* set) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue