=
let module PET = ProofEngineTypes in
let generalize_tac mk_fresh_name_callback
- ~pattern:(term,hyps_pat,concl_pat) status
+ ~pattern:(term,hyps_pat,_) status
=
if hyps_pat <> [] then raise GeneralizationInHypothesesNotImplementedYet;
let (proof, goal) = status in
List.map
(fun id ->
let rel,_ = ProofEngineHelpers.find_hyp id context in
- id,(Some (PET.const_lazy_term rel), [], None)
+ id,(Some (PET.const_lazy_term rel), [], Some (ProofEngineTypes.hole))
) generalize_hyps in
let tactics =
List.map
-(* GENERATED FILE, DO NOT EDIT. STAMP:Sat Jun 7 20:09:50 CEST 2008 *)
+(* GENERATED FILE, DO NOT EDIT. STAMP:Sun Jun 8 15:54:21 CEST 2008 *)
val absurd : term:Cic.term -> ProofEngineTypes.tactic
val apply : term:Cic.term -> ProofEngineTypes.tactic
val applyS :