-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Renaming SearchAbout into Search and Search into SearchHead.
I hope I did not forget any place to change. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16423 85f007b7-540e-0410-9357-904b9bb8a0f7
- Loading branch information
herbelin
committed
Apr 17, 2013
1 parent
248e7be
commit 9b24b6d
Showing
14 changed files
with
114 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
le_S: forall n m : nat, n <= m -> n <= S m | ||
le_n: forall n : nat, n <= n | ||
le_S: forall n m : nat, n <= m -> n <= S m | ||
le_pred: forall n m : nat, n <= m -> pred n <= pred m | ||
le_S_n: forall n m : nat, S n <= S m -> n <= m | ||
false: bool | ||
true: bool | ||
xorb: bool -> bool -> bool | ||
false: bool | ||
andb: bool -> bool -> bool | ||
orb: bool -> bool -> bool | ||
negb: bool -> bool | ||
implb: bool -> bool -> bool | ||
andb: bool -> bool -> bool | ||
pred_Sn: forall n : nat, n = pred (S n) | ||
plus_n_Sm: forall n m : nat, S (n + m) = n + S m | ||
plus_n_O: forall n : nat, n = n + 0 | ||
plus_Sn_m: forall n m : nat, S n + m = S (n + m) | ||
plus_O_n: forall n : nat, 0 + n = n | ||
mult_n_Sm: forall n m : nat, n * m + n = n * S m | ||
mult_n_O: forall n : nat, 0 = n * 0 | ||
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 | ||
xorb: bool -> bool -> bool | ||
negb: bool -> bool | ||
eq_S: forall x y : nat, x = y -> S x = S y | ||
f_equal_pred: forall x y : nat, x = y -> pred x = pred y | ||
pred_Sn: forall n : nat, n = pred (S n) | ||
eq_add_S: forall n m : nat, S n = S m -> n = m | ||
f_equal2_plus: | ||
forall x1 y1 x2 y2 : nat, x1 = y1 -> x2 = y2 -> x1 + x2 = y1 + y2 | ||
plus_n_O: forall n : nat, n = n + 0 | ||
plus_O_n: forall n : nat, 0 + n = n | ||
plus_n_Sm: forall n m : nat, S (n + m) = n + S m | ||
plus_Sn_m: forall n m : nat, S n + m = S (n + m) | ||
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 | ||
mult_n_O: forall n : nat, 0 = n * 0 | ||
mult_n_Sm: forall n m : nat, n * m + n = n * S m | ||
max_l: forall n m : nat, m <= n -> max n m = n | ||
max_r: forall n m : nat, n <= m -> max n m = m | ||
min_l: forall n m : nat, n <= m -> min n m = n | ||
min_r: forall n m : nat, m <= n -> min n m = m |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
(* Some tests of the Search command *) | ||
|
||
Search le. (* app nodes *) | ||
Search bool. (* no apps *) | ||
Search (@eq nat). (* complex pattern *) | ||
SearchHead le. (* app nodes *) | ||
SearchHead bool. (* no apps *) | ||
SearchHead (@eq nat). (* complex pattern *) |
Oops, something went wrong.