diff options
| author | herbelin | 2010-06-14 11:53:55 +0000 |
|---|---|---|
| committer | herbelin | 2010-06-14 11:53:55 +0000 |
| commit | 1d0e61fe25ffaec80bcc175df94797d8a9fdc868 (patch) | |
| tree | 1f1189c97e04d7e30e0cb14c3f90ea42ee794d9b /plugins/funind/functional_principles_proofs.ml | |
| parent | b570e389ed7e8765bc61642a94633ce64140c5ed (diff) | |
Fixed commit 13125 (stricter check of induction args): an interpretation
checking function was used instead of a test of existence in the context.
Also restricted constr_of_id which had no reason to interpret a
posteriori an already interpreted identifier as a global
reference. Consequently adapted funind.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@13135 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'plugins/funind/functional_principles_proofs.ml')
| -rw-r--r-- | plugins/funind/functional_principles_proofs.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/funind/functional_principles_proofs.ml b/plugins/funind/functional_principles_proofs.ml index bef89909de..361df3d1cf 100644 --- a/plugins/funind/functional_principles_proofs.ml +++ b/plugins/funind/functional_principles_proofs.ml @@ -1009,7 +1009,7 @@ let do_replace params rec_arg_num rev_args_id f fun_num all_funs g = | _ -> () in - Tacinterp.constr_of_id (pf_env g) equation_lemma_id + Constrintern.construct_reference (pf_hyps g) equation_lemma_id in let nb_intro_to_do = nb_prod (pf_concl g) in tclTHEN |
