]> matita.cs.unibo.it Git - helm.git/blobdiff - matita/matita/matitaEngine.mli
update in lambdadelta
[helm.git] / matita / matita / matitaEngine.mli
index 1175c24030a8f66e2521039f55a8ebdf39aafe09..2b8d9fd8c7708722fb45ec6d33f722b72623bd20 100644 (file)
  * http://helm.cs.unibo.it/
  *)
 
+exception TryingToAdd of string Lazy.t
+exception EnrichedWithStatus of exn * GrafiteTypes.status
+exception AlreadyLoaded of string Lazy.t
+exception FailureCompiling of string * exn
+exception CircularDependency of string
+
+class status:
+ string ->
+  object
+   inherit GrafiteTypes.status
+   inherit ApplyTransformation.status
+  end
+
 val get_ast:
 #GrafiteParser.status -> include_paths:string list -> string ->
-    GrafiteAst.statement
GrafiteTypes.status -> include_paths:string list -> GrafiteParser.parsable ->
+  GrafiteAst.statement
 
 (* heavy checks slow down the compilation process but give you some interesting
  * infos like if the theorem is a duplicate *)
@@ -38,11 +51,8 @@ val eval_ast :
   (GrafiteTypes.status *
    (DisambiguateTypes.domain_item * GrafiteAst.alias_spec) option) list
 
+val assert_ng: include_paths:string list -> string -> bool
 
-exception EnrichedWithStatus of exn * GrafiteTypes.status
-
-(* EX MATITACLIB *)
-module Make : sig
-   val make: string -> string list -> bool
-end
-(* FINE EX MATITACLIB *)
+(* given a path to a ma file inside the include_paths, returns the
+   new include_paths associated to that file *)
+val read_include_paths: include_paths:string list -> string -> string list