src/HOL/Library/Code_Index.thy
author haftmann
Mon, 07 Jul 2008 08:47:17 +0200
changeset 27487 c8a6ce181805
parent 27368 9f90ac19e32b
child 28042 1471f2974eb1
permissions -rw-r--r--
absolute imports of HOL/*.thy theories
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
24999
haftmann
parents:
diff changeset
     1
(*  ID:         $Id$
haftmann
parents:
diff changeset
     2
    Author:     Florian Haftmann, TU Muenchen
haftmann
parents:
diff changeset
     3
*)
haftmann
parents:
diff changeset
     4
haftmann
parents:
diff changeset
     5
header {* Type of indices *}
haftmann
parents:
diff changeset
     6
haftmann
parents:
diff changeset
     7
theory Code_Index
27487
c8a6ce181805 absolute imports of HOL/*.thy theories
haftmann
parents: 27368
diff changeset
     8
imports Plain "~~/src/HOL/Presburger"
24999
haftmann
parents:
diff changeset
     9
begin
haftmann
parents:
diff changeset
    10
haftmann
parents:
diff changeset
    11
text {*
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
    12
  Indices are isomorphic to HOL @{typ nat} but
27104
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 26304
diff changeset
    13
  mapped to target-language builtin integers.
24999
haftmann
parents:
diff changeset
    14
*}
haftmann
parents:
diff changeset
    15
haftmann
parents:
diff changeset
    16
subsection {* Datatype of indices *}
haftmann
parents:
diff changeset
    17
26140
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    18
typedef index = "UNIV \<Colon> nat set"
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    19
  morphisms nat_of_index index_of_nat by rule
24999
haftmann
parents:
diff changeset
    20
26140
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    21
lemma index_of_nat_nat_of_index [simp]:
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    22
  "index_of_nat (nat_of_index k) = k"
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    23
  by (rule nat_of_index_inverse)
24999
haftmann
parents:
diff changeset
    24
26140
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    25
lemma nat_of_index_index_of_nat [simp]:
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    26
  "nat_of_index (index_of_nat n) = n"
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    27
  by (rule index_of_nat_inverse) 
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    28
    (unfold index_def, rule UNIV_I)
24999
haftmann
parents:
diff changeset
    29
haftmann
parents:
diff changeset
    30
lemma index:
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
    31
  "(\<And>n\<Colon>index. PROP P n) \<equiv> (\<And>n\<Colon>nat. PROP P (index_of_nat n))"
24999
haftmann
parents:
diff changeset
    32
proof
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
    33
  fix n :: nat
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
    34
  assume "\<And>n\<Colon>index. PROP P n"
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
    35
  then show "PROP P (index_of_nat n)" .
24999
haftmann
parents:
diff changeset
    36
next
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
    37
  fix n :: index
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
    38
  assume "\<And>n\<Colon>nat. PROP P (index_of_nat n)"
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
    39
  then have "PROP P (index_of_nat (nat_of_index n))" .
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
    40
  then show "PROP P n" by simp
24999
haftmann
parents:
diff changeset
    41
qed
haftmann
parents:
diff changeset
    42
26140
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    43
lemma index_case:
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    44
  assumes "\<And>n. k = index_of_nat n \<Longrightarrow> P"
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    45
  shows P
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    46
  by (rule assms [of "nat_of_index k"]) simp
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    47
26304
02fbd0e7954a avoid rebinding of existing facts;
wenzelm
parents: 26264
diff changeset
    48
lemma index_induct_raw:
26140
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    49
  assumes "\<And>n. P (index_of_nat n)"
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    50
  shows "P k"
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    51
proof -
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    52
  from assms have "P (index_of_nat (nat_of_index k))" .
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    53
  then show ?thesis by simp
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    54
qed
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    55
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    56
lemma nat_of_index_inject [simp]:
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    57
  "nat_of_index k = nat_of_index l \<longleftrightarrow> k = l"
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    58
  by (rule nat_of_index_inject)
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    59
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    60
lemma index_of_nat_inject [simp]:
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    61
  "index_of_nat n = index_of_nat m \<longleftrightarrow> n = m"
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    62
  by (auto intro!: index_of_nat_inject simp add: index_def)
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    63
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    64
instantiation index :: zero
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    65
begin
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    66
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    67
definition [simp, code func del]:
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    68
  "0 = index_of_nat 0"
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    69
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    70
instance ..
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    71
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    72
end
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    73
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    74
definition [simp]:
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    75
  "Suc_index k = index_of_nat (Suc (nat_of_index k))"
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    76
27104
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 26304
diff changeset
    77
rep_datatype "0 \<Colon> index" Suc_index
26140
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    78
proof -
27104
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 26304
diff changeset
    79
  fix P :: "index \<Rightarrow> bool"
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 26304
diff changeset
    80
  fix k :: index
26140
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    81
  assume "P 0" then have init: "P (index_of_nat 0)" by simp
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    82
  assume "\<And>k. P k \<Longrightarrow> P (Suc_index k)"
27104
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 26304
diff changeset
    83
    then have "\<And>n. P (index_of_nat n) \<Longrightarrow> P (Suc_index (index_of_nat n))" .
26140
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    84
    then have step: "\<And>n. P (index_of_nat n) \<Longrightarrow> P (index_of_nat (Suc n))" by simp
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    85
  from init step have "P (index_of_nat (nat_of_index k))"
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    86
    by (induct "nat_of_index k") simp_all
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    87
  then show "P k" by simp
27104
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 26304
diff changeset
    88
qed simp_all
26140
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    89
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    90
lemmas [code func del] = index.recs index.cases
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    91
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    92
declare index_case [case_names nat, cases type: index]
27104
791607529f6d rep_datatype command now takes list of constructors as input arguments
haftmann
parents: 26304
diff changeset
    93
declare index.induct [case_names nat, induct type: index]
26140
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    94
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    95
lemma [code func]:
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    96
  "index_size = nat_of_index"
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    97
proof (rule ext)
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    98
  fix k
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    99
  have "index_size k = nat_size (nat_of_index k)"
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   100
    by (induct k rule: index.induct) (simp_all del: zero_index_def Suc_index_def, simp_all)
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   101
  also have "nat_size (nat_of_index k) = nat_of_index k" by (induct "nat_of_index k") simp_all
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   102
  finally show "index_size k = nat_of_index k" .
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   103
qed
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   104
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   105
lemma [code func]:
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   106
  "size = nat_of_index"
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   107
proof (rule ext)
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   108
  fix k
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   109
  show "size k = nat_of_index k"
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   110
  by (induct k) (simp_all del: zero_index_def Suc_index_def, simp_all)
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   111
qed
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   112
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   113
lemma [code func]:
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   114
  "k = l \<longleftrightarrow> nat_of_index k = nat_of_index l"
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   115
  by (cases k, cases l) simp
24999
haftmann
parents:
diff changeset
   116
haftmann
parents:
diff changeset
   117
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   118
subsection {* Indices as datatype of ints *}
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   119
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   120
instantiation index :: number
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   121
begin
24999
haftmann
parents:
diff changeset
   122
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   123
definition
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   124
  "number_of = index_of_nat o nat"
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   125
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   126
instance ..
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   127
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   128
end
24999
haftmann
parents:
diff changeset
   129
26264
89e25cc8da7a yet another useful lemma
haftmann
parents: 26140
diff changeset
   130
lemma nat_of_index_number [simp]:
89e25cc8da7a yet another useful lemma
haftmann
parents: 26140
diff changeset
   131
  "nat_of_index (number_of k) = number_of k"
89e25cc8da7a yet another useful lemma
haftmann
parents: 26140
diff changeset
   132
  by (simp add: number_of_index_def nat_number_of_def number_of_is_id)
89e25cc8da7a yet another useful lemma
haftmann
parents: 26140
diff changeset
   133
24999
haftmann
parents:
diff changeset
   134
code_datatype "number_of \<Colon> int \<Rightarrow> index"
haftmann
parents:
diff changeset
   135
haftmann
parents:
diff changeset
   136
haftmann
parents:
diff changeset
   137
subsection {* Basic arithmetic *}
haftmann
parents:
diff changeset
   138
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   139
instantiation index :: "{minus, ordered_semidom, Divides.div, linorder}"
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   140
begin
24999
haftmann
parents:
diff changeset
   141
haftmann
parents:
diff changeset
   142
lemma zero_index_code [code inline, code func]:
haftmann
parents:
diff changeset
   143
  "(0\<Colon>index) = Numeral0"
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   144
  by (simp add: number_of_index_def Pls_def)
25967
dd602eb20f3f fixed and tuned
haftmann
parents: 25945
diff changeset
   145
lemma [code post]: "Numeral0 = (0\<Colon>index)"
dd602eb20f3f fixed and tuned
haftmann
parents: 25945
diff changeset
   146
  using zero_index_code ..
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   147
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   148
definition [simp, code func del]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   149
  "(1\<Colon>index) = index_of_nat 1"
24999
haftmann
parents:
diff changeset
   150
haftmann
parents:
diff changeset
   151
lemma one_index_code [code inline, code func]:
haftmann
parents:
diff changeset
   152
  "(1\<Colon>index) = Numeral1"
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 26009
diff changeset
   153
  by (simp add: number_of_index_def Pls_def Bit1_def)
25967
dd602eb20f3f fixed and tuned
haftmann
parents: 25945
diff changeset
   154
lemma [code post]: "Numeral1 = (1\<Colon>index)"
dd602eb20f3f fixed and tuned
haftmann
parents: 25945
diff changeset
   155
  using one_index_code ..
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   156
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   157
definition [simp, code func del]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   158
  "n + m = index_of_nat (nat_of_index n + nat_of_index m)"
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   159
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   160
lemma plus_index_code [code func]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   161
  "index_of_nat n + index_of_nat m = index_of_nat (n + m)"
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   162
  by simp
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   163
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   164
definition [simp, code func del]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   165
  "n - m = index_of_nat (nat_of_index n - nat_of_index m)"
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   166
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   167
definition [simp, code func del]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   168
  "n * m = index_of_nat (nat_of_index n * nat_of_index m)"
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   169
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   170
lemma times_index_code [code func]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   171
  "index_of_nat n * index_of_nat m = index_of_nat (n * m)"
24999
haftmann
parents:
diff changeset
   172
  by simp
haftmann
parents:
diff changeset
   173
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   174
definition [simp, code func del]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   175
  "n div m = index_of_nat (nat_of_index n div nat_of_index m)"
24999
haftmann
parents:
diff changeset
   176
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   177
definition [simp, code func del]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   178
  "n mod m = index_of_nat (nat_of_index n mod nat_of_index m)"
24999
haftmann
parents:
diff changeset
   179
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   180
lemma div_index_code [code func]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   181
  "index_of_nat n div index_of_nat m = index_of_nat (n div m)"
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   182
  by simp
25335
182a001a7ea4 duv, mod, int conversion
haftmann
parents: 24999
diff changeset
   183
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   184
lemma mod_index_code [code func]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   185
  "index_of_nat n mod index_of_nat m = index_of_nat (n mod m)"
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   186
  by simp
24999
haftmann
parents:
diff changeset
   187
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   188
definition [simp, code func del]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   189
  "n \<le> m \<longleftrightarrow> nat_of_index n \<le> nat_of_index m"
24999
haftmann
parents:
diff changeset
   190
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   191
definition [simp, code func del]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   192
  "n < m \<longleftrightarrow> nat_of_index n < nat_of_index m"
24999
haftmann
parents:
diff changeset
   193
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   194
lemma less_eq_index_code [code func]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   195
  "index_of_nat n \<le> index_of_nat m \<longleftrightarrow> n \<le> m"
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   196
  by simp
24999
haftmann
parents:
diff changeset
   197
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   198
lemma less_index_code [code func]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   199
  "index_of_nat n < index_of_nat m \<longleftrightarrow> n < m"
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   200
  by simp
24999
haftmann
parents:
diff changeset
   201
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   202
instance by default (auto simp add: left_distrib index)
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   203
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   204
end
24999
haftmann
parents:
diff changeset
   205
26140
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   206
lemma Suc_index_minus_one: "Suc_index n - 1 = n" by simp
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   207
25928
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   208
lemma index_of_nat_code [code]:
25918
haftmann
parents: 25767
diff changeset
   209
  "index_of_nat = of_nat"
haftmann
parents: 25767
diff changeset
   210
proof
haftmann
parents: 25767
diff changeset
   211
  fix n :: nat
haftmann
parents: 25767
diff changeset
   212
  have "of_nat n = index_of_nat n"
haftmann
parents: 25767
diff changeset
   213
    by (induct n) simp_all
haftmann
parents: 25767
diff changeset
   214
  then show "index_of_nat n = of_nat n"
haftmann
parents: 25767
diff changeset
   215
    by (rule sym)
haftmann
parents: 25767
diff changeset
   216
qed
haftmann
parents: 25767
diff changeset
   217
25928
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   218
lemma index_not_eq_zero: "i \<noteq> index_of_nat 0 \<longleftrightarrow> i \<ge> 1"
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   219
  by (cases i) auto
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   220
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   221
definition
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   222
  nat_of_index_aux :: "index \<Rightarrow> nat \<Rightarrow> nat"
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   223
where
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   224
  "nat_of_index_aux i n = nat_of_index i + n"
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   225
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   226
lemma nat_of_index_aux_code [code]:
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   227
  "nat_of_index_aux i n = (if i = 0 then n else nat_of_index_aux (i - 1) (Suc n))"
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   228
  by (auto simp add: nat_of_index_aux_def index_not_eq_zero)
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   229
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   230
lemma nat_of_index_code [code]:
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   231
  "nat_of_index i = nat_of_index_aux i 0"
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   232
  by (simp add: nat_of_index_aux_def)
25918
haftmann
parents: 25767
diff changeset
   233
24999
haftmann
parents:
diff changeset
   234
haftmann
parents:
diff changeset
   235
subsection {* ML interface *}
haftmann
parents:
diff changeset
   236
haftmann
parents:
diff changeset
   237
ML {*
haftmann
parents:
diff changeset
   238
structure Index =
haftmann
parents:
diff changeset
   239
struct
haftmann
parents:
diff changeset
   240
25928
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   241
fun mk k = HOLogic.mk_number @{typ index} k;
24999
haftmann
parents:
diff changeset
   242
haftmann
parents:
diff changeset
   243
end;
haftmann
parents:
diff changeset
   244
*}
haftmann
parents:
diff changeset
   245
haftmann
parents:
diff changeset
   246
26009
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   247
subsection {* Specialized @{term "op - \<Colon> index \<Rightarrow> index \<Rightarrow> index"},
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   248
  @{term "op div \<Colon> index \<Rightarrow> index \<Rightarrow> index"} and @{term "op mod \<Colon> index \<Rightarrow> index \<Rightarrow> index"}
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   249
  operations *}
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   250
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   251
definition
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   252
  minus_index_aux :: "index \<Rightarrow> index \<Rightarrow> index"
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   253
where
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   254
  [code func del]: "minus_index_aux = op -"
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   255
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   256
lemma [code func]: "op - = minus_index_aux"
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   257
  using minus_index_aux_def ..
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   258
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   259
definition
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   260
  div_mod_index ::  "index \<Rightarrow> index \<Rightarrow> index \<times> index"
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   261
where
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   262
  [code func del]: "div_mod_index n m = (n div m, n mod m)"
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   263
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   264
lemma [code func]:
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   265
  "div_mod_index n m = (if m = 0 then (0, n) else (n div m, n mod m))"
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   266
  unfolding div_mod_index_def by auto
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   267
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   268
lemma [code func]:
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   269
  "n div m = fst (div_mod_index n m)"
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   270
  unfolding div_mod_index_def by simp
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   271
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   272
lemma [code func]:
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   273
  "n mod m = snd (div_mod_index n m)"
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   274
  unfolding div_mod_index_def by simp
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   275
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   276
24999
haftmann
parents:
diff changeset
   277
subsection {* Code serialization *}
haftmann
parents:
diff changeset
   278
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   279
text {* Implementation of indices by bounded integers *}
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   280
24999
haftmann
parents:
diff changeset
   281
code_type index
haftmann
parents:
diff changeset
   282
  (SML "int")
haftmann
parents:
diff changeset
   283
  (OCaml "int")
25967
dd602eb20f3f fixed and tuned
haftmann
parents: 25945
diff changeset
   284
  (Haskell "Int")
24999
haftmann
parents:
diff changeset
   285
haftmann
parents:
diff changeset
   286
code_instance index :: eq
haftmann
parents:
diff changeset
   287
  (Haskell -)
haftmann
parents:
diff changeset
   288
haftmann
parents:
diff changeset
   289
setup {*
25928
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   290
  fold (Numeral.add_code @{const_name number_index_inst.number_of_index}
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   291
    false false) ["SML", "OCaml", "Haskell"]
24999
haftmann
parents:
diff changeset
   292
*}
haftmann
parents:
diff changeset
   293
25918
haftmann
parents: 25767
diff changeset
   294
code_reserved SML Int int
haftmann
parents: 25767
diff changeset
   295
code_reserved OCaml Pervasives int
24999
haftmann
parents:
diff changeset
   296
haftmann
parents:
diff changeset
   297
code_const "op + \<Colon> index \<Rightarrow> index \<Rightarrow> index"
25928
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   298
  (SML "Int.+/ ((_),/ (_))")
25967
dd602eb20f3f fixed and tuned
haftmann
parents: 25945
diff changeset
   299
  (OCaml "Pervasives.( + )")
24999
haftmann
parents:
diff changeset
   300
  (Haskell infixl 6 "+")
haftmann
parents:
diff changeset
   301
26009
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   302
code_const "minus_index_aux \<Colon> index \<Rightarrow> index \<Rightarrow> index"
25918
haftmann
parents: 25767
diff changeset
   303
  (SML "Int.max/ (_/ -/ _,/ 0 : int)")
haftmann
parents: 25767
diff changeset
   304
  (OCaml "Pervasives.max/ (_/ -/ _)/ (0 : int) ")
haftmann
parents: 25767
diff changeset
   305
  (Haskell "max/ (_/ -/ _)/ (0 :: Int)")
24999
haftmann
parents:
diff changeset
   306
haftmann
parents:
diff changeset
   307
code_const "op * \<Colon> index \<Rightarrow> index \<Rightarrow> index"
25928
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   308
  (SML "Int.*/ ((_),/ (_))")
25967
dd602eb20f3f fixed and tuned
haftmann
parents: 25945
diff changeset
   309
  (OCaml "Pervasives.( * )")
24999
haftmann
parents:
diff changeset
   310
  (Haskell infixl 7 "*")
haftmann
parents:
diff changeset
   311
26009
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   312
code_const div_mod_index
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   313
  (SML "(fn n => fn m =>/ (n div m, n mod m))")
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   314
  (OCaml "(fun n -> fun m ->/ (n '/ m, n mod m))")
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   315
  (Haskell "divMod")
25928
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   316
24999
haftmann
parents:
diff changeset
   317
code_const "op = \<Colon> index \<Rightarrow> index \<Rightarrow> bool"
haftmann
parents:
diff changeset
   318
  (SML "!((_ : Int.int) = _)")
25967
dd602eb20f3f fixed and tuned
haftmann
parents: 25945
diff changeset
   319
  (OCaml "!((_ : int) = _)")
24999
haftmann
parents:
diff changeset
   320
  (Haskell infixl 4 "==")
haftmann
parents:
diff changeset
   321
haftmann
parents:
diff changeset
   322
code_const "op \<le> \<Colon> index \<Rightarrow> index \<Rightarrow> bool"
25928
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   323
  (SML "Int.<=/ ((_),/ (_))")
25967
dd602eb20f3f fixed and tuned
haftmann
parents: 25945
diff changeset
   324
  (OCaml "!((_ : int) <= _)")
24999
haftmann
parents:
diff changeset
   325
  (Haskell infix 4 "<=")
haftmann
parents:
diff changeset
   326
haftmann
parents:
diff changeset
   327
code_const "op < \<Colon> index \<Rightarrow> index \<Rightarrow> bool"
25928
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   328
  (SML "Int.</ ((_),/ (_))")
25967
dd602eb20f3f fixed and tuned
haftmann
parents: 25945
diff changeset
   329
  (OCaml "!((_ : int) < _)")
24999
haftmann
parents:
diff changeset
   330
  (Haskell infix 4 "<")
haftmann
parents:
diff changeset
   331
haftmann
parents:
diff changeset
   332
end