src/HOL/Library/Efficient_Nat.thy
author haftmann
Fri, 28 Mar 2008 22:01:02 +0100
changeset 26467 fdd4d78e1e05
parent 26100 fbc60cd02ae2
child 27368 9f90ac19e32b
permissions -rw-r--r--
not depends on Main any longer
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
23854
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
     1
(*  Title:      HOL/Library/Efficient_Nat.thy
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
     2
    ID:         $Id$
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
     3
    Author:     Stefan Berghofer, Florian Haftmann, TU Muenchen
23854
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
     4
*)
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
     5
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
     6
header {* Implementation of natural numbers by target-language integers *}
23854
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
     7
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
     8
theory Efficient_Nat
26467
fdd4d78e1e05 not depends on Main any longer
haftmann
parents: 26100
diff changeset
     9
imports Code_Integer Code_Index
23854
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
    10
begin
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
    11
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
    12
text {*
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    13
  When generating code for functions on natural numbers, the
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    14
  canonical representation using @{term "0::nat"} and
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    15
  @{term "Suc"} is unsuitable for computations involving large
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    16
  numbers.  The efficiency of the generated code can be improved
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    17
  drastically by implementing natural numbers by target-language
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    18
  integers.  To do this, just include this theory.
23854
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
    19
*}
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
    20
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    21
subsection {* Basic arithmetic *}
23854
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
    22
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
    23
text {*
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
    24
  Most standard arithmetic functions on natural numbers are implemented
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
    25
  using their counterparts on the integers:
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
    26
*}
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
    27
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    28
code_datatype number_nat_inst.number_of_nat
24715
f96d86cdbe5a Efficient_Nat and Pretty_Int integrated with ML_Int
haftmann
parents: 24630
diff changeset
    29
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    30
lemma zero_nat_code [code, code unfold]:
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    31
  "0 = (Numeral0 :: nat)"
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    32
  by simp
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    33
lemmas [code post] = zero_nat_code [symmetric]
24715
f96d86cdbe5a Efficient_Nat and Pretty_Int integrated with ML_Int
haftmann
parents: 24630
diff changeset
    34
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    35
lemma one_nat_code [code, code unfold]:
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    36
  "1 = (Numeral1 :: nat)"
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    37
  by simp
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    38
lemmas [code post] = one_nat_code [symmetric]
24715
f96d86cdbe5a Efficient_Nat and Pretty_Int integrated with ML_Int
haftmann
parents: 24630
diff changeset
    39
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    40
lemma Suc_code [code]:
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    41
  "Suc n = n + 1"
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    42
  by simp
24715
f96d86cdbe5a Efficient_Nat and Pretty_Int integrated with ML_Int
haftmann
parents: 24630
diff changeset
    43
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    44
lemma plus_nat_code [code]:
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    45
  "n + m = nat (of_nat n + of_nat m)"
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    46
  by simp
24715
f96d86cdbe5a Efficient_Nat and Pretty_Int integrated with ML_Int
haftmann
parents: 24630
diff changeset
    47
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    48
lemma minus_nat_code [code]:
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    49
  "n - m = nat (of_nat n - of_nat m)"
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    50
  by simp
24715
f96d86cdbe5a Efficient_Nat and Pretty_Int integrated with ML_Int
haftmann
parents: 24630
diff changeset
    51
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    52
lemma times_nat_code [code]:
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    53
  "n * m = nat (of_nat n * of_nat m)"
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    54
  unfolding of_nat_mult [symmetric] by simp
24715
f96d86cdbe5a Efficient_Nat and Pretty_Int integrated with ML_Int
haftmann
parents: 24630
diff changeset
    55
26009
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
    56
text {* Specialized @{term "op div \<Colon> nat \<Rightarrow> nat \<Rightarrow> nat"} 
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
    57
  and @{term "op mod \<Colon> nat \<Rightarrow> nat \<Rightarrow> nat"} operations. *}
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
    58
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
    59
definition
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26009
diff changeset
    60
  divmod_aux ::  "nat \<Rightarrow> nat \<Rightarrow> nat \<times> nat"
26009
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
    61
where
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26009
diff changeset
    62
  [code func del]: "divmod_aux = divmod"
24715
f96d86cdbe5a Efficient_Nat and Pretty_Int integrated with ML_Int
haftmann
parents: 24630
diff changeset
    63
26009
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
    64
lemma [code func]:
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26009
diff changeset
    65
  "divmod n m = (if m = 0 then (0, n) else divmod_aux n m)"
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26009
diff changeset
    66
  unfolding divmod_aux_def divmod_div_mod by simp
26009
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
    67
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26009
diff changeset
    68
lemma divmod_aux_code [code]:
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26009
diff changeset
    69
  "divmod_aux n m = (nat (of_nat n div of_nat m), nat (of_nat n mod of_nat m))"
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26009
diff changeset
    70
  unfolding divmod_aux_def divmod_div_mod zdiv_int [symmetric] zmod_int [symmetric] by simp
24715
f96d86cdbe5a Efficient_Nat and Pretty_Int integrated with ML_Int
haftmann
parents: 24630
diff changeset
    71
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    72
lemma eq_nat_code [code]:
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    73
  "n = m \<longleftrightarrow> (of_nat n \<Colon> int) = of_nat m"
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    74
  by simp
24715
f96d86cdbe5a Efficient_Nat and Pretty_Int integrated with ML_Int
haftmann
parents: 24630
diff changeset
    75
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    76
lemma less_eq_nat_code [code]:
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    77
  "n \<le> m \<longleftrightarrow> (of_nat n \<Colon> int) \<le> of_nat m"
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    78
  by simp
23854
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
    79
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    80
lemma less_nat_code [code]:
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    81
  "n < m \<longleftrightarrow> (of_nat n \<Colon> int) < of_nat m"
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    82
  by simp
23854
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
    83
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    84
subsection {* Case analysis *}
23854
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
    85
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
    86
text {*
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    87
  Case analysis on natural numbers is rephrased using a conditional
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    88
  expression:
23854
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
    89
*}
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
    90
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    91
lemma [code func, code unfold]:
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    92
  "nat_case = (\<lambda>f g n. if n = 0 then f else g (n - 1))"
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
    93
  by (auto simp add: expand_fun_eq dest!: gr0_implies_Suc)
25615
b337edd55a07 target language div and mod
haftmann
parents: 25488
diff changeset
    94
23854
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
    95
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
    96
subsection {* Preprocessors *}
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
    97
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
    98
text {*
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
    99
  In contrast to @{term "Suc n"}, the term @{term "n + (1::nat)"} is no longer
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   100
  a constructor term. Therefore, all occurrences of this term in a position
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   101
  where a pattern is expected (i.e.\ on the left-hand side of a recursion
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   102
  equation or in the arguments of an inductive relation in an introduction
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   103
  rule) must be eliminated.
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   104
  This can be accomplished by applying the following transformation rules:
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   105
*}
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   106
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   107
lemma Suc_if_eq: "(\<And>n. f (Suc n) = h n) \<Longrightarrow> f 0 = g \<Longrightarrow>
23854
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   108
  f n = (if n = 0 then g else h (n - 1))"
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   109
  by (case_tac n) simp_all
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   110
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   111
lemma Suc_clause: "(\<And>n. P n (Suc n)) \<Longrightarrow> n \<noteq> 0 \<Longrightarrow> P (n - 1) n"
23854
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   112
  by (case_tac n) simp_all
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   113
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   114
text {*
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   115
  The rules above are built into a preprocessor that is plugged into
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   116
  the code generator. Since the preprocessor for introduction rules
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   117
  does not know anything about modes, some of the modes that worked
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   118
  for the canonical representation of natural numbers may no longer work.
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   119
*}
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   120
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   121
(*<*)
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   122
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   123
ML {*
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   124
fun remove_suc thy thms =
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   125
  let
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   126
    val vname = Name.variant (map fst
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   127
      (fold (Term.add_varnames o Thm.full_prop_of) thms [])) "x";
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   128
    val cv = cterm_of thy (Var ((vname, 0), HOLogic.natT));
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   129
    fun lhs_of th = snd (Thm.dest_comb
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   130
      (fst (Thm.dest_comb (snd (Thm.dest_comb (cprop_of th))))));
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   131
    fun rhs_of th = snd (Thm.dest_comb (snd (Thm.dest_comb (cprop_of th))));
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   132
    fun find_vars ct = (case term_of ct of
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   133
        (Const ("Suc", _) $ Var _) => [(cv, snd (Thm.dest_comb ct))]
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   134
      | _ $ _ =>
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   135
        let val (ct1, ct2) = Thm.dest_comb ct
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   136
        in 
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   137
          map (apfst (fn ct => Thm.capply ct ct2)) (find_vars ct1) @
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   138
          map (apfst (Thm.capply ct1)) (find_vars ct2)
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   139
        end
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   140
      | _ => []);
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   141
    val eqs = maps
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   142
      (fn th => map (pair th) (find_vars (lhs_of th))) thms;
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   143
    fun mk_thms (th, (ct, cv')) =
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   144
      let
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   145
        val th' =
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   146
          Thm.implies_elim
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   147
           (Conv.fconv_rule (Thm.beta_conversion true)
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   148
             (Drule.instantiate'
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   149
               [SOME (ctyp_of_term ct)] [SOME (Thm.cabs cv ct),
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   150
                 SOME (Thm.cabs cv' (rhs_of th)), NONE, SOME cv']
24222
a8a28c15c5cc new structure for code generator modules
haftmann
parents: 24195
diff changeset
   151
               @{thm Suc_if_eq})) (Thm.forall_intr cv' th)
23854
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   152
      in
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   153
        case map_filter (fn th'' =>
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   154
            SOME (th'', singleton
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   155
              (Variable.trade (K (fn [th'''] => [th''' RS th'])) (Variable.thm_context th'')) th'')
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   156
          handle THM _ => NONE) thms of
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   157
            [] => NONE
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   158
          | thps =>
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   159
              let val (ths1, ths2) = split_list thps
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   160
              in SOME (subtract Thm.eq_thm (th :: ths1) thms @ ths2) end
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   161
      end
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   162
  in
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   163
    case get_first mk_thms eqs of
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   164
      NONE => thms
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   165
    | SOME x => remove_suc thy x
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   166
  end;
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   167
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   168
fun eqn_suc_preproc thy ths =
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   169
  let
24222
a8a28c15c5cc new structure for code generator modules
haftmann
parents: 24195
diff changeset
   170
    val dest = fst o HOLogic.dest_eq o HOLogic.dest_Trueprop o prop_of;
a8a28c15c5cc new structure for code generator modules
haftmann
parents: 24195
diff changeset
   171
    fun contains_suc t = member (op =) (term_consts t) @{const_name Suc};
23854
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   172
  in
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   173
    if forall (can dest) ths andalso
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   174
      exists (contains_suc o dest) ths
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   175
    then remove_suc thy ths else ths
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   176
  end;
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   177
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   178
fun remove_suc_clause thy thms =
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   179
  let
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   180
    val vname = Name.variant (map fst
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   181
      (fold (Term.add_varnames o Thm.full_prop_of) thms [])) "x";
24222
a8a28c15c5cc new structure for code generator modules
haftmann
parents: 24195
diff changeset
   182
    fun find_var (t as Const (@{const_name Suc}, _) $ (v as Var _)) = SOME (t, v)
23854
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   183
      | find_var (t $ u) = (case find_var t of NONE => find_var u | x => x)
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   184
      | find_var _ = NONE;
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   185
    fun find_thm th =
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   186
      let val th' = Conv.fconv_rule ObjectLogic.atomize th
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   187
      in Option.map (pair (th, th')) (find_var (prop_of th')) end
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   188
  in
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   189
    case get_first find_thm thms of
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   190
      NONE => thms
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   191
    | SOME ((th, th'), (Sucv, v)) =>
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   192
        let
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   193
          val cert = cterm_of (Thm.theory_of_thm th);
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   194
          val th'' = ObjectLogic.rulify (Thm.implies_elim
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   195
            (Conv.fconv_rule (Thm.beta_conversion true)
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   196
              (Drule.instantiate' []
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   197
                [SOME (cert (lambda v (Abs ("x", HOLogic.natT,
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   198
                   abstract_over (Sucv,
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   199
                     HOLogic.dest_Trueprop (prop_of th')))))),
24222
a8a28c15c5cc new structure for code generator modules
haftmann
parents: 24195
diff changeset
   200
                 SOME (cert v)] @{thm Suc_clause}))
23854
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   201
            (Thm.forall_intr (cert v) th'))
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   202
        in
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   203
          remove_suc_clause thy (map (fn th''' =>
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   204
            if (op = o pairself prop_of) (th''', th) then th'' else th''') thms)
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   205
        end
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   206
  end;
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   207
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   208
fun clause_suc_preproc thy ths =
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   209
  let
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   210
    val dest = fst o HOLogic.dest_mem o HOLogic.dest_Trueprop
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   211
  in
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   212
    if forall (can (dest o concl_of)) ths andalso
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   213
      exists (fn th => member (op =) (foldr add_term_consts
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   214
        [] (map_filter (try dest) (concl_of th :: prems_of th))) "Suc") ths
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   215
    then remove_suc_clause thy ths else ths
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   216
  end;
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   217
25967
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   218
fun lift_obj_eq f thy thms =
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   219
  thms
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   220
  |> try (
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   221
    map (fn thm => thm RS @{thm meta_eq_to_obj_eq})
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   222
    #> f thy
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   223
    #> map (fn thm => thm RS @{thm eq_reflection})
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   224
    #> map (Conv.fconv_rule Drule.beta_eta_conversion))
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   225
  |> the_default thms
23854
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   226
*}
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   227
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   228
setup {*
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   229
  Codegen.add_preprocessor eqn_suc_preproc
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   230
  #> Codegen.add_preprocessor clause_suc_preproc
24222
a8a28c15c5cc new structure for code generator modules
haftmann
parents: 24195
diff changeset
   231
  #> Code.add_preproc ("eqn_Suc", lift_obj_eq eqn_suc_preproc)
a8a28c15c5cc new structure for code generator modules
haftmann
parents: 24195
diff changeset
   232
  #> Code.add_preproc ("clause_Suc", lift_obj_eq clause_suc_preproc)
23854
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   233
*}
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   234
(*>*)
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   235
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   236
subsection {* Target language setup *}
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   237
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   238
text {*
25967
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   239
  For ML, we map @{typ nat} to target language integers, where we
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   240
  assert that values are always non-negative.
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   241
*}
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   242
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   243
code_type nat
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   244
  (SML "int")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   245
  (OCaml "Big'_int.big'_int")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   246
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   247
types_code
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   248
  nat ("int")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   249
attach (term_of) {*
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   250
val term_of_nat = HOLogic.mk_number HOLogic.natT;
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   251
*}
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   252
attach (test) {*
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   253
fun gen_nat i =
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   254
  let val n = random_range 0 i
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   255
  in (n, fn () => term_of_nat n) end;
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   256
*}
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   257
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   258
text {*
25967
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   259
  For Haskell we define our own @{typ nat} type.  The reason
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   260
  is that we have to distinguish type class instances
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   261
  for @{typ nat} and @{typ int}.
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   262
*}
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   263
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   264
code_include Haskell "Nat" {*
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   265
newtype Nat = Nat Integer deriving (Show, Eq);
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   266
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   267
instance Num Nat where {
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   268
  fromInteger k = Nat (if k >= 0 then k else 0);
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   269
  Nat n + Nat m = Nat (n + m);
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   270
  Nat n - Nat m = fromInteger (n - m);
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   271
  Nat n * Nat m = Nat (n * m);
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   272
  abs n = n;
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   273
  signum _ = 1;
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   274
  negate n = error "negate Nat";
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   275
};
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   276
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   277
instance Ord Nat where {
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   278
  Nat n <= Nat m = n <= m;
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   279
  Nat n < Nat m = n < m;
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   280
};
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   281
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   282
instance Real Nat where {
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   283
  toRational (Nat n) = toRational n;
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   284
};
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   285
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   286
instance Enum Nat where {
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   287
  toEnum k = fromInteger (toEnum k);
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   288
  fromEnum (Nat n) = fromEnum n;
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   289
};
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   290
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   291
instance Integral Nat where {
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   292
  toInteger (Nat n) = n;
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   293
  divMod n m = quotRem n m;
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   294
  quotRem (Nat n) (Nat m) = (Nat k, Nat l) where (k, l) = quotRem n m;
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   295
};
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   296
*}
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   297
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   298
code_reserved Haskell Nat
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   299
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   300
code_type nat
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   301
  (Haskell "Nat")
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   302
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   303
code_instance nat :: eq
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   304
  (Haskell -)
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   305
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   306
text {*
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   307
  Natural numerals.
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   308
*}
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   309
25967
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   310
lemma [code inline, symmetric, code post]:
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   311
  "nat (number_of i) = number_nat_inst.number_of_nat i"
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   312
  -- {* this interacts as desired with @{thm nat_number_of_def} *}
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   313
  by (simp add: number_nat_inst.number_of_nat)
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   314
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   315
setup {*
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   316
  fold (Numeral.add_code @{const_name number_nat_inst.number_of_nat}
25967
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   317
    true false) ["SML", "OCaml", "Haskell"]
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   318
*}
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   319
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   320
text {*
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   321
  Since natural numbers are implemented
25967
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   322
  using integers in ML, the coercion function @{const "of_nat"} of type
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   323
  @{typ "nat \<Rightarrow> int"} is simply implemented by the identity function.
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   324
  For the @{const "nat"} function for converting an integer to a natural
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   325
  number, we give a specific implementation using an ML function that
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   326
  returns its input value, provided that it is non-negative, and otherwise
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   327
  returns @{text "0"}.
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   328
*}
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   329
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   330
definition
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   331
  int :: "nat \<Rightarrow> int"
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   332
where
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   333
  [code func del]: "int = of_nat"
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   334
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   335
lemma int_code' [code func]:
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   336
  "int (number_of l) = (if neg (number_of l \<Colon> int) then 0 else number_of l)"
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   337
  unfolding int_nat_number_of [folded int_def] ..
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   338
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   339
lemma nat_code' [code func]:
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   340
  "nat (number_of l) = (if neg (number_of l \<Colon> int) then 0 else number_of l)"
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   341
  by auto
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   342
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   343
lemma of_nat_int [code unfold]:
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   344
  "of_nat = int" by (simp add: int_def)
25967
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   345
declare of_nat_int [symmetric, code post]
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   346
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   347
code_const int
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   348
  (SML "_")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   349
  (OCaml "_")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   350
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   351
consts_code
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   352
  int ("(_)")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   353
  nat ("\<module>nat")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   354
attach {*
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   355
fun nat i = if i < 0 then 0 else i;
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   356
*}
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   357
25967
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   358
code_const nat
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   359
  (SML "IntInf.max/ (/0,/ _)")
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   360
  (OCaml "Big'_int.max'_big'_int/ Big'_int.zero'_big'_int")
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   361
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   362
text {* For Haskell, things are slightly different again. *}
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   363
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   364
code_const int and nat
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   365
  (Haskell "toInteger" and "fromInteger")
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   366
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   367
text {* Conversion from and to indices. *}
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   368
25967
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   369
code_const index_of_nat
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   370
  (SML "IntInf.toInt")
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   371
  (OCaml "Big'_int.int'_of'_big'_int")
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   372
  (Haskell "toEnum")
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   373
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   374
code_const nat_of_index
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   375
  (SML "IntInf.fromInt")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   376
  (OCaml "Big'_int.big'_int'_of'_int")
25967
dd602eb20f3f fixed and tuned
haftmann
parents: 25931
diff changeset
   377
  (Haskell "fromEnum")
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   378
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   379
text {* Using target language arithmetic operations whenever appropriate *}
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   380
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   381
code_const "op + \<Colon> nat \<Rightarrow> nat \<Rightarrow> nat"
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   382
  (SML "IntInf.+ ((_), (_))")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   383
  (OCaml "Big'_int.add'_big'_int")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   384
  (Haskell infixl 6 "+")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   385
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   386
code_const "op * \<Colon> nat \<Rightarrow> nat \<Rightarrow> nat"
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   387
  (SML "IntInf.* ((_), (_))")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   388
  (OCaml "Big'_int.mult'_big'_int")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   389
  (Haskell infixl 7 "*")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   390
26100
fbc60cd02ae2 using only an relation predicate to construct div and mod
haftmann
parents: 26009
diff changeset
   391
code_const divmod_aux
26009
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   392
  (SML "IntInf.divMod/ ((_),/ (_))")
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   393
  (OCaml "Big'_int.quomod'_big'_int")
b6a64fe38634 treating division by zero properly
haftmann
parents: 25967
diff changeset
   394
  (Haskell "divMod")
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   395
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   396
code_const "op = \<Colon> nat \<Rightarrow> nat \<Rightarrow> bool"
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   397
  (SML "!((_ : IntInf.int) = _)")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   398
  (OCaml "Big'_int.eq'_big'_int")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   399
  (Haskell infixl 4 "==")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   400
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   401
code_const "op \<le> \<Colon> nat \<Rightarrow> nat \<Rightarrow> bool"
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   402
  (SML "IntInf.<= ((_), (_))")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   403
  (OCaml "Big'_int.le'_big'_int")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   404
  (Haskell infix 4 "<=")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   405
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   406
code_const "op < \<Colon> nat \<Rightarrow> nat \<Rightarrow> bool"
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   407
  (SML "IntInf.< ((_), (_))")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   408
  (OCaml "Big'_int.lt'_big'_int")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   409
  (Haskell infix 4 "<")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   410
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   411
consts_code
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   412
  0                            ("0")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   413
  Suc                          ("(_ +/ 1)")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   414
  "op + \<Colon>  nat \<Rightarrow> nat \<Rightarrow> nat"   ("(_ +/ _)")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   415
  "op * \<Colon>  nat \<Rightarrow> nat \<Rightarrow> nat"   ("(_ */ _)")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   416
  "op \<le> \<Colon>  nat \<Rightarrow> nat \<Rightarrow> bool"  ("(_ <=/ _)")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   417
  "op < \<Colon>  nat \<Rightarrow> nat \<Rightarrow> bool"  ("(_ </ _)")
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   418
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   419
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   420
text {* Module names *}
23854
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   421
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   422
code_modulename SML
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   423
  Nat Integer
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   424
  Divides Integer
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   425
  Efficient_Nat Integer
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   426
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   427
code_modulename OCaml
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   428
  Nat Integer
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   429
  Divides Integer
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   430
  Efficient_Nat Integer
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   431
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   432
code_modulename Haskell
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   433
  Nat Integer
24195
haftmann
parents: 23854
diff changeset
   434
  Divides Integer
23854
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   435
  Efficient_Nat Integer
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   436
25931
b1d1ab3e5a2e streamlined and improved
haftmann
parents: 25919
diff changeset
   437
hide const int
23854
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   438
688a8a7bcd4e uniform naming conventions for CG theories
haftmann
parents:
diff changeset
   439
end