3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-03-04 12:40:23 +00:00

remove references to set_has_size

This commit is contained in:
Nikolaj Bjorner 2025-11-26 13:57:24 -08:00
parent fab414a7ab
commit ed8b92411e
4 changed files with 1 additions and 19 deletions

View file

@ -1037,8 +1037,6 @@ typedef enum {
Z3_OP_SET_SUBSET,
Z3_OP_AS_ARRAY,
Z3_OP_ARRAY_EXT,
Z3_OP_SET_HAS_SIZE,
Z3_OP_SET_CARD,
// Bit-vectors
Z3_OP_BNUM = 0x400,
@ -3316,12 +3314,6 @@ extern "C" {
*/
Z3_ast Z3_API Z3_mk_as_array(Z3_context c, Z3_func_decl f);
/**
\brief Create predicate that holds if Boolean array \c set has \c k elements set to true.
def_API('Z3_mk_set_has_size', AST, (_in(CONTEXT), _in(AST), _in(AST)))
*/
Z3_ast Z3_API Z3_mk_set_has_size(Z3_context c, Z3_ast set, Z3_ast k);
/**@}*/