X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=sidebyside;f=helm%2Fmatita%2FmatitaEngine.mli;h=280b6c8f47d273a6cac415b3feb8eb52e487e6c4;hb=d1126c6b78a3333bbf415daf027004496b77c2f4;hp=3fcc4cc3ee7f864180f20c79398ec0bb4b8b9512;hpb=de9a83f286eee12117fb478ea2db18f7faebac9a;p=helm.git diff --git a/helm/matita/matitaEngine.mli b/helm/matita/matitaEngine.mli index 3fcc4cc3e..280b6c8f4 100644 --- a/helm/matita/matitaEngine.mli +++ b/helm/matita/matitaEngine.mli @@ -23,18 +23,45 @@ * http://helm.cs.unibo.it/ *) -(*val eval_ast:*) +exception Drop +exception UnableToInclude of string +exception IncludedFileNotCompiled of string -val eval_string: MatitaTypes.status -> string -> MatitaTypes.status +type statement = + (CicNotationPt.term, CicNotationPt.term, GrafiteAst.reduction, GrafiteAst.obj, + string) + GrafiteAst.statement -val eval_from_stream: MatitaTypes.status -> char Stream.t -> MatitaTypes.status +(* 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_ast: - MatitaTypes.status -> (CicAst.term, string) TacticAst.statement -> - MatitaTypes.status +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 -val eval: - MatitaTypes.status -> (Cic.term, string) TacticAst.statement -> +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 + +val eval_ast: + ?do_heavy_checks:bool -> + ?include_paths:string list -> + ?clean_baseuri:bool -> + MatitaTypes.status -> + statement -> MatitaTypes.status val initial_status: MatitaTypes.status lazy_t