X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fmatita%2FmatitaEngine.mli;h=2253748d95b61efd1f5a060743aed50c18e23e03;hb=27bd932eeab546b36d2750bd6f4d047ebf2964f6;hp=6c8b8660518eb70cf07d5ae20e6a0c3f839cb5cf;hpb=2d03016df7f68c81dd0f25bf18a792a80b412702;p=helm.git diff --git a/helm/matita/matitaEngine.mli b/helm/matita/matitaEngine.mli index 6c8b86605..2253748d9 100644 --- a/helm/matita/matitaEngine.mli +++ b/helm/matita/matitaEngine.mli @@ -28,7 +28,9 @@ exception UnableToInclude of string exception IncludedFileNotCompiled of string type statement = - (CicNotationPt.term, GrafiteAst.obj, string) GrafiteAst.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 *) @@ -42,7 +44,7 @@ val eval_from_stream: ?do_heavy_checks:bool -> ?include_paths:string list -> ?clean_baseuri:bool -> - MatitaTypes.status ref -> char Stream.t -> + MatitaTypes.status ref -> Ulexing.lexbuf -> (MatitaTypes.status -> statement -> unit) -> unit @@ -50,7 +52,7 @@ val eval_from_stream_greedy: ?do_heavy_checks:bool -> ?include_paths:string list -> ?clean_baseuri:bool -> - MatitaTypes.status ref-> char Stream.t -> + MatitaTypes.status ref-> Ulexing.lexbuf -> (MatitaTypes.status -> statement -> unit) -> unit