aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Num/NeqAxioms.v
blob: 303d30cf04285cc3c5fc052362149e8144422fc8 (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
(*i $Id $ i*)

(*s InEquality is introduced as an independant parameter, it could be 
    instantiated with the negation of equality *)

Require Export EqParams.
Require Export NeqParams.

Axiom eq_not_neq : (x,y:N)x=y->~(x<>y).
Hints Immediate eq_not_neq : num.

Axiom neq_sym : (x,y:N)(x<>y)->(y<>x).
Hints Resolve neq_sym : num.

Axiom neq_not_neq_trans : (x,y,z:N)(x<>y)->~(y<>z)->(x<>z).
Hints Resolve neq_not_neq_trans : num.