mirror of
https://github.com/Z3Prover/z3
synced 2025-07-30 16:03:16 +00:00
use mk_ite utility instead of custom local function
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
a2ad90cba1
commit
93d5e3f28e
1 changed files with 1 additions and 1 deletions
|
@ -1002,7 +1002,7 @@ void bit_blaster_tpl<Cfg>::mk_ext_rotate_left_right(unsigned sz, expr * const *
|
|||
out.reset();
|
||||
for (unsigned j = 0; j < sz; ++j) {
|
||||
unsigned src = (Left ? (sz + j - p) : (j + p)) % sz;
|
||||
mk_ite(bit_i, out_bits.get(src), out_bits.get(j), tmp));
|
||||
mk_ite(bit_i, out_bits.get(src), out_bits.get(j), tmp);
|
||||
out.push_back(tmp);
|
||||
}
|
||||
out_bits.reset();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue