mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
Merge branch 'opt' of https://github.com/Z3Prover/z3 into opt
This commit is contained in:
commit
c96c4c7af7
2 changed files with 9 additions and 7 deletions
|
@ -106,6 +106,7 @@ tbv* tbv_manager::allocate(char const* bv) {
|
|||
if (*bv == '0') set(*result, i++, tbit::BIT_0);
|
||||
else if (*bv == '1') set(*result, i++, tbit::BIT_1);
|
||||
else if (*bv == '*') i++;
|
||||
else if (*bv == 'x') i++;
|
||||
else if (i == 0 && (*bv == ' ' || *bv == '\t')) ;
|
||||
else break;
|
||||
++bv;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue