aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--contrib/funind/tacinv.ml44
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/funind/tacinv.ml4 b/contrib/funind/tacinv.ml4
index 6320a429d..155a264f7 100644
--- a/contrib/funind/tacinv.ml4
+++ b/contrib/funind/tacinv.ml4
@@ -49,7 +49,7 @@ let mkthesort = mkProp (* would like to put Type here, but with which index? *)
(* this is the prefix used to name equality hypothesis generated by
case analysis*)
-let equality_hyp_string = "H_eg_"
+let equality_hyp_string = if !Options.v7 then "_eg_" else "H_eg_"
(* bug de refine: on doit ssavoir sur quelle hypothese on se trouve. valeur
initiale au debut de l'appel a la fonction proofPrinc: 1. *)
@@ -276,7 +276,7 @@ type mimickinfo =
\end{itemize}
*)
-let heq_prefix = "H_eq_"
+let heq_prefix = if !Options.v7 then "_eq_" else "H_eq_"
type kind_of_hyp = Var | Eq (*| Rec*)