diff options
| -rw-r--r-- | tactics/tactics.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tactics/tactics.ml b/tactics/tactics.ml index dd0541fd07..1c1843a124 100644 --- a/tactics/tactics.ml +++ b/tactics/tactics.ml @@ -2646,7 +2646,7 @@ let compute_scheme_signature scheme names_info ind_type_guess = let is_pred n c = let hd = fst (decompose_app c) in match kind_of_term hd with | Rel q when n < q & q <= n+scheme.npredicates -> IndArg - | _ when hd = ind_type_guess & not scheme.farg_in_concl -> RecArg + | _ when eq_constr hd ind_type_guess & not scheme.farg_in_concl -> RecArg | _ -> OtherArg in let rec check_branch p c = match kind_of_term c with |
