aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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