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
@@ -921,6 +941,7 @@ copySlice _ _ _ _ _ = Left "CopySlice with a symbolically sized region not curre
-- | Unrolls an exponentiation into a series of multiplications
expandExp :: Expr EWord -> W256 -> Err Builder
expandExp base expnt
+ | expnt == 0 = pure one
| expnt == 1 = exprToSMT base
| otherwise = do
b <- exprToSMT base
As reported by @charles-cooper in chat. Thanks!
The text was updated successfully, but these errors were encountered: