mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 11:55:51 +00:00
use offset/length for fixed slices to allow super-slices
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
80184c6ee2
commit
6b12bd6dcd
5 changed files with 33 additions and 24 deletions
|
@ -147,7 +147,7 @@ namespace polysat {
|
|||
std::function<void(euf::enode*, euf::enode*)> consume = [&](auto* a, auto* b) {
|
||||
eqs.push_back({ a, b });
|
||||
};
|
||||
explain_fixed(o.v, o.lo, o.hi, o.value, consume);
|
||||
explain_fixed(o.v, o, consume);
|
||||
}
|
||||
else if (d.is_offset_claim()) {
|
||||
auto const& offs = d.offset();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue