src/HOL/Library/Permutation.thy
author wenzelm
Sun, 04 Feb 2001 19:42:54 +0100
changeset 11054 a5404c70982f
child 11153 950ede59c05a
permissions -rw-r--r--
moved from Induct/ to Library/
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
11054
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
     1
(*  Title:      HOL/Library/Permutation.thy
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
     4
    Copyright   1995  University of Cambridge
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
     5
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
     6
TODO: it would be nice to prove (for "multiset", defined on
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
     7
HOL/ex/Sorting.thy) xs <~~> ys = (\<forall>x. multiset xs x = multiset ys x)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
     8
*)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
     9
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    10
header {*
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    11
 \title{Permutations}
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    12
 \author{Lawrence C Paulson and Thomas M Rasmussen}
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    13
*}
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    14
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    15
theory Permutation = Main:
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    16
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    17
consts
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    18
  perm :: "('a list * 'a list) set"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    19
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    20
syntax
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    21
  "_perm" :: "'a list => 'a list => bool"    ("_ <~~> _"  [50, 50] 50)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    22
translations
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    23
  "x <~~> y" == "(x, y) \<in> perm"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    24
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    25
inductive perm
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    26
  intros [intro]
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    27
    Nil: "[] <~~> []"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    28
    swap: "y # x # l <~~> x # y # l"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    29
    Cons: "xs <~~> ys ==> z # xs <~~> z # ys"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    30
    trans: "xs <~~> ys ==> ys <~~> zs ==> xs <~~> zs"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    31
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    32
lemma perm_refl [iff]: "l <~~> l"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    33
  apply (induct l)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    34
   apply auto
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    35
  done
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    36
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    37
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    38
subsection {* Some examples of rule induction on permutations *}
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    39
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    40
lemma xperm_empty_imp_aux: "xs <~~> ys ==> xs = [] --> ys = []"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    41
    -- {* the form of the premise lets the induction bind @{term xs} and @{term ys} *}
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    42
  apply (erule perm.induct)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    43
     apply (simp_all (no_asm_simp))
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    44
  done
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    45
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    46
lemma xperm_empty_imp: "[] <~~> ys ==> ys = []"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    47
  apply (insert xperm_empty_imp_aux)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    48
  apply blast
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    49
  done
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    50
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    51
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    52
text {*
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    53
  \medskip This more general theorem is easier to understand!
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    54
  *}
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    55
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    56
lemma perm_length: "xs <~~> ys ==> length xs = length ys"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    57
  apply (erule perm.induct)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    58
     apply simp_all
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    59
  done
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    60
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    61
lemma perm_empty_imp: "[] <~~> xs ==> xs = []"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    62
  apply (drule perm_length)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    63
  apply auto
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    64
  done
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    65
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    66
lemma perm_sym: "xs <~~> ys ==> ys <~~> xs"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    67
  apply (erule perm.induct)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    68
     apply auto
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    69
  done
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    70
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    71
lemma perm_mem [rule_format]: "xs <~~> ys ==> x mem xs --> x mem ys"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    72
  apply (erule perm.induct)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    73
     apply auto
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    74
  done
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    75
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    76
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    77
subsection {* Ways of making new permutations *}
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    78
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    79
text {*
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    80
  We can insert the head anywhere in the list.
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    81
*}
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    82
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    83
lemma perm_append_Cons: "a # xs @ ys <~~> xs @ a # ys"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    84
  apply (induct xs)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    85
   apply auto
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    86
  done
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    87
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    88
lemma perm_append_swap: "xs @ ys <~~> ys @ xs"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    89
  apply (induct xs)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    90
    apply simp_all
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    91
  apply (blast intro: perm_append_Cons)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    92
  done
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    93
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    94
lemma perm_append_single: "a # xs <~~> xs @ [a]"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    95
  apply (rule perm.trans)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    96
   prefer 2
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    97
   apply (rule perm_append_swap)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    98
  apply simp
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
    99
  done
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   100
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   101
lemma perm_rev: "rev xs <~~> xs"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   102
  apply (induct xs)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   103
   apply simp_all
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   104
  apply (blast intro: perm_sym perm_append_single)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   105
  done
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   106
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   107
lemma perm_append1: "xs <~~> ys ==> l @ xs <~~> l @ ys"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   108
  apply (induct l)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   109
   apply auto
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   110
  done
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   111
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   112
lemma perm_append2: "xs <~~> ys ==> xs @ l <~~> ys @ l"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   113
  apply (blast intro!: perm_append_swap perm_append1)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   114
  done
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   115
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   116
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   117
subsection {* Further results *}
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   118
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   119
lemma perm_empty [iff]: "([] <~~> xs) = (xs = [])"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   120
  apply (blast intro: perm_empty_imp)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   121
  done
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   122
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   123
lemma perm_empty2 [iff]: "(xs <~~> []) = (xs = [])"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   124
  apply auto
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   125
  apply (erule perm_sym [THEN perm_empty_imp])
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   126
  done
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   127
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   128
lemma perm_sing_imp [rule_format]: "ys <~~> xs ==> xs = [y] --> ys = [y]"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   129
  apply (erule perm.induct)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   130
     apply auto
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   131
  done
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   132
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   133
lemma perm_sing_eq [iff]: "(ys <~~> [y]) = (ys = [y])"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   134
  apply (blast intro: perm_sing_imp)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   135
  done
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   136
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   137
lemma perm_sing_eq2 [iff]: "([y] <~~> ys) = (ys = [y])"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   138
  apply (blast dest: perm_sym)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   139
  done
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   140
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   141
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   142
subsection {* Removing elements *}
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   143
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   144
consts
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   145
  remove :: "'a => 'a list => 'a list"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   146
primrec
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   147
  "remove x [] = []"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   148
  "remove x (y # ys) = (if x = y then ys else y # remove x ys)"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   149
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   150
lemma perm_remove: "x \<in> set ys ==> ys <~~> x # remove x ys"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   151
  apply (induct ys)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   152
   apply auto
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   153
  done
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   154
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   155
lemma remove_commute: "remove x (remove y l) = remove y (remove x l)"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   156
  apply (induct l)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   157
   apply auto
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   158
  done
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   159
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   160
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   161
text {* \medskip Congruence rule *}
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   162
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   163
lemma perm_remove_perm: "xs <~~> ys ==> remove z xs <~~> remove z ys"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   164
  apply (erule perm.induct)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   165
     apply auto
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   166
  done
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   167
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   168
lemma remove_hd [simp]: "remove z (z # xs) = xs"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   169
  apply auto
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   170
  done
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   171
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   172
lemma cons_perm_imp_perm: "z # xs <~~> z # ys ==> xs <~~> ys"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   173
  apply (drule_tac z = z in perm_remove_perm)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   174
  apply auto
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   175
  done
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   176
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   177
lemma cons_perm_eq [iff]: "(z#xs <~~> z#ys) = (xs <~~> ys)"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   178
  apply (blast intro: cons_perm_imp_perm)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   179
  done
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   180
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   181
lemma append_perm_imp_perm: "!!xs ys. zs @ xs <~~> zs @ ys ==> xs <~~> ys"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   182
  apply (induct zs rule: rev_induct)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   183
   apply (simp_all (no_asm_use))
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   184
  apply blast
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   185
  done
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   186
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   187
lemma perm_append1_eq [iff]: "(zs @ xs <~~> zs @ ys) = (xs <~~> ys)"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   188
  apply (blast intro: append_perm_imp_perm perm_append1)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   189
  done
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   190
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   191
lemma perm_append2_eq [iff]: "(xs @ zs <~~> ys @ zs) = (xs <~~> ys)"
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   192
  apply (safe intro!: perm_append2)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   193
  apply (rule append_perm_imp_perm)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   194
  apply (rule perm_append_swap [THEN perm.trans])
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   195
    -- {* the previous step helps this @{text blast} call succeed quickly *}
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   196
  apply (blast intro: perm_append_swap)
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   197
  done
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   198
a5404c70982f moved from Induct/ to Library/
wenzelm
parents:
diff changeset
   199
end