mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 08:35:31 +00:00
connect call to zero extend
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
38771defa1
commit
8cc146e727
1 changed files with 1 additions and 1 deletions
|
@ -502,7 +502,7 @@ namespace polysat {
|
|||
pdd core::mk_zero_extend(unsigned sz, pdd const& p) {
|
||||
if (p.is_val())
|
||||
return value(p.val(), p.manager().power_of_2() + sz);
|
||||
throw default_exception("nyi zero_extend");
|
||||
return s.mk_zero_extend(sz, p);
|
||||
}
|
||||
|
||||
pdd core::mk_extract(unsigned hi, unsigned lo, pdd const& p) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue