aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Num/GtAxioms.v
blob: 9a54a0988e1e6068944dd3e485f48c8049832b5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(*i $Id: i*)
Require Export Axioms.
Require Export LeProps.

(*s Axiomatizing [>] from [<] *)


Axiom not_le_gt : (x,y:N)~(x<=y)->(x>y).
Axiom gt_not_le : (x,y:N)(x>y)->~(x<=y).

Hints Resolve not_le_gt : num.

Hints Immediate gt_not_le : num.