SSTG-0.1.1.7: STG Symbolic Execution

Safe HaskellNone
LanguageHaskell2010

SSTG.Utils.FileIO

Description

File IO

Synopsis

Documentation

writeState :: FilePath -> State -> IO () Source #

Write State to a target file.

readState :: FilePath -> IO (Maybe State) Source #

Recover a State from a stored file. Nothing denotes failure.

writePrettyState :: FilePath -> ([LiveState], [DeadState]) -> IO () Source #

Write a pretty-printed state to a file. Do not use this for execution State recovery; use writeState instead.