definition:
|
readRules :: String -> IO [TRS.Rule]
readRules prog = do
putStrLn $ "Reading rules from Curry program " ++ prog ++ "..."
flatprog <- readFlatCurry prog
return (fst (curry2rules flatprog))
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
----------------------------------------------------------------------------
-- Reading rules from a (Flat)Curry file:
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> _}
|
name:
|
readRules
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> Prelude.IO [TRS.Rule]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|