src/HOL/Library/Code_Index.thy
author haftmann
Fri, 28 Mar 2008 22:01:01 +0100
changeset 26466 5d6b3a808131
parent 26304 02fbd0e7954a
child 27104 791607529f6d
permissions -rw-r--r--
accomodated to sledgehammer theory dependency requirement
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
25691
8f8d83af100a switched from PreList to ATP_Linkup
haftmann
parents: 25502
diff changeset
     8
imports ATP_Linkup
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
24999
haftmann
parents:
diff changeset
    13
  mapped to target-language builtin integers
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
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    77
lemma index_induct: "P 0 \<Longrightarrow> (\<And>k. P k \<Longrightarrow> P (Suc_index k)) \<Longrightarrow> P k"
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    78
proof -
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    79
  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
    80
  assume "\<And>k. P k \<Longrightarrow> P (Suc_index k)"
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    81
    then have "\<And>n. P (index_of_nat n) \<Longrightarrow> P (Suc_index (index_of_nat (n)))" .
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    82
    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
    83
  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
    84
    by (induct "nat_of_index k") simp_all
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    85
  then show "P k" by simp
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    86
qed
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    87
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    88
lemma Suc_not_Zero_index: "Suc_index k \<noteq> 0"
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    89
  by simp
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    90
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    91
lemma Zero_not_Suc_index: "0 \<noteq> Suc_index k"
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    92
  by simp
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    93
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    94
lemma Suc_Suc_index_eq: "Suc_index k = Suc_index l \<longleftrightarrow> k = l"
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    95
  by simp
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    96
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    97
rep_datatype index
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    98
  distinct  Suc_not_Zero_index Zero_not_Suc_index
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
    99
  inject    Suc_Suc_index_eq
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   100
  induction index_induct
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   101
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   102
lemmas [code func del] = index.recs index.cases
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   103
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   104
declare index_case [case_names nat, cases type: index]
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   105
declare index_induct [case_names nat, induct type: index]
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   106
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   107
lemma [code func]:
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   108
  "index_size = nat_of_index"
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   109
proof (rule ext)
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   110
  fix k
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   111
  have "index_size k = nat_size (nat_of_index k)"
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   112
    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
   113
  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
   114
  finally show "index_size k = nat_of_index k" .
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   115
qed
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   116
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   117
lemma [code func]:
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   118
  "size = nat_of_index"
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   119
proof (rule ext)
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   120
  fix k
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   121
  show "size k = nat_of_index k"
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   122
  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
   123
qed
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   124
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   125
lemma [code func]:
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   126
  "k = l \<longleftrightarrow> nat_of_index k = nat_of_index l"
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   127
  by (cases k, cases l) simp
24999
haftmann
parents:
diff changeset
   128
haftmann
parents:
diff changeset
   129
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   130
subsection {* Indices as datatype of ints *}
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   131
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   132
instantiation index :: number
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   133
begin
24999
haftmann
parents:
diff changeset
   134
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   135
definition
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   136
  "number_of = index_of_nat o nat"
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   137
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   138
instance ..
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   139
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   140
end
24999
haftmann
parents:
diff changeset
   141
26264
89e25cc8da7a yet another useful lemma
haftmann
parents: 26140
diff changeset
   142
lemma nat_of_index_number [simp]:
89e25cc8da7a yet another useful lemma
haftmann
parents: 26140
diff changeset
   143
  "nat_of_index (number_of k) = number_of k"
89e25cc8da7a yet another useful lemma
haftmann
parents: 26140
diff changeset
   144
  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
   145
24999
haftmann
parents:
diff changeset
   146
code_datatype "number_of \<Colon> int \<Rightarrow> index"
haftmann
parents:
diff changeset
   147
haftmann
parents:
diff changeset
   148
haftmann
parents:
diff changeset
   149
subsection {* Basic arithmetic *}
haftmann
parents:
diff changeset
   150
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   151
instantiation index :: "{minus, ordered_semidom, Divides.div, linorder}"
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   152
begin
24999
haftmann
parents:
diff changeset
   153
haftmann
parents:
diff changeset
   154
lemma zero_index_code [code inline, code func]:
haftmann
parents:
diff changeset
   155
  "(0\<Colon>index) = Numeral0"
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   156
  by (simp add: number_of_index_def Pls_def)
25967
dd602eb20f3f fixed and tuned
haftmann
parents: 25945
diff changeset
   157
lemma [code post]: "Numeral0 = (0\<Colon>index)"
dd602eb20f3f fixed and tuned
haftmann
parents: 25945
diff changeset
   158
  using zero_index_code ..
25767
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
definition [simp, code func del]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   161
  "(1\<Colon>index) = index_of_nat 1"
24999
haftmann
parents:
diff changeset
   162
haftmann
parents:
diff changeset
   163
lemma one_index_code [code inline, code func]:
haftmann
parents:
diff changeset
   164
  "(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
   165
  by (simp add: number_of_index_def Pls_def Bit1_def)
25967
dd602eb20f3f fixed and tuned
haftmann
parents: 25945
diff changeset
   166
lemma [code post]: "Numeral1 = (1\<Colon>index)"
dd602eb20f3f fixed and tuned
haftmann
parents: 25945
diff changeset
   167
  using one_index_code ..
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   168
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   169
definition [simp, code func del]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   170
  "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
   171
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   172
lemma plus_index_code [code func]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   173
  "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
   174
  by simp
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   175
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   176
definition [simp, code func del]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   177
  "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
   178
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   179
definition [simp, code func del]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   180
  "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
   181
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   182
lemma times_index_code [code func]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   183
  "index_of_nat n * index_of_nat m = index_of_nat (n * m)"
24999
haftmann
parents:
diff changeset
   184
  by simp
haftmann
parents:
diff changeset
   185
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   186
definition [simp, code func del]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   187
  "n div m = index_of_nat (nat_of_index n div nat_of_index m)"
24999
haftmann
parents:
diff changeset
   188
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   189
definition [simp, code func del]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   190
  "n mod m = index_of_nat (nat_of_index n mod nat_of_index m)"
24999
haftmann
parents:
diff changeset
   191
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   192
lemma div_index_code [code func]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   193
  "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
   194
  by simp
25335
182a001a7ea4 duv, mod, int conversion
haftmann
parents: 24999
diff changeset
   195
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   196
lemma mod_index_code [code func]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   197
  "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
   198
  by simp
24999
haftmann
parents:
diff changeset
   199
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   200
definition [simp, code func del]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   201
  "n \<le> m \<longleftrightarrow> nat_of_index n \<le> nat_of_index m"
24999
haftmann
parents:
diff changeset
   202
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   203
definition [simp, code func del]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   204
  "n < m \<longleftrightarrow> nat_of_index n < nat_of_index m"
24999
haftmann
parents:
diff changeset
   205
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   206
lemma less_eq_index_code [code func]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   207
  "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
   208
  by simp
24999
haftmann
parents:
diff changeset
   209
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   210
lemma less_index_code [code func]:
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   211
  "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
   212
  by simp
24999
haftmann
parents:
diff changeset
   213
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   214
instance by default (auto simp add: left_distrib index)
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   215
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   216
end
24999
haftmann
parents:
diff changeset
   217
26140
e45375135052 Zero/Suc recursion combinator for type index
haftmann
parents: 26086
diff changeset
   218
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
   219
25928
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   220
lemma index_of_nat_code [code]:
25918
haftmann
parents: 25767
diff changeset
   221
  "index_of_nat = of_nat"
haftmann
parents: 25767
diff changeset
   222
proof
haftmann
parents: 25767
diff changeset
   223
  fix n :: nat
haftmann
parents: 25767
diff changeset
   224
  have "of_nat n = index_of_nat n"
haftmann
parents: 25767
diff changeset
   225
    by (induct n) simp_all
haftmann
parents: 25767
diff changeset
   226
  then show "index_of_nat n = of_nat n"
haftmann
parents: 25767
diff changeset
   227
    by (rule sym)
haftmann
parents: 25767
diff changeset
   228
qed
haftmann
parents: 25767
diff changeset
   229
25928
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   230
lemma index_not_eq_zero: "i \<noteq> index_of_nat 0 \<longleftrightarrow> i \<ge> 1"
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   231
  by (cases i) auto
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   232
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   233
definition
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   234
  nat_of_index_aux :: "index \<Rightarrow> nat \<Rightarrow> nat"
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   235
where
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   236
  "nat_of_index_aux i n = nat_of_index i + n"
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   237
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   238
lemma nat_of_index_aux_code [code]:
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   239
  "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
   240
  by (auto simp add: nat_of_index_aux_def index_not_eq_zero)
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   241
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   242
lemma nat_of_index_code [code]:
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   243
  "nat_of_index i = nat_of_index_aux i 0"
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   244
  by (simp add: nat_of_index_aux_def)
25918
haftmann
parents: 25767
diff changeset
   245
24999
haftmann
parents:
diff changeset
   246
haftmann
parents:
diff changeset
   247
subsection {* ML interface *}
haftmann
parents:
diff changeset
   248
haftmann
parents:
diff changeset
   249
ML {*
haftmann
parents:
diff changeset
   250
structure Index =
haftmann
parents:
diff changeset
   251
struct
haftmann
parents:
diff changeset
   252
25928
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   253
fun mk k = HOLogic.mk_number @{typ index} k;
24999
haftmann
parents:
diff changeset
   254
haftmann
parents:
diff changeset
   255
end;
haftmann
parents:
diff changeset
   256
*}
haftmann
parents:
diff changeset
   257
haftmann
parents:
diff changeset
   258
26009
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   259
subsection {* Specialized @{term "op - \<Colon> index \<Rightarrow> index \<Rightarrow> index"},
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   260
  @{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
   261
  operations *}
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   262
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   263
definition
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   264
  minus_index_aux :: "index \<Rightarrow> index \<Rightarrow> index"
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   265
where
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   266
  [code func del]: "minus_index_aux = op -"
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]: "op - = minus_index_aux"
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   269
  using minus_index_aux_def ..
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   270
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   271
definition
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   272
  div_mod_index ::  "index \<Rightarrow> index \<Rightarrow> index \<times> index"
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   273
where
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   274
  [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
   275
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   276
lemma [code func]:
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   277
  "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
   278
  unfolding div_mod_index_def by auto
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   279
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   280
lemma [code func]:
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   281
  "n div m = fst (div_mod_index n m)"
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   282
  unfolding div_mod_index_def by simp
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   283
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   284
lemma [code func]:
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   285
  "n mod m = snd (div_mod_index n m)"
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   286
  unfolding div_mod_index_def by simp
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   287
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   288
24999
haftmann
parents:
diff changeset
   289
subsection {* Code serialization *}
haftmann
parents:
diff changeset
   290
25767
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   291
text {* Implementation of indices by bounded integers *}
852bce03412a index now a copy of nat rather than int
haftmann
parents: 25691
diff changeset
   292
24999
haftmann
parents:
diff changeset
   293
code_type index
haftmann
parents:
diff changeset
   294
  (SML "int")
haftmann
parents:
diff changeset
   295
  (OCaml "int")
25967
dd602eb20f3f fixed and tuned
haftmann
parents: 25945
diff changeset
   296
  (Haskell "Int")
24999
haftmann
parents:
diff changeset
   297
haftmann
parents:
diff changeset
   298
code_instance index :: eq
haftmann
parents:
diff changeset
   299
  (Haskell -)
haftmann
parents:
diff changeset
   300
haftmann
parents:
diff changeset
   301
setup {*
25928
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   302
  fold (Numeral.add_code @{const_name number_index_inst.number_of_index}
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   303
    false false) ["SML", "OCaml", "Haskell"]
24999
haftmann
parents:
diff changeset
   304
*}
haftmann
parents:
diff changeset
   305
25918
haftmann
parents: 25767
diff changeset
   306
code_reserved SML Int int
haftmann
parents: 25767
diff changeset
   307
code_reserved OCaml Pervasives int
24999
haftmann
parents:
diff changeset
   308
haftmann
parents:
diff changeset
   309
code_const "op + \<Colon> index \<Rightarrow> index \<Rightarrow> index"
25928
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   310
  (SML "Int.+/ ((_),/ (_))")
25967
dd602eb20f3f fixed and tuned
haftmann
parents: 25945
diff changeset
   311
  (OCaml "Pervasives.( + )")
24999
haftmann
parents:
diff changeset
   312
  (Haskell infixl 6 "+")
haftmann
parents:
diff changeset
   313
26009
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   314
code_const "minus_index_aux \<Colon> index \<Rightarrow> index \<Rightarrow> index"
25918
haftmann
parents: 25767
diff changeset
   315
  (SML "Int.max/ (_/ -/ _,/ 0 : int)")
haftmann
parents: 25767
diff changeset
   316
  (OCaml "Pervasives.max/ (_/ -/ _)/ (0 : int) ")
haftmann
parents: 25767
diff changeset
   317
  (Haskell "max/ (_/ -/ _)/ (0 :: Int)")
24999
haftmann
parents:
diff changeset
   318
haftmann
parents:
diff changeset
   319
code_const "op * \<Colon> index \<Rightarrow> index \<Rightarrow> index"
25928
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   320
  (SML "Int.*/ ((_),/ (_))")
25967
dd602eb20f3f fixed and tuned
haftmann
parents: 25945
diff changeset
   321
  (OCaml "Pervasives.( * )")
24999
haftmann
parents:
diff changeset
   322
  (Haskell infixl 7 "*")
haftmann
parents:
diff changeset
   323
26009
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   324
code_const div_mod_index
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   325
  (SML "(fn n => fn m =>/ (n div m, n mod m))")
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   326
  (OCaml "(fun n -> fun m ->/ (n '/ m, n mod m))")
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   327
  (Haskell "divMod")
25928
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   328
24999
haftmann
parents:
diff changeset
   329
code_const "op = \<Colon> index \<Rightarrow> index \<Rightarrow> bool"
haftmann
parents:
diff changeset
   330
  (SML "!((_ : Int.int) = _)")
25967
dd602eb20f3f fixed and tuned
haftmann
parents: 25945
diff changeset
   331
  (OCaml "!((_ : int) = _)")
24999
haftmann
parents:
diff changeset
   332
  (Haskell infixl 4 "==")
haftmann
parents:
diff changeset
   333
haftmann
parents:
diff changeset
   334
code_const "op \<le> \<Colon> index \<Rightarrow> index \<Rightarrow> bool"
25928
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   335
  (SML "Int.<=/ ((_),/ (_))")
25967
dd602eb20f3f fixed and tuned
haftmann
parents: 25945
diff changeset
   336
  (OCaml "!((_ : int) <= _)")
24999
haftmann
parents:
diff changeset
   337
  (Haskell infix 4 "<=")
haftmann
parents:
diff changeset
   338
haftmann
parents:
diff changeset
   339
code_const "op < \<Colon> index \<Rightarrow> index \<Rightarrow> bool"
25928
042e877d9841 tuned code setup
haftmann
parents: 25918
diff changeset
   340
  (SML "Int.</ ((_),/ (_))")
25967
dd602eb20f3f fixed and tuned
haftmann
parents: 25945
diff changeset
   341
  (OCaml "!((_ : int) < _)")
24999
haftmann
parents:
diff changeset
   342
  (Haskell infix 4 "<")
haftmann
parents:
diff changeset
   343
haftmann
parents:
diff changeset
   344
end