definition:
|
showEvent :: Event -> String
showEvent (Demand argNr eventID parent pred) =
(show eventID) ++ '\t':'D':(showInt argNr) ++ '\t':(showInt parent) ++
'\t':showInt pred
showEvent (Value arity constr eventID parent pred) =
(show eventID) ++ '\t':'V':(showInt arity) ++ '\t':(showInt parent) ++
'\t':(showInt pred) ++ (show constr)
showEvent (Fun eventID parent pred) =
(show eventID) ++ '\t':'F':(showInt parent) ++ '\t':(showInt pred)
showEvent (LogVar eventID parent pred) =
(show eventID) ++ '\t':'L':(showInt parent) ++ '\t':(showInt pred)
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
failfree:
|
{Demand,Fun,LogVar,Value}
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({Demand}) |-> _ || ({Value}) |-> _ || ({Fun}) |-> _ || ({LogVar}) |-> _}
|
name:
|
showEvent
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Event -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|