summaryrefslogtreecommitdiff
path: root/test-suite/output/SearchPattern.v
blob: de9f48873a031635e068561a0ace00ed8cff8c92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
(* Some tests of the SearchPattern command *)

(* Simple, random tests *)
SearchPattern bool.
SearchPattern nat.
SearchPattern le.

(* With some hypothesis *)
SearchPattern (nat -> nat).
SearchPattern (?n * ?m + ?n = ?n * S ?m).

(* Non-linearity *)
SearchPattern (_ ?X ?X).

(* Non-linearity with hypothesis *)
SearchPattern (forall (x:?A) (y:?B), _ ?A ?B).

(* No delta-reduction *)
SearchPattern (Exc _).

Definition newdef := fun x:nat => x.

Goal forall n:nat, n <> newdef n -> False.
  intros n h.
  SearchPattern ( _ <> newdef _).          (* search hypothesis *)
  SearchPattern ( n <> newdef _).          (* search hypothesis *)
Abort.

Goal forall n (P:nat -> Prop), P n -> ~P n -> False.
  intros n P h h'.
  SearchPattern (P _).      (* search hypothesis also for patterns *)
  Search (~P n).          (* search hypothesis also for patterns *)
  Search (P _) -"h'".       (* search hypothesis also for patterns *)
  Search (P _) -not.       (* search hypothesis also for patterns *)

Abort.