diff options
author | herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2011-06-10 22:07:13 +0000 |
---|---|---|
committer | herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2011-06-10 22:07:13 +0000 |
commit | 11425d763714cd663a5d3849f6a9367d39f38e7d (patch) | |
tree | 91d603163db744d6acf8fbbfa887763390ac93b8 /plugins/decl_mode | |
parent | 33682f0e2ee0d99701da1703cae218b6f5f85a7f (diff) |
Moved allow_K to a unification flag
- seized the opportunity to align unification flags for functional induction to the ones of induction
- also tried to add delta in the elim_flags used in tactics.ml
- also tried to unify the rewrite flags in concl or in hyp (removed allow_K in hyps)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@14186 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'plugins/decl_mode')
-rw-r--r-- | plugins/decl_mode/decl_proof_instr.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/decl_mode/decl_proof_instr.ml b/plugins/decl_mode/decl_proof_instr.ml index ad315035a..217a8fe4f 100644 --- a/plugins/decl_mode/decl_proof_instr.ml +++ b/plugins/decl_mode/decl_proof_instr.ml @@ -370,7 +370,7 @@ let find_subsubgoal c ctyp skip submetas gls = let se = Stack.pop stack in try let unifier = - Unification.w_unify true env Reduction.CUMUL + Unification.w_unify env Reduction.CUMUL ~flags:Unification.elim_flags ctyp se.se_type se.se_evd in if n <= 0 then {se with |