blob: 6198f29a0dfab2722438b6ec405b6bae6b4ec1b6 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
Set Implicit Arguments.
Unset Strict Implicit.
Implicit Arguments fst.
Implicit Arguments snd.
Module Type PO.
Parameter T : Set.
Parameter le : T -> T -> Prop.
Axiom le_refl : forall x : T, le x x.
Axiom le_trans : forall x y z : T, le x y -> le y z -> le x z.
Axiom le_antis : forall x y : T, le x y -> le y x -> x = y.
Hint Resolve le_refl le_trans le_antis.
End PO.
Module Pair (X: PO) (Y: PO) <: PO.
Definition T := (X.T * Y.T)%type.
Definition le p1 p2 := X.le (fst p1) (fst p2) /\ Y.le (snd p1) (snd p2).
Hint Unfold le.
Lemma le_refl : forall p : T, le p p.
info auto.
Qed.
Lemma le_trans : forall p1 p2 p3 : T, le p1 p2 -> le p2 p3 -> le p1 p3.
unfold le; intuition; info eauto.
Qed.
Lemma le_antis : forall p1 p2 : T, le p1 p2 -> le p2 p1 -> p1 = p2.
destruct p1.
destruct p2.
unfold le.
intuition.
cutrewrite (t = t1).
cutrewrite (t0 = t2).
reflexivity.
info auto.
info auto.
Qed.
End Pair.
Require Nat.
Module NN := Pair Nat Nat.
Lemma zz_min : forall p : NN.T, NN.le (0, 0) p.
info auto with arith.
Qed.
|