aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/output/Search.out
diff options
context:
space:
mode:
authorGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-11-17 16:24:36 +0000
committerGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-11-17 16:24:36 +0000
commit873d23c66aa447e5cc9ed3b782956ae0d268589b (patch)
tree8d7d98fc00c9085264ae7fc75a24206994526d9f /test-suite/output/Search.out
parentf53244e359bfff807f903344fb864ece09674f19 (diff)
Update output/Search.out after hint-related extra defs in Peano
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15980 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite/output/Search.out')
-rw-r--r--test-suite/output/Search.out5
1 files changed, 5 insertions, 0 deletions
diff --git a/test-suite/output/Search.out b/test-suite/output/Search.out
index 5d8f98edc..2a22a89b6 100644
--- a/test-suite/output/Search.out
+++ b/test-suite/output/Search.out
@@ -20,5 +20,10 @@ min_r: forall n m : nat, m <= n -> min n m = m
min_l: forall n m : nat, n <= m -> min n m = n
max_r: forall n m : nat, n <= m -> max n m = m
max_l: forall n m : nat, m <= n -> max n m = n
+f_equal_pred: forall x y : nat, x = y -> pred x = pred y
+f_equal2_plus:
+ forall x1 y1 x2 y2 : nat, x1 = y1 -> x2 = y2 -> x1 + x2 = y1 + y2
+f_equal2_mult:
+ forall x1 y1 x2 y2 : nat, x1 = y1 -> x2 = y2 -> x1 * x2 = y1 * y2
eq_add_S: forall n m : nat, S n = S m -> n = m
eq_S: forall x y : nat, x = y -> S x = S y