liquid-fixpoint-0.7.0.3: tests/smt2/Smt.hs
-- just fire up ghci, :load Smt.hs and run `go file.smt2`
module Smt where
import qualified Data.Text.Lazy.IO as T
import Language.Fixpoint.Types.Config (SMTSolver (..))
import Language.Fixpoint.Parse
import Language.Fixpoint.SmtLib2
import System.Environment
main = do f:_ <- getArgs
_ <- go f
return ()
runFile f
= readFile f >>= runString
runString str
= runCommands $ rr str
runCommands cmds
= do me <- makeContext Z3
mapM_ (T.putStrLn . smt2) cmds
zs <- mapM (command me) cmds
return zs