]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/matita/matitaEngine.mli
ocaml 3.09 transition
[helm.git] / helm / matita / matitaEngine.mli
index 2253748d95b61efd1f5a060743aed50c18e23e03..e8cdbad0e18cff1f9efe869fe2b8482b11aaed7b 100644 (file)
@@ -27,11 +27,6 @@ exception Drop
 exception UnableToInclude of string
 exception IncludedFileNotCompiled of string
 
-type statement =
-  (CicNotationPt.term, CicNotationPt.term, GrafiteAst.reduction, GrafiteAst.obj,
-   string)
-  GrafiteAst.statement
-
 (* heavy checks slow down the compilation process but give you some interesting
  * infos like if the theorem is a duplicate *)
 val eval_string:
@@ -45,7 +40,7 @@ val eval_from_stream:
   ?include_paths:string list ->
   ?clean_baseuri:bool ->
   MatitaTypes.status ref -> Ulexing.lexbuf -> 
-  (MatitaTypes.status -> statement -> unit) ->
+  (MatitaTypes.status -> GrafiteParser.statement -> unit) ->
     unit
 
 val eval_from_stream_greedy: 
@@ -53,7 +48,7 @@ val eval_from_stream_greedy:
   ?include_paths:string list ->
   ?clean_baseuri:bool ->
   MatitaTypes.status ref-> Ulexing.lexbuf -> 
-  (MatitaTypes.status -> statement -> unit) ->
+  (MatitaTypes.status -> GrafiteParser.statement -> unit) ->
     unit
 
 val eval_ast: 
@@ -61,7 +56,7 @@ val eval_ast:
   ?include_paths:string list ->
   ?clean_baseuri:bool ->
   MatitaTypes.status ->
-    statement ->
+    GrafiteParser.statement ->
     MatitaTypes.status
 
 val initial_status: MatitaTypes.status lazy_t