aboutsummaryrefslogtreecommitdiff
path: root/test-suite/arithmetic/addmuldiv.v
blob: 72b0164b49516f6c39c563b71ba4d294ca829112 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Require Import Int63.

Set Implicit Arguments.

Open Scope int63_scope.

Check (eq_refl : addmuldiv 32 3 5629499534213120 = 12887523328).
Check (eq_refl 12887523328 <: addmuldiv 32 3 5629499534213120 = 12887523328).
Check (eq_refl 12887523328 <<: addmuldiv 32 3 5629499534213120 = 12887523328).

Definition compute2 := Eval compute in addmuldiv 32 3 5629499534213120.
Check (eq_refl compute2 : 12887523328 = 12887523328).