aboutsummaryrefslogtreecommitdiff
path: root/test-suite/primitive/uint63/mod.v
blob: 3ad6312c2c6680893c68403f40be6fffcfe3e3b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Require Import Int63.

Set Implicit Arguments.

Open Scope int63_scope.

Check (eq_refl : 6 mod 3 = 0).
Check (eq_refl 0 <: 6 mod 3 = 0).
Check (eq_refl 0 <<: 6 mod 3 = 0).
Definition compute1 := Eval compute in 6 mod 3.
Check (eq_refl compute1 : 0 = 0).

Check (eq_refl : 5 mod 3 = 2).
Check (eq_refl 2 <: 5 mod 3 = 2).
Check (eq_refl 2 <<: 5 mod 3 = 2).
Definition compute2 := Eval compute in 5 mod 3.
Check (eq_refl compute2 : 2 = 2).