1 | include "Universes.ma". |
---|
2 | include "Plogic/equality.ma". |
---|
3 | include "Connectives.ma". |
---|
4 | include "Nat.ma". |
---|
5 | include "Exponential.ma". |
---|
6 | include "Bool.ma". |
---|
7 | include "BitVector.ma". |
---|
8 | include "List.ma". |
---|
9 | |
---|
10 | ndefinition one ≝ S Z. |
---|
11 | ndefinition two ≝ (S(S(Z))). |
---|
12 | ndefinition three ≝ two + one. |
---|
13 | ndefinition four ≝ two + two. |
---|
14 | ndefinition five ≝ three + two. |
---|
15 | ndefinition six ≝ three + three. |
---|
16 | ndefinition seven ≝ three + four. |
---|
17 | ndefinition eight ≝ four + four. |
---|
18 | ndefinition nine ≝ five + four. |
---|
19 | ndefinition ten ≝ five + five. |
---|
20 | ndefinition eleven ≝ six + five. |
---|
21 | ndefinition twelve ≝ six + six. |
---|
22 | ndefinition thirteen ≝ seven + six. |
---|
23 | ndefinition fourteen ≝ seven + seven. |
---|
24 | ndefinition fifteen ≝ eight + seven. |
---|
25 | ndefinition sixteen ≝ eight + eight. |
---|
26 | ndefinition seventeen ≝ nine + eight. |
---|
27 | ndefinition eighteen ≝ nine + nine. |
---|
28 | ndefinition nineteen ≝ ten + nine. |
---|
29 | ndefinition one_hundred_and_twenty_eight ≝ sixteen * eight. |
---|
30 | ndefinition two_hundred_and_fifty_six ≝ |
---|
31 | one_hundred_and_twenty_eight + one_hundred_and_twenty_eight. |
---|
32 | |
---|
33 | ndefinition nat_of_bool ≝ |
---|
34 | λb: Bool. |
---|
35 | match b with |
---|
36 | [ false ⇒ Z |
---|
37 | | true ⇒ S Z |
---|
38 | ]. |
---|
39 | |
---|
40 | ndefinition add_n_with_carry: |
---|
41 | ∀n: Nat. ∀b, c: BitVector n. ∀carry: Bool. Cartesian (BitVector n) (List Bool) ≝ |
---|
42 | λn: Nat. |
---|
43 | λb: BitVector n. |
---|
44 | λc: BitVector n. |
---|
45 | λcarry: Bool. |
---|
46 | let b_as_nat ≝ nat_of_bitvector n b in |
---|
47 | let c_as_nat ≝ nat_of_bitvector n c in |
---|
48 | let carry_as_nat ≝ nat_of_bool carry in |
---|
49 | let result_old ≝ b_as_nat + c_as_nat + carry_as_nat in |
---|
50 | let ac_flag ≝ ((modulus b_as_nat ((S (S Z)) * n)) + |
---|
51 | (modulus c_as_nat ((S (S Z)) * n)) + |
---|
52 | c_as_nat) ≥ ((S (S Z)) * n) in |
---|
53 | let bit_xxx ≝ (((modulus b_as_nat ((S (S Z))^(n - (S Z)))) + |
---|
54 | (modulus c_as_nat ((S (S Z))^(n - (S Z)))) + |
---|
55 | c_as_nat) ≥ ((S (S Z))^(n - (S Z)))) in |
---|
56 | let result ≝ modulus result_old ((S (S Z))^n) in |
---|
57 | let cy_flag ≝ (result_old ≥ ((S (S Z))^n)) in |
---|
58 | let ov_flag ≝ exclusive_disjunction cy_flag bit_xxx in |
---|
59 | ? (mk_Cartesian (BitVector n) ? (? (bitvector_of_nat n result)) |
---|
60 | (cy_flag :: ac_flag :: ov_flag :: Empty Bool)). |
---|
61 | //. |
---|
62 | nqed. |
---|
63 | |
---|
64 | (* |
---|
65 | ndefinition sub_8_with_carry ≝ |
---|
66 | λb: BitVector eight. |
---|
67 | λc: BitVector eight. |
---|
68 | λcarry: Bool. |
---|
69 | let b_as_nat ≝ nat_of_bitvector eight b in |
---|
70 | let c_as_nat ≝ nat_of_bitvector eight c in |
---|
71 | let carry_as_nat ≝ nat_of_bool carry in |
---|
72 | let result_old_1 ≝ subtraction_underflow b_as_nat c_as_nat in |
---|
73 | match result_old_1 with |
---|
74 | [ Nothing ⇒ |
---|
75 | let ac_flag ≝ True in |
---|
76 | |
---|
77 | | Just result_old_1' ⇒ |
---|
78 | ] |
---|
79 | *) |
---|
80 | |
---|
81 | ndefinition add_8_with_carry ≝ add_n_with_carry eight. |
---|
82 | ndefinition add_16_with_carry ≝ add_n_with_carry sixteen. |
---|
83 | |
---|
84 | (* |
---|
85 | ndefinition increment ≝ |
---|
86 | λn: Nat. |
---|
87 | λb: BitVector n. |
---|
88 | let b_as_nat ≝ (nat_of_bitvector n b) + (S Z) in |
---|
89 | let overflow ≝ b_as_nat ≥ (S (S Z))^n in |
---|
90 | match overflow with |
---|
91 | [ False ⇒ bitvector_of_nat n b_as_nat |
---|
92 | | True ⇒ bitvector_of_nat n Z |
---|
93 | ]. |
---|
94 | |
---|
95 | ndefinition decrement ≝ |
---|
96 | λn: Nat. |
---|
97 | λb: BitVector n. |
---|
98 | let b_as_nat ≝ nat_of_bitvector n b in |
---|
99 | match b_as_nat with |
---|
100 | [ Z ⇒ max n |
---|
101 | | S o ⇒ bitvector_of_nat n o |
---|
102 | ]. |
---|
103 | |
---|
104 | alias symbol "greater_than_or_equal" (instance 1) = "Nat greater than or equal prop". |
---|
105 | |
---|
106 | ndefinition bitvector_of_bool: |
---|
107 | ∀n: Nat. ∀b: Bool. BitVector n ≝ |
---|
108 | λn: Nat. |
---|
109 | λb: Bool. |
---|
110 | ? (pad (n - (S Z)) (S Z) (Cons Bool ? b (Empty Bool))). |
---|
111 | //. |
---|
112 | nqed. |
---|
113 | |
---|
114 | *) |
---|