You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
a = sbx(0)
b = sbx(10889035761754297042307131028518889062407)
print_ln("popcnt is :%s", b.popcnt())`
Hello, I found in my code that b's popcnt is 3, which indicates that only the last few bits of b is used in popcnt. So how can I compare b with a, or how can I tell whether b is zero if b is a 256 sbits?
The text was updated successfully, but these errors were encountered:
`sbx = sbits.get_type(256)
a = sbx(0)
b = sbx(10889035761754297042307131028518889062407)
print_ln("popcnt is :%s", b.popcnt())`
Hello, I found in my code that b's popcnt is 3, which indicates that only the last few bits of b is used in popcnt. So how can I compare b with a, or how can I tell whether b is zero if b is a 256 sbits?
The text was updated successfully, but these errors were encountered: