X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=inline;f=helm%2Fmatita%2FmatitaEngine.mli;h=8c469df391458d2369f45621f9b624ba713041d7;hb=d0c88a989d2c41d0b816c5490d4d8c89a238cb2a;hp=6c8b8660518eb70cf07d5ae20e6a0c3f839cb5cf;hpb=2d03016df7f68c81dd0f25bf18a792a80b412702;p=helm.git diff --git a/helm/matita/matitaEngine.mli b/helm/matita/matitaEngine.mli index 6c8b86605..8c469df39 100644 --- a/helm/matita/matitaEngine.mli +++ b/helm/matita/matitaEngine.mli @@ -23,44 +23,21 @@ * http://helm.cs.unibo.it/ *) -exception Drop -exception UnableToInclude of string -exception IncludedFileNotCompiled of string - -type statement = - (CicNotationPt.term, 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 -> + include_paths:string list -> ?clean_baseuri:bool -> - MatitaTypes.status ref -> string -> unit + GrafiteTypes.status ref -> string -> unit val eval_from_stream: + ?prompt:bool -> ?do_heavy_checks:bool -> - ?include_paths:string list -> - ?clean_baseuri:bool -> - MatitaTypes.status ref -> char Stream.t -> - (MatitaTypes.status -> statement -> unit) -> - unit - -val eval_from_stream_greedy: - ?do_heavy_checks:bool -> - ?include_paths:string list -> + include_paths:string list -> ?clean_baseuri:bool -> - MatitaTypes.status ref-> char Stream.t -> - (MatitaTypes.status -> statement -> unit) -> + GrafiteTypes.status ref -> Ulexing.lexbuf -> + (GrafiteTypes.status -> GrafiteParser.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 - +val initial_status: GrafiteTypes.status lazy_t