diff options
Diffstat (limited to 'theories/Num/GtAxioms.v')
| -rw-r--r-- | theories/Num/GtAxioms.v | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/theories/Num/GtAxioms.v b/theories/Num/GtAxioms.v new file mode 100644 index 0000000000..9a54a0988e --- /dev/null +++ b/theories/Num/GtAxioms.v @@ -0,0 +1,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. |
