X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Ftactics%2FproofEngineTypes.ml;h=7497da7edd820aebbf7fb8e7871a561321d6d565;hb=827e35d6058ebba3a4a4fa6eb3c160f0cd0fd1e8;hp=2e25e4a057389f7149bfa64334bcbefdca615d84;hpb=d1126c6b78a3333bbf415daf027004496b77c2f4;p=helm.git diff --git a/helm/ocaml/tactics/proofEngineTypes.ml b/helm/ocaml/tactics/proofEngineTypes.ml index 2e25e4a05..7497da7ed 100644 --- a/helm/ocaml/tactics/proofEngineTypes.ml +++ b/helm/ocaml/tactics/proofEngineTypes.ml @@ -58,10 +58,6 @@ let mk_tactic t = t type reduction = Cic.context -> Cic.term -> Cic.term -type lazy_term = - Cic.context -> Cic.metasenv -> CicUniv.universe_graph -> - Cic.term * Cic.metasenv * CicUniv.universe_graph - let const_lazy_term t = (fun _ metasenv ugraph -> t, metasenv, ugraph) @@ -72,7 +68,10 @@ type lazy_reduction = let const_lazy_reduction red = (fun _ metasenv ugraph -> red, metasenv, ugraph) -type pattern = lazy_term option * (string * Cic.term) list * Cic.term +type ('term, 'lazy_term) pattern = + 'lazy_term option * (string * 'term) list * 'term option + +type lazy_pattern = (Cic.term, Cic.lazy_term) pattern let conclusion_pattern t = let t' = @@ -80,10 +79,10 @@ let conclusion_pattern t = | None -> None | Some t -> Some (fun _ m u -> t, m, u) in - t',[],Cic.Implicit (Some `Hole) + t',[],Some (Cic.Implicit (Some `Hole)) (** tactic failure *) -exception Fail of string +exception Fail of string Lazy.t (** calls the opaque tactic on the status, restoring the original @@ -95,3 +94,6 @@ let apply_tactic t status = (** constraint: the returned value will always be constructed by Cic.Name **) type mk_fresh_name_type = Cic.metasenv -> Cic.context -> Cic.name -> typ:Cic.term -> Cic.name + +let goals_of_proof (_,metasenv,_,_) = List.map (fun (g,_,_) -> g) metasenv +