From 85b1c4091e13dec13fe03f28e81b256c60f9f7ef Mon Sep 17 00:00:00 2001 From: Pierre-Marie Pédrot Date: Mon, 10 Jan 2022 14:54:18 +0100 Subject: Adapt w.r.t. coq/coq#15442 (#425) coq/coq#15442 changes the way `Program` names things, to make it uniform w.r.t. the standard naming schema. This commit removes dependencies on the names chosen by `Program`. Should be backwards compatible. Co-authored-by: Xavier Leroy --- lib/Intv.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/Intv.v b/lib/Intv.v index 4b5ed77d..3a491819 100644 --- a/lib/Intv.v +++ b/lib/Intv.v @@ -245,8 +245,8 @@ Next Obligation. red. lia. Qed. Next Obligation. - assert (x = hi - 1 \/ x < hi - 1) by lia. - destruct H2. congruence. auto. + assert (EITHER: x = hi - 1 \/ x < hi - 1) by lia. + destruct EITHER. congruence. auto. Qed. Next Obligation. exists wildcard'; split; auto. lia. -- cgit