aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Init/Decimal.v
blob: bf47648956fb82c6df1fd87c6fa56b483be9ffa8 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
(************************************************************************)
(*  v      *   The Coq Proof Assistant  /  The Coq Development Team     *)
(* <O___,, *   INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2016     *)
(*   \VV/  **************************************************************)
(*    //   *      This file is distributed under the terms of the       *)
(*         *       GNU Lesser General Public License Version 2.1        *)
(************************************************************************)

(** * Decimal numbers *)

(** These numbers coded in base 10 will be used for parsing and printing
    other Coq numeral datatypes in an human-readable way.
    See the [Numeral Notation] command.
    We represent numbers in base 10 as lists of decimal digits,
    in big-endian order (most significant digit comes first). *)

(** Unsigned integers are just lists of digits.
    For instance, ten is (D1 (D0 Nil)) *)

Inductive uint :=
 | Nil
 | D0 (_:uint)
 | D1 (_:uint)
 | D2 (_:uint)
 | D3 (_:uint)
 | D4 (_:uint)
 | D5 (_:uint)
 | D6 (_:uint)
 | D7 (_:uint)
 | D8 (_:uint)
 | D9 (_:uint).

(** [Nil] is the number terminator. Taken alone, it behaves as zero,
    but rather use [D0 Nil] instead, since this form will be denoted
    as [0], while [Nil] will be printed as [Nil]. *)

Notation zero := (D0 Nil).

(** For signed integers, we use two constructors [Pos] and [Neg]. *)

Inductive int := Pos (d:uint) | Neg (d:uint).

Delimit Scope uint_scope with uint.
Bind Scope uint_scope with uint.
Delimit Scope int_scope with int.
Bind Scope int_scope with int.

(** This representation favors simplicity over canonicity.
    For normalizing numbers, we need to remove head zero digits,
    and choose our canonical representation of 0 (here [D0 Nil]
    for unsigned numbers and [Pos (D0 Nil)] for signed numbers). *)

Fixpoint nonzero_head d :=
  match d with
  | D0 d => nonzero_head d
  | _ => d
  end.

Definition unorm d :=
  match nonzero_head d with
  | Nil => zero
  | d => d
  end.

Definition norm d :=
  match d with
  | Pos d => Pos (unorm d)
  | Neg d =>
    match nonzero_head d with
    | Nil => Pos zero
    | d => Neg d
    end
  end.

(** A few easy operations. For more advanced computations, use the conversions
    with other Coq numeral datatypes (e.g. Z) and the operations on them. *)

Definition opp (d:int) :=
  match d with
  | Pos d => Neg d
  | Neg d => Pos d
  end.

(** For conversions with binary numbers, it is easier to operate
    on little-endian numbers. *)

Fixpoint rev (l l' : uint) :=
  match l with
  | Nil => l'
  | D0 l => rev l (D0 l')
  | D1 l => rev l (D1 l')
  | D2 l => rev l (D2 l')
  | D3 l => rev l (D3 l')
  | D4 l => rev l (D4 l')
  | D5 l => rev l (D5 l')
  | D6 l => rev l (D6 l')
  | D7 l => rev l (D7 l')
  | D8 l => rev l (D8 l')
  | D9 l => rev l (D9 l')
  end.

Module Little.

(** Successor of little-endian numbers *)

Fixpoint succ d :=
  match d with
  | Nil => D1 Nil
  | D0 l => D1 l
  | D1 l => D2 l
  | D2 l => D3 l
  | D3 l => D4 l
  | D4 l => D5 l
  | D5 l => D6 l
  | D6 l => D7 l
  | D7 l => D8 l
  | D8 l => D9 l
  | D9 l => D0 (succ l)
  end.

(** Doubling little-endian numbers *)

Fixpoint double d :=
  match d with
  | Nil => Nil
  | D0 l => D0 (double l)
  | D1 l => D2 (double l)
  | D2 l => D4 (double l)
  | D3 l => D6 (double l)
  | D4 l => D8 (double l)
  | D5 l => D0 (succ_double l)
  | D6 l => D2 (succ_double l)
  | D7 l => D4 (succ_double l)
  | D8 l => D6 (succ_double l)
  | D9 l => D8 (succ_double l)
  end

with succ_double d :=
  match d with
  | Nil => D1 Nil
  | D0 l => D1 (double l)
  | D1 l => D3 (double l)
  | D2 l => D5 (double l)
  | D3 l => D7 (double l)
  | D4 l => D9 (double l)
  | D5 l => D1 (succ_double l)
  | D6 l => D3 (succ_double l)
  | D7 l => D5 (succ_double l)
  | D8 l => D7 (succ_double l)
  | D9 l => D9 (succ_double l)
  end.

End Little.