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:
parent
7e4681d836
commit
05f166f736
18 changed files with 374 additions and 184 deletions
|
|
@ -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));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue