aboutsummaryrefslogtreecommitdiffhomepage
path: root/tactics/eqdecide.ml4
diff options
context:
space:
mode:
Diffstat (limited to 'tactics/eqdecide.ml4')
-rw-r--r--tactics/eqdecide.ml48
1 files changed, 4 insertions, 4 deletions
diff --git a/tactics/eqdecide.ml4 b/tactics/eqdecide.ml4
index 6500b0e53..a5f8831a0 100644
--- a/tactics/eqdecide.ml4
+++ b/tactics/eqdecide.ml4
@@ -85,8 +85,8 @@ let mkDecideEqGoal eqonleft op rectype c1 c2 g =
let mkGenDecideEqGoal rectype g =
let hypnames = pf_ids_of_hyps g in
- let xname = next_ident_away (id_of_string "x") hypnames
- and yname = next_ident_away (id_of_string "y") hypnames in
+ let xname = next_ident_away (Id.of_string "x") hypnames
+ and yname = next_ident_away (Id.of_string "y") hypnames in
(mkNamedProd xname rectype
(mkNamedProd yname rectype
(mkDecideEqGoal true (build_coq_sumbool ())
@@ -99,8 +99,8 @@ let eqCase tac =
tac)))
let diseqCase eqonleft =
- let diseq = id_of_string "diseq" in
- let absurd = id_of_string "absurd" in
+ let diseq = Id.of_string "diseq" in
+ let absurd = Id.of_string "absurd" in
(tclTHEN (intro_using diseq)
(tclTHEN (choose_noteq eqonleft)
(tclTHEN red_in_concl