X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fmatita%2FmatitaEngine.mli;h=280b6c8f47d273a6cac415b3feb8eb52e487e6c4;hb=51d82e0a8a4d4ed86d2646edb2654e565ac34a82;hp=6b9f235cd6ad6628d20aaa6632f0633a237a9585;hpb=6b5e1d495c61f459738187e8d71efadb162abdbe;p=helm.git diff --git a/helm/matita/matitaEngine.mli b/helm/matita/matitaEngine.mli index 6b9f235cd..280b6c8f4 100644 --- a/helm/matita/matitaEngine.mli +++ b/helm/matita/matitaEngine.mli @@ -25,20 +25,25 @@ exception Drop 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 *) val eval_string: ?do_heavy_checks:bool -> ?include_paths:string list -> + ?clean_baseuri:bool -> MatitaTypes.status ref -> string -> unit val eval_from_stream: ?do_heavy_checks:bool -> ?include_paths:string list -> + ?clean_baseuri:bool -> MatitaTypes.status ref -> char Stream.t -> (MatitaTypes.status -> statement -> unit) -> unit @@ -46,6 +51,7 @@ val eval_from_stream: val eval_from_stream_greedy: ?do_heavy_checks:bool -> ?include_paths:string list -> + ?clean_baseuri:bool -> MatitaTypes.status ref-> char Stream.t -> (MatitaTypes.status -> statement -> unit) -> unit @@ -53,6 +59,7 @@ val eval_from_stream_greedy: val eval_ast: ?do_heavy_checks:bool -> ?include_paths:string list -> + ?clean_baseuri:bool -> MatitaTypes.status -> statement -> MatitaTypes.status