aboutsummaryrefslogtreecommitdiff
path: root/test-suite/prerequisite
diff options
context:
space:
mode:
authorCyril Cohen2019-04-29 17:26:22 +0200
committerCyril Cohen2019-04-29 17:26:22 +0200
commit05c5c3ab8e52ebe43179975b42142f2646b0479e (patch)
treedf53ce204a27483dd25bcaad8c70a78aa5398312 /test-suite/prerequisite
parentf08880552350310df8a60ec37d6ada9d0ef1b40f (diff)
parent92e2bb2bebc99b6a72ea0babad9a1c374129a0c0 (diff)
Merge PR #9651: [ssr] Add tactics under and over
Reviewed-by: CohenCyril Ack-by: Zimmi48 Ack-by: erikmd Ack-by: gares Ack-by: jfehrle
Diffstat (limited to 'test-suite/prerequisite')
-rw-r--r--test-suite/prerequisite/ssr_mini_mathcomp.v2
1 files changed, 2 insertions, 0 deletions
diff --git a/test-suite/prerequisite/ssr_mini_mathcomp.v b/test-suite/prerequisite/ssr_mini_mathcomp.v
index cb2c56736c..ca360f65a7 100644
--- a/test-suite/prerequisite/ssr_mini_mathcomp.v
+++ b/test-suite/prerequisite/ssr_mini_mathcomp.v
@@ -427,6 +427,8 @@ Lemma leqnSn n : n <= n.+1. Proof. by elim: n. Qed.
Lemma leq_trans n m p : m <= n -> n <= p -> m <= p.
Admitted.
+Lemma leq_ltn_trans n m p : m <= n -> n < p -> m < p.
+Admitted.
Lemma leqW m n : m <= n -> m <= n.+1.
Admitted.
Hint Resolve leqnSn.