3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-11-01 12:07:51 +00:00

fix merge issues

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2025-10-15 18:50:59 +02:00
parent 2e7f80f597
commit ce60a8c5c5
2 changed files with 316 additions and 301 deletions

View file

@ -34,7 +34,7 @@ where the signature is defined in finite_set_decl_plugin.h.
*/
class finite_set_rewriter {
finite_set_util m_util;
public:
public:
finite_set_rewriter(ast_manager & m, params_ref const & p = params_ref()):
m_util(m) {
}
@ -50,6 +50,8 @@ class finite_set_rewriter {
br_status mk_intersect(unsigned num_args, expr * const * args, expr_ref & result);
br_status mk_difference(expr * arg1, expr * arg2, expr_ref & result);
br_status mk_subset(expr * arg1, expr * arg2, expr_ref & result);
br_status mk_singleton(expr *arg1, expr_ref &result);
br_status mk_in(expr *arg1, expr *arg2, expr_ref &result);
};