X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;ds=sidebyside;f=helm%2Fsoftware%2Fcomponents%2Ftactics%2Fring.ml;h=0bc26514d45819ce8e4e2e026edf50c7f765519f;hb=0978a9c19e672bb0b505f25737078409381700c7;hp=4d05ab3333cafba2b10fddfa9b383c7450602d39;hpb=cc3ab906b631ef0edb4402cb622fc3fa96682717;p=helm.git diff --git a/helm/software/components/tactics/ring.ml b/helm/software/components/tactics/ring.ml index 4d05ab333..0bc26514d 100644 --- a/helm/software/components/tactics/ring.ml +++ b/helm/software/components/tactics/ring.ml @@ -122,14 +122,14 @@ let cic_is_const ?(uri: uri option = None) term = @param proof a proof @return the uri of a given proof *) -let uri_of_proof ~proof:(uri, _, _, _) = uri +let uri_of_proof ~proof:(uri, _, _, _, _) = uri (** @param status current proof engine status @raise Failure if proof is None @return current goal's metasenv *) -let metasenv_of_status ((_,m,_,_), _) = m +let metasenv_of_status ((_,m,_,_, _), _) = m (** @param status a proof engine status @@ -447,7 +447,7 @@ let purge_hyps_tac ~count = (ProofEngineTypes.apply_tactic (S.clear ~hyps:[name_of_hyp]) status)) | (_, []) -> failwith "Ring.purge_hyps_tac: no hypotheses left" in - let (_, metasenv, _, _) = proof in + let (_, metasenv, _, _, _) = proof in let (_, context, _) = CicUtil.lookup_meta goal metasenv in let proof',goal' = aux count context status in assert (goal = goal') ;