mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
fix regression
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
8fb92e6312
commit
759d80dfe3
3 changed files with 6 additions and 4 deletions
|
@ -96,11 +96,11 @@ Notes:
|
|||
{}
|
||||
|
||||
void operator()(vect const& in, vect& out) {
|
||||
out.reset();
|
||||
out.append(in);
|
||||
if (in.size() <= 1) {
|
||||
return;
|
||||
}
|
||||
out.reset();
|
||||
out.append(in);
|
||||
while (!is_power_of2(out.size())) {
|
||||
out.push_back(m_ext.mk_default());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue