X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fmatita%2FmatitaEngine.mli;h=7ceb965e9959c68e5ca8404dda60481039515abd;hb=619a3a478a4f6b0a50782b620009f6a141c30a53;hp=249bad8f487bedc80240b247b3c508445307691c;hpb=29a3bd5d160f31873236c93a008a9e4fd31c305e;p=helm.git diff --git a/helm/matita/matitaEngine.mli b/helm/matita/matitaEngine.mli index 249bad8f4..7ceb965e9 100644 --- a/helm/matita/matitaEngine.mli +++ b/helm/matita/matitaEngine.mli @@ -24,29 +24,37 @@ *) exception Drop +exception UnableToInclude of string -val eval_string: MatitaTypes.status ref -> string -> unit +(* 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 -> + MatitaTypes.status ref -> string -> unit val eval_from_stream: + ?do_heavy_checks:bool -> + ?include_paths:string list -> MatitaTypes.status ref -> char Stream.t -> (MatitaTypes.status -> (CicAst.term,TacticAst.obj,string) TacticAst.statement -> unit) -> unit val eval_from_stream_greedy: + ?do_heavy_checks:bool -> + ?include_paths:string list -> MatitaTypes.status ref-> char Stream.t -> (MatitaTypes.status -> (CicAst.term,TacticAst.obj,string) TacticAst.statement -> unit) -> unit val eval_ast: + ?do_heavy_checks:bool -> + ?include_paths:string list -> MatitaTypes.status -> (CicAst.term,TacticAst.obj,string) TacticAst.statement -> MatitaTypes.status -val eval: - MatitaTypes.status -> (Cic.term,Cic.obj,string) TacticAst.statement -> - MatitaTypes.status - val initial_status: MatitaTypes.status lazy_t