definition:
|
writeSMTDump :: String -> [Command] -> IO ()
writeSMTDump fn cmds = do
cdir <- getCurrentDirectory
let dumpDir = cdir </> ".smt"
createDirectoryIfMissing True dumpDir
dumpFilePath <- getUniqueFP dumpDir (takeBaseName fn) "smt2"
writeSMT dumpFilePath cmds
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Dump an SMT-LIB script to the hidden folder .smt in the current directory
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
writeSMTDump
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> [Language.SMTLIB.Types.Command] -> Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|