X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fmatita%2FmatitaEngine.mli;h=e8cdbad0e18cff1f9efe869fe2b8482b11aaed7b;hb=97c2d258a5c524eb5c4b85208899d80751a2c82f;hp=2253748d95b61efd1f5a060743aed50c18e23e03;hpb=33b362600b2756274258f06f26a08c918ec28062;p=helm.git diff --git a/helm/matita/matitaEngine.mli b/helm/matita/matitaEngine.mli index 2253748d9..e8cdbad0e 100644 --- a/helm/matita/matitaEngine.mli +++ b/helm/matita/matitaEngine.mli @@ -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