3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00

add set-has-size to API and python bindings

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-04-16 15:38:14 -07:00
parent d4410d0872
commit 502b29c424
4 changed files with 15 additions and 1 deletions

View file

@ -621,7 +621,7 @@ namespace smt {
if (!ctx.is_relevant(n))
continue;
if (is_store(n) || is_const(n) || is_default(n))
if (is_store(n) || is_const(n) || is_default(n) || is_set_has_size(n))
return false;
}
return true;