X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fmatita%2FmatitaEngine.mli;h=ac6d91cb9bbfaeb506c123cc5ff12532bff7a188;hb=b92a0ec32215eea5e0452154da54d5a29a84a53e;hp=249bad8f487bedc80240b247b3c508445307691c;hpb=94c9255e1f3095440f4d49ea1d75443a5a343185;p=helm.git diff --git a/helm/matita/matitaEngine.mli b/helm/matita/matitaEngine.mli index 249bad8f4..ac6d91cb9 100644 --- a/helm/matita/matitaEngine.mli +++ b/helm/matita/matitaEngine.mli @@ -23,30 +23,20 @@ * http://helm.cs.unibo.it/ *) -exception Drop - -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 -> + ?clean_baseuri:bool -> + GrafiteTypes.status ref -> string -> unit val eval_from_stream: - MatitaTypes.status ref -> char Stream.t -> - (MatitaTypes.status -> - (CicAst.term,TacticAst.obj,string) TacticAst.statement -> unit) -> - unit - -val eval_from_stream_greedy: - MatitaTypes.status ref-> char Stream.t -> - (MatitaTypes.status -> - (CicAst.term,TacticAst.obj,string) TacticAst.statement -> unit) -> + ?prompt:bool -> + ?do_heavy_checks:bool -> + include_paths:string list -> + ?clean_baseuri:bool -> + GrafiteTypes.status ref -> Ulexing.lexbuf -> + (GrafiteTypes.status -> GrafiteParser.statement -> unit) -> unit -val eval_ast: - 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 -