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
importqualifiedBoolectorasBimportControl.Monad.IO.ClassimportControl.Exception (assert)
importControl.Concurrentmain::IO()
main =do-- Create new Boolector state with a 1s timeout
bs <-B.newBoolectorState (Just1)
B.evalBoolector bs $do-- Create a 8-bit bit-vector
u8 <-B.bitvecSort 8-- Create a constant value and two variables of sort u8
c <-B.unsignedInt 35 u8
B.uext c 4294967289-- Crashes in this case but is fine with, say, 87; 88 crashes with > 0 bounds checkreturn()
The text was updated successfully, but these errors were encountered:
@mlfbrown discovered this
The text was updated successfully, but these errors were encountered: