3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-07-01 12:58:54 +00:00

add py_value to selected classes in python bindings, add mode for input-assertion based lookahead solving

This commit is contained in:
Nikolaj Bjorner 2025-01-04 13:40:49 -08:00
parent 7e4681d836
commit 05f166f736
18 changed files with 374 additions and 184 deletions

View file

@ -32,6 +32,8 @@ namespace sls {
}
bool operator==(bvect const& a, bvect const& b) {
if (a.nw == 1)
return a[0] == b[0];
SASSERT(a.nw > 0);
return 0 == memcmp(a.data(), b.data(), a.nw * sizeof(digit_t));
}