]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/matita/matitaEngine.mli
alias declarations are now put in the .moo file.
[helm.git] / helm / matita / matitaEngine.mli
index 249bad8f487bedc80240b247b3c508445307691c..c94f9748ef927c998a95e2185ac81e66160fe1f3 100644 (file)
 
 exception Drop
 
-val eval_string: MatitaTypes.status ref -> string -> unit
+val eval_string: (string -> unit) -> MatitaTypes.status ref -> string -> unit
 
 val eval_from_stream: 
+  (string -> unit) ->
   MatitaTypes.status ref -> char Stream.t -> 
     (MatitaTypes.status ->
     (CicAst.term,TacticAst.obj,string) TacticAst.statement -> unit) ->
     unit
 
 val eval_from_stream_greedy: 
+  (string -> unit) ->
   MatitaTypes.status ref-> char Stream.t -> 
     (MatitaTypes.status ->
     (CicAst.term,TacticAst.obj,string) TacticAst.statement -> unit) ->
     unit
 
 val eval_ast: 
+  (string -> unit) ->
   MatitaTypes.status ->
     (CicAst.term,TacticAst.obj,string) TacticAst.statement ->
     MatitaTypes.status
 
 val eval:
+  (string -> unit) ->
   MatitaTypes.status -> (Cic.term,Cic.obj,string) TacticAst.statement ->
     MatitaTypes.status