RTree.thy
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Wed, 24 Aug 2016 16:13:20 +0200
changeset 137 785c0f6b8184
parent 136 fb3f52fe99d1
child 138 20c1d3a14143
permissions -rw-r--r--
updated
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
     1
theory RTree
131
6a7a8c51d42f unified Rtree.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 127
diff changeset
     2
imports "~~/src/HOL/Library/Transitive_Closure_Table" 
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
     3
begin
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
     4
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
     5
section {* A theory of relational trees *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
     6
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
     7
inductive_cases path_nilE [elim!]: "rtrancl_path r x [] y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
     8
inductive_cases path_consE [elim!]: "rtrancl_path r x (z#zs) y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
     9
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    10
subsection {* Definitions *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    11
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    12
text {*
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
    13
  In this theory, we are going to give a notion of of `Relational Graph` and
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    14
  its derived notion `Relational Tree`. Given a binary relation @{text "r"},
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    15
  the `Relational Graph of @{text "r"}` is the graph, the edges of which
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    16
  are those in @{text "r"}. In this way, any binary relation can be viewed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    17
  as a `Relational Graph`. Note, this notion of graph includes infinite graphs. 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    18
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    19
  A `Relation Graph` @{text "r"} is said to be a `Relational Tree` if it is both
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    20
  {\em single valued} and {\em acyclic}. 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    21
*}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    22
131
6a7a8c51d42f unified Rtree.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 127
diff changeset
    23
134
8a13b37b4d95 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 133
diff changeset
    24
locale forest = 
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    25
  fixes r
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    26
  assumes sgv: "single_valued r"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    27
  assumes acl: "acyclic r"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    28
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    29
text {* 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    30
  The following two auxiliary functions @{text "rel_of"} and @{text "pred_of"} 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    31
  transfer between the predicate and set representation of binary relations.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    32
*}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    33
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    34
definition "rel_of r = {(x, y) | x y. r x y}"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    35
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    36
definition "pred_of r = (\<lambda> x y. (x, y) \<in> r)"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    37
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    38
text {*
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    39
126
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    40
  To reason about {\em Relational Graph}, a notion of path is needed,
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    41
  which is given by the following @{text "rpath"} (short for
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    42
  `relational path`).  The path @{text "xs"} in proposition @{text
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    43
  "rpath r x xs y"} is a path leading from @{text "x"} to @{text "y"},
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    44
  which serves as a witness of the fact @{text "(x, y) \<in> r^*"}.
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    45
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    46
  @{text "rpath"} is simply a wrapper of the @{text "rtrancl_path"}
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    47
  defined in the imported theory @{text "Transitive_Closure_Table"},
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    48
  which defines a notion of path for the predicate form of binary
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    49
  relations.  *}
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    50
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    51
definition "rpath r x xs y = rtrancl_path (pred_of r) x xs y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    52
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    53
text {*
126
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    54
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    55
  Given a path @{text "ps"}, @{text "edges_on ps"} is the set of edges
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    56
  along the path, which is defined as follows: *}
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    58
definition "edges_on ps = {(a,b) | a b. \<exists> xs ys. ps = xs@[a,b]@ys}"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    59
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    60
text {*
126
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    61
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    62
   The following @{text "indep"} defines a notion of independence.
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    63
   Two nodes @{text "x"} and @{text "y"} are said to be independent
126
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    64
   (expressed as @{text "indep x y"}), if neither one is reachable
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    65
   from the other in relational graph @{text "r"}.  *}
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    66
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    67
definition "indep r x y = (((x, y) \<notin> r^*) \<and> ((y, x) \<notin> r^*))"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    68
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    69
text {*
126
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    70
 
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    71
 In relational tree @{text "r"}, the sub tree of node @{text "x"} is
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    72
  written @{text "subtree r x"}, which is defined to be the set of
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    73
  nodes (including itself) which can reach @{text "x"} by following
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    74
  some path in @{text "r"}: *}
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    75
137
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
    76
definition "subtree r x = {y . (y, x) \<in> r^*}"
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    77
137
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
    78
definition "ancestors r x = {y. (x, y) \<in> r^+}"
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
    79
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
    80
definition "root r x = (ancestors r x = {})"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
    81
137
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
    82
lemma root_indep:
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
    83
  assumes "root r x"
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
    84
    and "root r y"
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
    85
    and "y \<noteq> x"
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
    86
  shows "indep r x y"
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
    87
proof -
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
    88
  { assume "(x, y) \<in> r^*"
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
    89
    hence False using assms
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
    90
      by (unfold root_def ancestors_def, auto dest:tranclD rtranclD)
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
    91
  } moreover {
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
    92
    assume "(y, x) \<in> r^*"
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
    93
    hence False using assms
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
    94
      by (unfold root_def ancestors_def, auto dest:tranclD rtranclD)
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
    95
  } ultimately show ?thesis by (auto simp:indep_def)
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
    96
qed
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
    97
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
    98
text {*
126
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    99
 
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
   100
  The following @{text "edge_in r x"} is the set of edges contained in
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
   101
  the sub-tree of @{text "x"}, with @{text "r"} as the underlying
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
   102
  graph.  *}
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   103
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   104
definition "edges_in r x = {(a, b) | a b. (a, b) \<in> r \<and> b \<in> subtree r x}"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   105
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   106
text {*
126
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
   107
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
   108
  The following lemma @{text "edges_in_meaning"} shows the intuitive
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
   109
  meaning of `an edge @{text "(a, b)"} is in the sub-tree of @{text
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
   110
  "x"}`, i.e., both @{text "a"} and @{text "b"} are in the sub-tree.
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
   111
  *}
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
   112
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   113
lemma edges_in_meaning: 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   114
  "edges_in r x = {(a, b) | a b. (a, b) \<in> r \<and> a \<in> subtree r x \<and> b \<in> subtree r x}"
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   115
 by (auto simp:edges_in_def subtree_def)
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   116
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   117
text {*
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   118
  The following lemma shows the meaning of @{term "edges_in"} from the other side, 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   119
  which says: for the edge @{text "(a,b)"} to be outside of the sub-tree of @{text "x"}, 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   120
  it is sufficient to show that @{text "b"} is.
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   121
*}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   122
lemma edges_in_refutation:
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   123
  assumes "b \<notin> subtree r x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   124
  shows "(a, b) \<notin> edges_in r x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   125
  using assms by (unfold edges_in_def subtree_def, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   126
137
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   127
definition "children r x = {y. (y, x) \<in> r}"
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   128
134
8a13b37b4d95 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 133
diff changeset
   129
locale fforest = forest +
133
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
   130
  assumes fb: "finite (children r x)"
132
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
   131
  assumes wf: "wf r"
62
031d2ae9c9b8 In the middle of retrofiting ExtGG.thy.
zhangx
parents: 60
diff changeset
   132
begin
031d2ae9c9b8 In the middle of retrofiting ExtGG.thy.
zhangx
parents: 60
diff changeset
   133
031d2ae9c9b8 In the middle of retrofiting ExtGG.thy.
zhangx
parents: 60
diff changeset
   134
lemma finite_children: "finite (children r x)"
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   135
  using fb by (cases "children r x = {}", auto simp:children_def)
62
031d2ae9c9b8 In the middle of retrofiting ExtGG.thy.
zhangx
parents: 60
diff changeset
   136
031d2ae9c9b8 In the middle of retrofiting ExtGG.thy.
zhangx
parents: 60
diff changeset
   137
end
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   138
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   139
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   140
subsection {* Auxiliary lemmas *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   141
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   142
lemma index_minimize:
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   143
  assumes "P (i::nat)"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   144
  obtains j where "P j" and "\<forall> k < j. \<not> P k" 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   145
  using assms
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   146
  by (induct i rule:less_induct, auto)
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   147
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   148
subsection {* Properties of Relational Graphs and Relational Trees *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   149
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   150
subsubsection {* Properties of @{text "rel_of"} and @{text "pred_of"} *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   151
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   152
text {* The following lemmas establish bijectivity of the two functions *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   153
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   154
lemma pred_rel_eq: "pred_of (rel_of r) = r" by (auto simp:rel_of_def pred_of_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   155
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   156
lemma rel_pred_eq: "rel_of (pred_of r) = r" by (auto simp:rel_of_def pred_of_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   157
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   158
lemma rel_of_star: "rel_of (r^**) = (rel_of r)^*"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   159
  by (unfold rel_of_def rtranclp_rtrancl_eq, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   160
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   161
lemma pred_of_star: "pred_of (r^*) = (pred_of r)^**"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   162
proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   163
  { fix x y
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   164
    have "pred_of (r^*) x y = (pred_of r)^** x y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   165
    by (unfold pred_of_def rtranclp_rtrancl_eq, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   166
  } thus ?thesis by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   167
qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   168
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   169
lemma star_2_pstar: "(x, y) \<in> r^* = (pred_of (r^*)) x y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   170
  by (simp add: pred_of_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   171
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   172
subsubsection {* Properties of @{text "rpath"} *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   173
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   174
text {* Induction rule for @{text "rpath"}: *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   175
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   176
lemma rpath_induct [consumes 1, case_names rbase rstep, induct pred: rpath]:
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   177
  assumes "rpath r x1 x2 x3"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   178
    and "\<And>x. P x [] x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   179
    and "\<And>x y ys z. (x, y) \<in> r \<Longrightarrow> rpath r y ys z \<Longrightarrow> P y ys z \<Longrightarrow> P x (y # ys) z"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   180
  shows "P x1 x2 x3"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   181
  using assms[unfolded rpath_def]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   182
  by (induct, auto simp:pred_of_def rpath_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   183
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   184
lemma rpathE [elim]: 
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   185
  assumes "rpath r x xs y"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   186
  obtains (base) "y = x" "xs = []"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   187
     | (step) z zs where "(x, z) \<in> r" "rpath r z zs y" "xs = z#zs"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   188
  using assms
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   189
  by (induct, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   190
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   191
text {* Introduction rule for empty path *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   192
lemma rbaseI [intro!]: 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   193
  assumes "x = y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   194
  shows "rpath r x [] y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   195
  by  (unfold rpath_def assms, 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   196
         rule Transitive_Closure_Table.rtrancl_path.base)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   197
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   198
text {* Introduction rule for non-empty path *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   199
lemma rstepI [intro!]: 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   200
  assumes "(x, y) \<in> r"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   201
    and "rpath r y ys z"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   202
  shows "rpath r x (y#ys) z" 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   203
proof(unfold rpath_def, rule Transitive_Closure_Table.rtrancl_path.step)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   204
  from assms(1) show "pred_of r x y" by (auto simp:pred_of_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   205
next
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   206
  from assms(2) show "rtrancl_path (pred_of r) y ys z"  
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   207
  by (auto simp:pred_of_def rpath_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   208
qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   209
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   210
lemma rpath_stepI'[intro, simp]: 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   211
  assumes "rpath r x xs y"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   212
  and "(y, z) \<in> r"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   213
  shows "rpath r x (xs@[z]) z"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   214
  using assms
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   215
  by (induct, auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   216
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   217
text {* Introduction rule for @{text "@"}-path *}
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   218
lemma rpath_appendI [intro,simp]: 
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   219
  assumes "rpath r x xs a" and "rpath r a ys y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   220
  shows "rpath r x (xs @ ys) y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   221
  using assms 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   222
  by (unfold rpath_def, auto intro:rtrancl_path_trans)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   223
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   224
text {* Elimination rule for empty path *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   225
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   226
lemma rpath_cases [cases pred:rpath,elim]:
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   227
  assumes "rpath r a1 a2 a3"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   228
  obtains (rbase)  "a1 = a3" and "a2 = []"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   229
    | (rstep)  y :: "'a" and ys :: "'a list"  
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   230
         where "(a1, y) \<in> r" and "a2 = y # ys" and "rpath r y ys a3"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   231
  using assms [unfolded rpath_def]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   232
  by (cases, auto simp:rpath_def pred_of_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   233
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   234
lemma rpath_nilE [elim!, cases pred:rpath]: 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   235
  assumes "rpath r x [] y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   236
  obtains "y = x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   237
  using assms[unfolded rpath_def] by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   238
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   239
text {*
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   240
  Elimination rule for non-empty paths constructed with @{text "#"}.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   241
*}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   242
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   243
lemma rpath_ConsE [elim!, cases pred:rpath]:
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   244
  assumes "rpath r x (y # ys) x2"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   245
  obtains (rstep) "(x, y) \<in> r" and "rpath r y ys x2"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   246
  using assms[unfolded rpath_def]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   247
  by (cases, auto simp:rpath_def pred_of_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   248
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   249
text {*
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   250
  Elimination rule for non-empty path, where the destination node 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   251
  @{text "y"} is shown to be at the end of the path.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   252
*}
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   253
lemma rpath_nnl_lastE [elim]: 
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   254
  assumes "rpath r x xs y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   255
  and "xs \<noteq> []"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   256
  obtains xs' where "xs = xs'@[y]"
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   257
  using assms
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   258
proof(induct)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   259
    case (rstep x y ys z)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   260
    thus ?case by (cases ys, auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   261
qed auto
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   262
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   263
text {* Other elimination rules of @{text "rpath"} *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   264
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   265
lemma rpath_appendE [elim]:
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   266
  assumes "rpath r x (xs @ [a] @ ys) y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   267
  obtains "rpath r x (xs @ [a]) a" and "rpath r a ys y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   268
  using rtrancl_path_appendE[OF assms[unfolded rpath_def, simplified], folded rpath_def]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   269
  by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   270
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   271
lemma rpath_subE [elim]: 
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   272
  assumes "rpath r x (xs @ [a] @ ys @ [b] @ zs) y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   273
  obtains "rpath r x (xs @ [a]) a" and "rpath r a (ys @ [b]) b" and "rpath r b zs y" 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   274
  using assms
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   275
 by (elim rpath_appendE, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   276
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   277
text {* Every path has a unique end point. *}
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   278
lemma rpath_dest_eq [simp]: 
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   279
  assumes "rpath r x xs x1"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   280
  and "rpath r x xs x2"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   281
  shows "x1 = x2"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   282
  using assms
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   283
  by (induct, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   284
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   285
lemma rpath_dest_eq_simp[simp]: 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   286
  assumes "rpath r x xs1 x1"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   287
  and "rpath r x xs2 x2"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   288
  and "xs1 = xs2"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   289
  shows "x1 = x2"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   290
  using assms
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   291
  by (induct, auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   292
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   293
subsubsection {* Properites of @{text "edges_on"} *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   294
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   295
lemma edge_on_headI[simp, intro]: 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   296
  assumes "(a, b) = (a', b')"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   297
  shows "(a, b) \<in> edges_on (a' # b' # xs)"
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   298
  using assms
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   299
  by (unfold edges_on_def, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   300
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   301
lemma edges_on_ConsI[intro]:
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   302
  assumes "(a, b) \<in> edges_on xs" 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   303
  shows "(a, b) \<in> edges_on (x#xs)"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   304
  using assms
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   305
  apply (unfold edges_on_def, auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   306
  by (meson Cons_eq_appendI)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   307
  
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   308
lemma edges_on_appendI1[intro]:
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   309
  assumes "(a, b) \<in> edges_on xs" 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   310
  shows "(a, b) \<in> edges_on (xs'@xs)"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   311
  using assms 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   312
  apply (unfold edges_on_def, auto simp:append_assoc)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   313
  by (metis append_assoc)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   314
  
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   315
lemma edges_on_appendI2[intro]:
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   316
  assumes "(a, b) \<in> edges_on xs" 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   317
  shows "(a, b) \<in> edges_on (xs@xs')"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   318
  using assms 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   319
  apply (unfold edges_on_def, auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   320
  by metis
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   321
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   322
lemma edges_onE [elim]:
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   323
  assumes "(a, b) \<in> edges_on xs"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   324
  obtains a' b' xs' where "(a,b) = (a', b')" "xs = a'#b'#xs'"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   325
        | a' b' xs' where "(a,b) \<noteq> (a', b')" "xs = a'#b'#xs'" "(a,b) \<in> edges_on (b'#xs')"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   326
proof(cases xs)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   327
  case Nil
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   328
  with assms show ?thesis
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   329
    by (unfold edges_on_def, auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   330
next
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   331
  case cs1: (Cons a' xsa)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   332
  show ?thesis
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   333
  proof(cases xsa)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   334
    case Nil
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   335
    with cs1 and assms show ?thesis
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   336
      by (unfold edges_on_def, auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   337
  next
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   338
    case (Cons b' xsb)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   339
    show ?thesis
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   340
    proof(cases "(a,b) = (a', b')")
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   341
      case True
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   342
      with cs1 Cons show ?thesis using that by metis
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   343
    next
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   344
      case False
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   345
      from assms[unfolded cs1 Cons edges_on_def]
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   346
      obtain xs1 ys1 where "a' # b' # xsb = xs1 @ [a, b] @ ys1" by auto
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   347
      moreover with False obtain c xsc where "xs1 = Cons c xsc" by (cases xs1, auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   348
      ultimately have h: "b' # xsb = xsc @ [a, b] @ ys1" by auto
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   349
      show ?thesis
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   350
        apply (rule that(2)[OF False], insert cs1 Cons, simp)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   351
        using h by auto
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   352
    qed
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   353
  qed
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   354
qed
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   355
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   356
lemma edges_on_nil [simp]:
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   357
  "edges_on [] = {}" by auto
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   358
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   359
lemma edges_on_single [simp]:
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   360
  "edges_on [a] = {}" by auto
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   361
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   362
lemma edges_on_unfold [simp]:
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   363
  "edges_on (a # b # xs) = {(a, b)} \<union> edges_on (b # xs)" (is "?L = ?R")
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   364
by (auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   365
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   366
lemma edges_on_len:
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   367
  assumes "x \<in> edges_on l"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   368
  shows "2 \<le> length l" using assms by (cases x, auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   369
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   370
text {* Elimination of @{text "edges_on"} for non-empty path *}
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   371
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   372
lemma edges_on_consE [elim!, cases set:edges_on]:
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   373
  assumes "(a,b) \<in> edges_on (x#xs)"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   374
  obtains (head)  xs' where "x = a" and "xs = b#xs'"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   375
      |  (tail)  "(a,b) \<in> edges_on xs"
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   376
      using assms
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   377
      by auto
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   378
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   379
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   380
text {*
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   381
  Every edges on the path is a graph edges:
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   382
*}
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   383
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   384
lemma rpath_edges_on [intro]: 
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   385
  assumes "rpath r x xs y"
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   386
  shows "edges_on (x#xs) \<subseteq> r"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   387
  using assms 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   388
 by (induct arbitrary:y, auto)
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   389
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   390
text {* @{text "edges_on"} is mono with respect to @{text "#"}-operation: *}
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   391
lemma edges_on_Cons_mono [intro,simp]: 
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   392
   shows "edges_on xs \<subseteq> edges_on (x#xs)"
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   393
   by auto
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   394
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   395
lemma edges_on_append_mono [intro,simp]:
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   396
   shows "edges_on xs \<subseteq> edges_on (xs'@xs)"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   397
   by auto
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   398
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   399
lemma edges_on_append_mono' [intro,simp]:
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   400
   shows "edges_on xs \<subseteq> edges_on (xs@xs')"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   401
   by auto
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   402
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   403
text {*
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   404
  The following rule @{text "rpath_transfer"} is used to show 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   405
  that one path is intact as long as all the edges on it are intact
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   406
  with the change of graph.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   407
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   408
  If @{text "x#xs"} is path in graph @{text "r1"} and 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   409
  every edges along the path is also in @{text "r2"}, 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   410
  then @{text "x#xs"} is also a edge in graph @{text "r2"}:
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   411
*}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   412
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   413
lemma rpath_transfer[intro]:
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   414
  assumes "rpath r1 x xs y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   415
  and "edges_on (x#xs) \<subseteq> r2"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   416
  shows "rpath r2 x xs y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   417
  using assms
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   418
 by (induct, auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   419
  
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   420
lemma edges_on_rpathI[intro, simp]:
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   421
  assumes "edges_on (a#xs@[b]) \<subseteq> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   422
  shows "rpath r a (xs@[b]) b"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   423
  using assms
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   424
 by (induct xs arbitrary: a b, auto) 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   425
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   426
lemma list_nnl_appendE [elim]:
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   427
  assumes "xs \<noteq> []"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   428
  obtains x xs' where "xs = xs'@[x]"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   429
  by (insert assms, rule rev_exhaust, fastforce)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   430
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   431
lemma edges_on_rpathI' [intro]:
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   432
  assumes "edges_on (a#xs) \<subseteq> r"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   433
  and "xs \<noteq> []"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   434
  and "last xs = b"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   435
  shows "rpath r a xs b"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   436
proof -
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   437
  obtain xs' where "xs = xs'@[b]"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   438
  using assms by fastforce
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   439
  with assms show ?thesis by fastforce
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   440
qed
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   441
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   442
text {*
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   443
  The following lemma extracts the path from @{text "x"} to @{text "y"}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   444
  from proposition @{text "(x, y) \<in> r^*"}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   445
*}
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   446
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   447
lemma star_rpath [elim]:
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   448
  assumes "(x, y) \<in> r^*"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   449
  obtains xs where "rpath r x xs y"
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   450
  using assms
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   451
  by (induct, auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   452
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   453
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   454
text {*
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   455
  The following lemma uses the path @{text "xs"} from @{text "x"} to @{text "y"}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   456
  as a witness to show @{text "(x, y) \<in> r^*"}.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   457
*}
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   458
lemma rpath_star [simp]: 
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   459
  assumes "rpath r x xs y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   460
  shows "(x, y) \<in> r^*"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   461
proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   462
  from iffD2[OF rtranclp_eq_rtrancl_path] and assms[unfolded rpath_def]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   463
  have "(pred_of r)\<^sup>*\<^sup>* x y" by metis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   464
  thus ?thesis by (simp add: pred_of_star star_2_pstar)
60
f98a95f3deae Main proofs in CpsG.thy completed.
zhangx
parents: 58
diff changeset
   465
qed  
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   466
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   467
declare rpath_star[elim_format]
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   468
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   469
lemma rpath_transfer' [intro]: 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   470
  assumes "rpath r1 x xs y"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   471
  and "r1 \<subseteq> r2"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   472
  shows "rpath r2 x xs y"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   473
  using assms
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   474
  by (induct, auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   475
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   476
lemma subtree_transfer[intro]:
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   477
  assumes "a \<in> subtree r1 a'"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   478
  and "r1 \<subseteq> r2"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   479
  shows "a \<in> subtree r2 a'"
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   480
  using assms 
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   481
proof -
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   482
  from assms(1) 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   483
  obtain xs where h1: "rpath r1 a xs a'" by (auto simp:subtree_def)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   484
  show ?thesis 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   485
  proof -
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   486
    from rpath_star[OF h1]
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   487
    have "(a, a') \<in> r1\<^sup>*" .
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   488
    with assms(2) have  "(a, a') \<in> r2\<^sup>*"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   489
        using rtrancl_mono subsetCE by blast
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   490
    thus ?thesis by (auto simp:subtree_def)
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   491
  qed
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   492
qed 
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   493
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   494
text {*
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   495
  @{text "subtree"} is mono with respect to the underlying graph.
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   496
*}
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   497
lemma subtree_mono[intro]:
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   498
  assumes "r1 \<subseteq> r2"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   499
  shows "subtree r1 x \<subseteq> subtree r2 x"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   500
  using assms by auto
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   501
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   502
lemma subtree_rev_transfer[intro]:
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   503
  assumes "a \<notin> subtree r2 a'"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   504
  and "r1 \<subseteq> r2"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   505
  shows "a \<notin> subtree r1 a'"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   506
  using assms and subtree_transfer by metis
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   507
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   508
text {*
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   509
  The following lemmas establishes a relation from paths in @{text "r"}
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   510
  to @{text "r^+"} relation.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   511
*}
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   512
lemma rpath_plus[simp]: 
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   513
  assumes "rpath r x xs y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   514
  and "xs \<noteq> []"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   515
  shows "(x, y) \<in> r^+"
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   516
  using assms
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   517
  by (induct, simp) fastforce
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   518
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   519
lemma plus_rpath [elim]: 
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   520
  assumes "(x, y) \<in> r^+"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   521
  obtains xs where "rpath r x xs y" and "xs \<noteq> []"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   522
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   523
  from assms
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   524
  have "\<exists> xs. rpath r x xs y \<and> xs \<noteq> []" by (induct; auto)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   525
  with that show ?thesis by metis
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   526
qed
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   527
  
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   528
subsubsection {* Properties of @{text "subtree"} and @{term "ancestors"}*}
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   529
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   530
lemma ancestors_subtreeI [intro, dest]:
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   531
  assumes "b \<in> ancestors r a"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   532
  shows "a \<in> subtree r b"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   533
  using assms by (auto simp:subtree_def ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   534
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   535
lemma ancestors_Field[elim]:
60
f98a95f3deae Main proofs in CpsG.thy completed.
zhangx
parents: 58
diff changeset
   536
  assumes "b \<in> ancestors r a"
f98a95f3deae Main proofs in CpsG.thy completed.
zhangx
parents: 58
diff changeset
   537
  obtains "a \<in> Domain r" "b \<in> Range r"
f98a95f3deae Main proofs in CpsG.thy completed.
zhangx
parents: 58
diff changeset
   538
  using assms 
f98a95f3deae Main proofs in CpsG.thy completed.
zhangx
parents: 58
diff changeset
   539
  apply (unfold ancestors_def, simp)
f98a95f3deae Main proofs in CpsG.thy completed.
zhangx
parents: 58
diff changeset
   540
  by (metis Domain.DomainI Range.intros trancl_domain trancl_range)
f98a95f3deae Main proofs in CpsG.thy completed.
zhangx
parents: 58
diff changeset
   541
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   542
lemma subtreeE [elim]:
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   543
  assumes "a \<in> subtree r b"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   544
  obtains "a = b"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   545
      | "a \<noteq> b" and "b \<in> ancestors r a"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   546
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   547
  from assms have "(a, b) \<in> r^*" by (auto simp:subtree_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   548
  from rtranclD[OF this]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   549
  have " a = b \<or> a \<noteq> b \<and> (a, b) \<in> r\<^sup>+" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   550
  with that[unfolded ancestors_def] show ?thesis by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   551
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   552
63
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   553
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   554
lemma subtree_Field [simp, iff]:
63
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   555
  "subtree r x \<subseteq> Field r \<union> {x}"
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   556
proof
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   557
  fix y
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   558
  assume "y \<in> subtree r x"
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   559
  thus "y \<in> Field r \<union> {x}"
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   560
  proof(cases rule:subtreeE)
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   561
    case 1
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   562
    thus ?thesis by auto
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   563
  next
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   564
    case 2
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   565
    thus ?thesis 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   566
      by (unfold Field_def, fast)
63
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   567
  qed
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   568
qed
b620a2a0806a ExtGG.thy finished, but more comments are needed.
zhangx
parents: 62
diff changeset
   569
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   570
lemma subtree_ancestorsI:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   571
  assumes "a \<in> subtree r b"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   572
  and "a \<noteq> b"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   573
  shows "b \<in> ancestors r a"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   574
  using assms
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   575
  by auto
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   576
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   577
text {*
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   578
  The following lemma characterizes the change of sub-tree of @{text "x"}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   579
  with the removal of an outside edge @{text "(a,b)"}. 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   580
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   581
  Note that, according to lemma @{thm edges_in_refutation}, the assumption
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   582
  @{term "b \<notin> subtree r x"} amounts to saying @{text "(a, b)"} 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   583
  is outside the sub-tree of @{text "x"}.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   584
*}
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   585
lemma subtree_del_outside [simp,intro]: (* ddd *)
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   586
    assumes "b \<notin> subtree r x" 
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   587
    shows "subtree (r - {(a, b)}) x = (subtree r x)" (is "?L = ?R")
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   588
proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   589
  { fix c
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   590
    assume "c \<in> ?R"
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   591
    hence "(c, x) \<in> r^*" by (auto simp:subtree_def)
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   592
    hence "c \<in> ?L"
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   593
    proof(rule star_rpath)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   594
      fix xs
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   595
      assume rp: "rpath r c xs x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   596
      show ?thesis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   597
      proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   598
        from rp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   599
        have "rpath  (r - {(a, b)}) c xs x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   600
        proof(rule rpath_transfer)
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   601
          from rp have "edges_on (c # xs) \<subseteq> r" ..
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   602
          moreover have "(a, b) \<notin> edges_on (c#xs)"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   603
          proof
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   604
            assume "(a, b) \<in> edges_on (c # xs)"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   605
            then obtain l1 l2 where h: "c#xs = l1@[a,b]@l2" by (auto simp:edges_on_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   606
            hence "tl (c#xs) = tl (l1@[a,b]@l2)" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   607
            then obtain l1' where eq_xs_b: "xs = l1'@[b]@l2" by (cases l1, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   608
            from rp[unfolded this]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   609
            show False
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   610
              by (rule rpath_appendE, insert assms(1), auto simp:subtree_def)
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   611
          qed
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   612
          ultimately show "edges_on (c # xs) \<subseteq> (r - {(a, b)})" 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   613
            by (auto)
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   614
        qed
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   615
        thus ?thesis by (auto simp:subtree_def)
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   616
      qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   617
    qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   618
  } moreover {
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   619
    fix c
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   620
    assume "c \<in> ?L"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   621
    moreover have "... \<subseteq> (subtree r x)" by auto
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   622
    ultimately have "c \<in> ?R" by auto
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   623
  } ultimately show ?thesis by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   624
qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   625
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   626
(* ddd *)
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   627
lemma subset_del_subtree_outside [simp, intro]: (* ddd *)
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   628
    assumes "Range r' \<inter> subtree r x = {}" 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   629
    shows "subtree (r - r') x = (subtree r x)" 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   630
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   631
  { fix c
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   632
    assume "c \<in> (subtree r x)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   633
    hence "(c, x) \<in> r^*" by (auto simp:subtree_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   634
    hence "c \<in> subtree (r - r') x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   635
    proof(rule star_rpath)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   636
      fix xs
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   637
      assume rp: "rpath r c xs x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   638
      show ?thesis
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   639
      proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   640
        from rp
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   641
        have "rpath  (r - r') c xs x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   642
        proof(rule rpath_transfer)
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   643
          from rp have "edges_on (c # xs) \<subseteq> r" ..
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   644
          moreover {
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   645
              fix a b
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   646
              assume h: "(a, b) \<in> r'"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   647
              have "(a, b) \<notin> edges_on (c#xs)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   648
              proof
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   649
                assume "(a, b) \<in> edges_on (c # xs)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   650
                then obtain l1 l2 where "c#xs = (l1@[a])@[b]@l2" by (auto simp:edges_on_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   651
                hence "tl (c#xs) = tl (l1@[a,b]@l2)" by simp
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   652
                then obtain l1' where eq_xs_b: "xs = l1'@[b]@l2" by (cases l1, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   653
                from rp[unfolded this]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   654
                show False
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   655
                proof(rule rpath_appendE)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   656
                  assume "rpath r b l2 x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   657
                  from rpath_star[OF this]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   658
                  have "b \<in> subtree r x" by (auto simp:subtree_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   659
                  with assms (1) and h show ?thesis by (auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   660
                qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   661
             qed
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   662
         } ultimately show "edges_on (c # xs) \<subseteq> (r - r')" by (auto)
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   663
        qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   664
        thus ?thesis by (rule rpath_star[elim_format], auto simp:subtree_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   665
      qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   666
    qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   667
  } moreover {
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   668
    fix c
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   669
    assume "c \<in> subtree (r - r') x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   670
    moreover have "... \<subseteq> (subtree r x)" by (rule subtree_mono, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   671
    ultimately have "c \<in> (subtree r x)" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   672
  } ultimately show ?thesis by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   673
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   674
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   675
lemma subtree_insert_ext [simp, intro]:
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   676
    assumes "b \<in> subtree r x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   677
    shows "subtree (r \<union> {(a, b)}) x = (subtree r x) \<union> (subtree r a)" 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   678
    using assms by (auto simp:subtree_def rtrancl_insert)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   679
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   680
lemma subtree_insert_next [simp, intro]:
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   681
    assumes "b \<notin> subtree r x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   682
    shows "subtree (r \<union> {(a, b)}) x = (subtree r x)" 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   683
    using assms
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   684
    by (auto simp:subtree_def rtrancl_insert)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   685
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   686
lemma set_add_rootI[simp, intro]:
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   687
  assumes "root r a"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   688
  and "a \<notin> Domain r1"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   689
  shows "root (r \<union> r1) a"
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   690
  using assms
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   691
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   692
  let ?r = "r \<union> r1"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   693
  { fix a'
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   694
    assume "a' \<in> ancestors ?r a"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   695
    hence "(a, a') \<in> ?r^+" by (auto simp:ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   696
    from tranclD[OF this] obtain z where "(a, z) \<in> ?r" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   697
    moreover have "(a, z) \<notin> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   698
    proof
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   699
      assume "(a, z) \<in> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   700
      with assms(1) show False 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   701
        by (auto simp:root_def ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   702
    qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   703
    ultimately have "(a, z) \<in> r1" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   704
    with assms(2) 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   705
    have False by (auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   706
  } thus ?thesis by (auto simp:root_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   707
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   708
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   709
lemma ancestors_mono [simp]:
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   710
  assumes "r1 \<subseteq> r2"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   711
  shows "ancestors r1 x \<subseteq> ancestors r2 x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   712
proof
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   713
 fix a
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   714
 assume "a \<in> ancestors r1 x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   715
 hence "(x, a) \<in> r1^+" by (auto simp:ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   716
 from plus_rpath[OF this] obtain xs where 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   717
    h: "rpath r1 x xs a" "xs \<noteq> []" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   718
 have "rpath r2 x xs a"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   719
 proof(rule rpath_transfer[OF h(1)])
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   720
  from h(1) have "edges_on (x # xs) \<subseteq> r1" ..
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   721
  also note assms
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   722
  finally show "edges_on (x # xs) \<subseteq> r2" .
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   723
 qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   724
 from rpath_plus[OF this h(2)]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   725
 show "a \<in> ancestors r2 x" by (auto simp:ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   726
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   727
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   728
lemma subtree_refute:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   729
  assumes "x \<notin> ancestors r y"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   730
  and "x \<noteq> y"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   731
  shows "y \<notin> subtree r x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   732
proof
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   733
   assume "y \<in> subtree r x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   734
   thus False
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   735
     by(elim subtreeE, insert assms, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   736
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   737
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   738
subsubsection {* Properties about relational trees *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   739
134
8a13b37b4d95 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 133
diff changeset
   740
context forest 
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   741
begin
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   742
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   743
lemma ancestors_headE:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   744
  assumes "c \<in> ancestors r a"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   745
  assumes "(a, b) \<in> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   746
  obtains "b = c"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   747
     |   "c \<in> ancestors r b"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   748
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   749
  from assms(1) 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   750
  have "(a, c) \<in> r^+" by (auto simp:ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   751
  hence "b = c \<or> c \<in> ancestors r b"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   752
  proof(cases rule:converse_tranclE[consumes 1])
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   753
    case 1
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   754
    with assms(2) and sgv have "b = c" by (auto simp:single_valued_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   755
    thus ?thesis by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   756
  next
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   757
    case (2 y)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   758
    from 2(1) and assms(2) and sgv have "y = b" by (auto simp:single_valued_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   759
    from 2(2)[unfolded this] have "c \<in> ancestors r b" by (auto simp:ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   760
    thus ?thesis by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   761
  qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   762
  with that show ?thesis by metis
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   763
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   764
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   765
lemma ancestors_accum:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   766
  assumes "(a, b) \<in> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   767
  shows "ancestors r a = ancestors r b \<union> {b}"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   768
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   769
  { fix c
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   770
    assume "c \<in> ancestors r a"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   771
    hence "(a, c) \<in> r^+" by (auto simp:ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   772
    hence "c \<in> ancestors r b \<union> {b}"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   773
    proof(cases rule:converse_tranclE[consumes 1])
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   774
      case 1
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   775
      with sgv assms have "c = b" by (unfold single_valued_def, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   776
      thus ?thesis by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   777
    next
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   778
      case (2 c')
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   779
      with sgv assms have "c' = b" by (unfold single_valued_def, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   780
      from 2(2)[unfolded this]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   781
      show ?thesis by (auto simp:ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   782
    qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   783
  } moreover {
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   784
    fix c
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   785
    assume "c \<in> ancestors r b \<union> {b}"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   786
    hence "c = b \<or> c \<in> ancestors r b" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   787
    hence "c \<in> ancestors r a"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   788
    proof
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   789
      assume "c = b"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   790
      from assms[folded this] 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   791
      show ?thesis by (auto simp:ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   792
    next
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   793
      assume "c \<in> ancestors r b"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   794
      with assms show ?thesis by (auto simp:ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   795
    qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   796
  } ultimately show ?thesis by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   797
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   798
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   799
lemma rootI [intro]:
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   800
  assumes h: "\<And> x'. x' \<noteq> x \<Longrightarrow> x \<notin> subtree r' x'"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   801
  and "r' \<subseteq> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   802
  shows "root r' x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   803
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   804
  from acyclic_subset[OF acl assms(2)]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   805
  have acl': "acyclic r'" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   806
  { fix x'
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   807
    assume "x' \<in> ancestors r' x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   808
    hence h1: "(x, x') \<in> r'^+" by (auto simp:ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   809
    have "x' \<noteq> x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   810
    proof
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   811
      assume eq_x: "x' = x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   812
      from h1[unfolded this] and acl'
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   813
      show False by (auto simp:acyclic_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   814
    qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   815
    moreover from h1 have "x \<in> subtree r' x'" by (auto simp:subtree_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   816
    ultimately have False using h by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   817
  } thus ?thesis by (auto simp:root_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   818
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
   819
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   820
lemma rpath_overlap_oneside [elim]: (* ddd *)
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   821
  assumes "rpath r x xs1 x1"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   822
  and "rpath r x xs2 x2"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   823
  and "length xs1 \<le> length xs2"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   824
  obtains xs3 where "xs2 = xs1 @ xs3"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   825
proof(cases "xs1 = []")
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   826
  case True
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   827
  with that show ?thesis by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   828
next
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   829
  case False
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   830
  have "\<forall> i \<le> length xs1. take i xs1 = take i xs2"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   831
  proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   832
     { assume "\<not> (\<forall> i \<le> length xs1. take i xs1 = take i xs2)"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   833
       then obtain i where "i \<le> length xs1 \<and> take i xs1 \<noteq> take i xs2" by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   834
       from this(1) have "False"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   835
       proof(rule index_minimize)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   836
          fix j
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   837
          assume h1: "j \<le> length xs1 \<and> take j xs1 \<noteq> take j xs2"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   838
          and h2: " \<forall>k<j. \<not> (k \<le> length xs1 \<and> take k xs1 \<noteq> take k xs2)"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   839
          -- {* @{text "j - 1"} is the branch point between @{text "xs1"} and @{text "xs2"} *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   840
          let ?idx = "j - 1"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   841
          -- {* A number of inequalities concerning @{text "j - 1"} are derived first *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   842
          have lt_i: "?idx < length xs1" using False h1 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   843
            by (metis Suc_diff_1 le_neq_implies_less length_greater_0_conv lessI less_imp_diff_less)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   844
          have lt_i': "?idx < length xs2" using lt_i and assms(3) by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   845
          have lt_j: "?idx < j" using h1 by (cases j, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   846
          -- {* From thesis inequalities, a number of equations concerning @{text "xs1"}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   847
                 and @{text "xs2"} are derived *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   848
          have eq_take: "take ?idx xs1 = take ?idx xs2"
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   849
            using h2[rule_format, OF lt_j] and h1 by linarith
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   850
          have eq_xs1: " xs1 = take ?idx xs1 @ xs1 ! (?idx) # drop (Suc (?idx)) xs1" 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   851
            using id_take_nth_drop[OF lt_i] .
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   852
          have eq_xs2: "xs2 = take ?idx xs2 @ xs2 ! (?idx) # drop (Suc (?idx)) xs2" 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   853
              using id_take_nth_drop[OF lt_i'] .
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   854
          -- {* The branch point along the path is finally pinpointed *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   855
          have neq_idx: "xs1!?idx \<noteq> xs2!?idx" 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   856
          proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   857
            have "take j xs1 = take ?idx xs1 @ [xs1 ! ?idx]"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   858
                using eq_xs1 Suc_diff_1 lt_i lt_j take_Suc_conv_app_nth by fastforce 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   859
            moreover have eq_tk2: "take j xs2 = take ?idx xs2 @ [xs2 ! ?idx]"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   860
                using Suc_diff_1 lt_i' lt_j take_Suc_conv_app_nth by fastforce 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   861
            ultimately show ?thesis using eq_take h1 by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   862
          qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   863
          show ?thesis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   864
          proof(cases " take (j - 1) xs1 = []")
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   865
            case True
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   866
            have "(x, xs1!?idx) \<in> r"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   867
            proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   868
                from eq_xs1[unfolded True, simplified, symmetric] assms(1) 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   869
                have "rpath r x ( xs1 ! ?idx # drop (Suc ?idx) xs1) x1" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   870
                from this[unfolded rpath_def]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   871
                show ?thesis by (auto simp:pred_of_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   872
            qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   873
            moreover have "(x, xs2!?idx) \<in> r"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   874
            proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   875
              from eq_xs2[folded eq_take, unfolded True, simplified, symmetric] assms(2)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   876
              have "rpath r x ( xs2 ! ?idx # drop (Suc ?idx) xs2) x2" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   877
              from this[unfolded rpath_def]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   878
              show ?thesis by (auto simp:pred_of_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   879
            qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   880
            ultimately show ?thesis using neq_idx sgv[unfolded single_valued_def] by metis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   881
        next
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   882
           case False
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   883
           then obtain e es where eq_es: "take ?idx xs1 = es@[e]" by fast
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   884
           have "(e, xs1!?idx) \<in> r"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   885
           proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   886
            from eq_xs1[unfolded eq_es] 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   887
            have "xs1 = es@[e, xs1!?idx]@drop (Suc ?idx) xs1" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   888
            hence "(e, xs1!?idx) \<in> edges_on xs1" by (simp add:edges_on_def, metis)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   889
            with rpath_edges_on[OF assms(1)] edges_on_Cons_mono[of xs1 x]
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   890
            show ?thesis by (auto)
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   891
           qed moreover have "(e, xs2!?idx) \<in> r"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   892
           proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   893
            from eq_xs2[folded eq_take, unfolded eq_es]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   894
            have "xs2 = es@[e, xs2!?idx]@drop (Suc ?idx) xs2" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   895
            hence "(e, xs2!?idx) \<in> edges_on xs2" by (simp add:edges_on_def, metis)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   896
            with rpath_edges_on[OF assms(2)] edges_on_Cons_mono[of xs2 x]
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
   897
            show ?thesis by (auto)
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   898
           qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   899
           ultimately show ?thesis 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   900
              using sgv[unfolded single_valued_def] neq_idx by metis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   901
        qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   902
       qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   903
     } thus ?thesis by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   904
  qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   905
  from this[rule_format, of "length xs1"]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   906
  have "take (length xs1) xs1 = take (length xs1) xs2" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   907
  moreover have "xs2 = take (length xs1) xs2 @ drop (length xs1) xs2" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   908
  ultimately have "xs2 = xs1 @ drop (length xs1) xs2" by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   909
  from that[OF this] show ?thesis .
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   910
qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   911
80
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   912
lemma rpath_overlap_oneside':
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   913
  assumes "rpath r x xs1 x1" 
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   914
  and "rpath r x xs2 x2"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   915
  and "length xs1 \<le> length xs2"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   916
  obtains xs3 where 
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   917
    "xs2 = xs1 @ xs3" "rpath r x xs1 x1" "rpath r x1 xs3 x2"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   918
proof -
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   919
  from rpath_overlap_oneside[OF assms]
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   920
  obtain xs3 where eq_xs: "xs2 = xs1 @ xs3" by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   921
  show ?thesis
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   922
  proof(cases "xs1 = []")
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   923
    case True
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   924
    from rpath_nilE[OF assms(1)[unfolded this]]
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   925
    have eq_x1: "x1 = x" .
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   926
    have "xs2 = xs3" using True eq_xs by simp
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   927
    from that[OF eq_xs assms(1) assms(2)[folded eq_x1, unfolded this]]
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   928
    show ?thesis .
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   929
  next
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   930
    case False  
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   931
    from rpath_nnl_lastE[OF assms(1) False]
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   932
    obtain xs' where eq_xs1: "xs1 = xs'@[x1]" by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   933
    from assms(2)[unfolded eq_xs this]
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   934
    have "rpath r x (xs' @ [x1] @ xs3) x2" by simp
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   935
    from rpath_appendE[OF this]
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   936
    have "rpath r x (xs' @ [x1]) x1" "rpath r x1 xs3 x2" by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   937
    from that [OF eq_xs this(1)[folded eq_xs1] this(2)]
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   938
    show ?thesis .
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   939
  qed
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   940
qed
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   941
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   942
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   943
lemma rpath_overlap [consumes 2, cases pred:rpath]:
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   944
  assumes "rpath r x xs1 x1"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   945
  and "rpath r x xs2 x2"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   946
  obtains (less_1) xs3 where "xs2 = xs1 @ xs3"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   947
     |    (less_2) xs3 where "xs1 = xs2 @ xs3"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   948
proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   949
  have "length xs1 \<le> length xs2 \<or> length xs2 \<le> length xs1" by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   950
  with assms rpath_overlap_oneside that show ?thesis by metis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   951
qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   952
80
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   953
lemma rpath_overlap' [consumes 2, cases pred:rpath]:
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   954
  assumes "rpath r x xs1 x1"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   955
  and "rpath r x xs2 x2"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   956
  obtains (less_1) xs3 where "xs2 = xs1 @ xs3" "rpath r x xs1 x1" "rpath r x1 xs3 x2"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   957
     |    (less_2) xs3 where "xs1 = xs2 @ xs3" "rpath r x xs2 x2" "rpath r x2 xs3 x1"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   958
proof -
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   959
  have "length xs1 \<le> length xs2 \<or> length xs2 \<le> length xs1" by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   960
  with assms rpath_overlap_oneside' that show ?thesis by metis
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   961
qed
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
   962
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   963
text {*
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   964
  As a corollary of @{thm "rpath_overlap_oneside"}, 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   965
  the following two lemmas gives one important property of relation tree, 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   966
  i.e. there is at most one path between any two nodes.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   967
  Similar to the proof of @{thm rpath_overlap}, we starts with
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   968
  the one side version first.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   969
*}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   970
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   971
lemma rpath_unique_oneside:
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   972
  assumes "rpath r x xs1 y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   973
    and "rpath r x xs2 y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   974
    and "length xs1 \<le> length xs2"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   975
  shows "xs1 = xs2"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   976
proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   977
  from rpath_overlap_oneside[OF assms] 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   978
  obtain xs3 where less_1: "xs2 = xs1 @ xs3" by blast
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   979
  show ?thesis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   980
  proof(cases "xs3 = []") 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   981
    case True
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   982
    from less_1[unfolded this] show ?thesis by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   983
  next
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   984
    case False
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   985
    note FalseH = this
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   986
    show ?thesis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   987
    proof(cases "xs1 = []")
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   988
      case True
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   989
      have "(x, x) \<in> r^+"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   990
      proof(rule rpath_plus)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   991
        from assms(1)[unfolded True] 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   992
        have "y = x" by (cases rule:rpath_nilE, simp)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   993
        from assms(2)[unfolded this] show "rpath r x xs2 x" .
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   994
      next
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   995
        from less_1 and False show "xs2 \<noteq> []" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   996
      qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   997
      with acl show ?thesis by (unfold acyclic_def, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   998
    next 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
   999
      case False
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1000
      then obtain e es where eq_xs1: "xs1 = es@[e]" by fast
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1001
      from assms(2)[unfolded less_1 this]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1002
      have "rpath r x (es @ [e] @ xs3) y" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1003
      thus ?thesis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1004
      proof(cases rule:rpath_appendE)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1005
        case 1
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1006
        from rpath_dest_eq [OF 1(1)[folded eq_xs1] assms(1)]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1007
        have "e = y" .
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1008
        from rpath_plus [OF 1(2)[unfolded this] FalseH]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1009
        have "(y, y) \<in> r^+" .
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1010
        with acl show ?thesis by (unfold acyclic_def, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1011
      qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1012
    qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1013
  qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1014
qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1015
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1016
text {*
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1017
  The following is the full version of path uniqueness.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1018
*}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1019
lemma rpath_unique:
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1020
  assumes "rpath r x xs1 y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1021
    and "rpath r x xs2 y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1022
  shows "xs1 = xs2"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1023
proof(cases "length xs1 \<le> length xs2")
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1024
   case True
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1025
   from rpath_unique_oneside[OF assms this] show ?thesis .
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1026
next
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1027
  case False
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1028
  hence "length xs2 \<le> length xs1" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1029
  from rpath_unique_oneside[OF assms(2,1) this]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1030
  show ?thesis by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1031
qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1032
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1033
text {*
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1034
  The following lemma shows that the `independence` relation is symmetric.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1035
  It is an obvious auxiliary lemma which will be used later. 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1036
*}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1037
lemma sym_indep: "indep r x y \<Longrightarrow> indep r y x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1038
  by (unfold indep_def, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1039
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1040
text {*
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1041
  This is another `obvious` lemma about trees, which says trees rooted at 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1042
  independent nodes are disjoint.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1043
*}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1044
lemma subtree_disjoint:
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1045
  assumes "indep r x y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1046
  shows "subtree r x \<inter> subtree r y = {}"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1047
proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1048
  { fix z x y xs1 xs2 xs3
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1049
      assume ind: "indep r x y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1050
      and rp1: "rpath r z xs1 x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1051
      and rp2: "rpath r z xs2 y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1052
      and h: "xs2 = xs1 @ xs3"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1053
      have False
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1054
      proof(cases "xs1 = []")
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1055
        case True
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1056
        from rp1[unfolded this] have "x = z" by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1057
        from rp2[folded this] rpath_star ind[unfolded indep_def]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1058
        show ?thesis by metis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1059
      next
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1060
        case False
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1061
        then obtain e es where eq_xs1: "xs1 = es@[e]" by fast
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1062
        from rp2[unfolded h this]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1063
        have "rpath r z (es @ [e] @ xs3) y" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1064
        thus ?thesis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1065
        proof(cases rule:rpath_appendE)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1066
          case 1
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1067
          have "e = x" using 1(1)[folded eq_xs1] rp1 rpath_dest_eq by metis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1068
          from rpath_star[OF 1(2)[unfolded this]] ind[unfolded indep_def]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1069
          show ?thesis by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1070
        qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1071
      qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1072
  } note my_rule = this
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1073
  { fix z
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1074
    assume h: "z \<in> subtree r x" "z \<in> subtree r y"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1075
    from h(1) have "(z, x) \<in> r^*" by (unfold subtree_def, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1076
    then obtain xs1 where rp1: "rpath r z xs1 x" using star_rpath by metis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1077
    from h(2) have "(z, y) \<in> r^*" by (unfold subtree_def, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1078
    then obtain xs2 where rp2: "rpath r z xs2 y" using star_rpath by metis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1079
    from rp1 rp2
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1080
    have False
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1081
    by (cases, insert my_rule[OF sym_indep[OF assms(1)] rp2 rp1] 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1082
                  my_rule[OF assms(1) rp1 rp2], auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1083
  } thus ?thesis by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1084
qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1085
137
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
  1086
lemma root_unique:
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
  1087
   assumes "x \<in> subtree r y"
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
  1088
    and "x \<in> subtree r z"
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
  1089
    and "root r y"
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
  1090
    and "root r z"
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
  1091
    shows "y = z" 
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
  1092
proof -
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
  1093
  { assume "y \<noteq> z"
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
  1094
    from root_indep[OF assms(4,3) this]
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
  1095
    have "indep r z y" .
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
  1096
    from subtree_disjoint[OF this] and assms
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
  1097
    have False by auto
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
  1098
  } thus ?thesis by auto
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
  1099
qed
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
  1100
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1101
text {*
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1102
  The following lemma @{text "subtree_del"} characterizes the change of sub-tree of 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1103
  @{text "x"} with the removal of an inside edge @{text "(a, b)"}. 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1104
  Note that, the case for the removal of an outside edge has already been dealt with
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1105
  in lemma @{text "subtree_del_outside"}). 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1106
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1107
  This lemma is underpinned by the following two `obvious` facts:
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1108
  \begin{enumearte}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1109
  \item
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1110
  In graph @{text "r"}, for an inside edge @{text "(a,b) \<in> edges_in r x"},  
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1111
  every node @{text "c"} in the sub-tree of @{text "a"} has a path
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1112
  which goes first from @{text "c"} to @{text "a"}, then through edge @{text "(a, b)"}, and 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1113
  finally reaches @{text "x"}. By the uniqueness of path in a tree,
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1114
  all paths from sub-tree of @{text "a"} to @{text "x"} are such constructed, therefore 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1115
  must go through @{text "(a, b)"}. The consequence is: with the removal of @{text "(a,b)"},
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1116
  all such paths will be broken. 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1117
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1118
  \item
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1119
  On the other hand, all paths not originate from within the sub-tree of @{text "a"}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1120
  will not be affected by the removal of edge @{text "(a, b)"}. 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1121
  The reason is simple: if the path is affected by the removal, it must 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1122
  contain @{text "(a, b)"}, then it must originate from within the sub-tree of @{text "a"}.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1123
  \end{enumearte}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1124
*}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1125
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1126
lemma subtree_del_inside: (* ddd *)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1127
    assumes "(a,b) \<in> edges_in r x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1128
    shows "subtree (r - {(a, b)}) x = (subtree r x) - subtree r a"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1129
proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1130
  from assms have asm: "b \<in> subtree r x" "(a, b) \<in> r" by (auto simp:edges_in_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1131
  -- {* The proof follows a common pattern to prove the equality of sets. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1132
  { -- {* The `left to right` direction.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1133
       *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1134
    fix c
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1135
    -- {* Assuming @{text "c"} is inside the sub-tree of @{text "x"} in the reduced graph *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1136
    assume h: "c \<in> subtree (r - {(a, b)}) x" 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1137
    -- {* We are going to show that @{text "c"} can not be in the sub-tree of @{text "a"} in 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1138
          the original graph. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1139
    -- {* In other words, all nodes inside the sub-tree of @{text "a"} in the original 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1140
          graph will be removed from the sub-tree of @{text "x"} in the reduced graph. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1141
    -- {* The reason, as analyzed before, is that all paths from within the 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1142
          sub-tree of @{text "a"} are broken with the removal of edge @{text "(a,b)"}.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1143
       *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1144
    have "c \<in> (subtree r x) - subtree r a" 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1145
    proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1146
      let ?r' = "r - {(a, b)}" -- {* The reduced graph is abbreviated as @{text "?r'"} *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1147
      from h have "(c, x) \<in> ?r'^*" by (auto simp:subtree_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1148
      -- {* Extract from the reduced graph the path @{text "xs"} from @{text "c"} to @{text "x"}. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1149
      then obtain xs where rp0: "rpath ?r' c xs x" by (rule star_rpath, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1150
      -- {* It is easy to show @{text "xs"} is also a path in the original graph *}
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1151
      hence rp1: "rpath r c xs x" using rpath_edges_on[OF rp0]
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1152
        by auto
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1153
      -- {* @{text "xs"} is used as the witness to show that @{text "c"} 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1154
                   in the sub-tree of @{text "x"} in the original graph. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1155
      hence "c \<in> subtree r x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1156
         by (rule rpath_star[elim_format], auto simp:subtree_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1157
      -- {* The next step is to show that @{text "c"} can not be in the sub-tree of @{text "a"}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1158
            in the original graph. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1159
      -- {* We need to use the fact that all paths originate from within sub-tree of @{text "a"}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1160
             are broken. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1161
      moreover have "c \<notin> subtree r a"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1162
      proof
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1163
        -- {* Proof by contradiction, suppose otherwise *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1164
        assume otherwise: "c \<in> subtree r a"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1165
        -- {* Then there is a path in original graph leading from @{text "c"} to @{text "a"} *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1166
        obtain xs1 where rp_c: "rpath r c xs1 a" 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1167
        proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1168
          from otherwise have "(c, a) \<in> r^*" by (auto simp:subtree_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1169
          thus ?thesis by (rule star_rpath, auto intro!:that)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1170
        qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1171
        -- {* Starting from this path, we are going to construct a fictional 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1172
                  path from @{text "c"} to @{text "x"}, which, as explained before,
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1173
              is broken, so that contradiction can be derived. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1174
        -- {* First, there is a path from @{text "b"} to @{text "x"} *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1175
        obtain ys where rp_b: "rpath r b ys x" 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1176
        proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1177
          from asm have "(b, x) \<in> r^*" by (auto simp:subtree_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1178
          thus ?thesis by (rule star_rpath, auto intro!:that)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1179
        qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1180
        -- {* The paths @{text "xs1"} and @{text "ys"} can be 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1181
                 tied together using @{text "(a,b)"} to form a path 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1182
               from @{text "c"} to @{text "x"}: *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1183
        have "rpath r c (xs1 @ b # ys) x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1184
        proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1185
          from rstepI[OF asm(2) rp_b] have "rpath r a (b # ys) x" .
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1186
          from rpath_appendI[OF rp_c this]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1187
          show ?thesis .
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1188
        qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1189
        -- {* By the uniqueness of path between two nodes of a tree, we have: *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1190
        from rpath_unique[OF rp1 this] have eq_xs: "xs = xs1 @ b # ys" .
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1191
        -- {* Contradiction can be derived from from this fictional path . *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1192
        show False
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1193
        proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1194
          -- {* It can be shown that @{term "(a,b)"} is on this fictional path. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1195
          have "(a, b) \<in> edges_on (c#xs)"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1196
          proof(cases "xs1 = []")
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1197
            case True
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1198
            from rp_c[unfolded this] have "rpath r c [] a" .
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1199
            hence eq_c: "c = a" by fast
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1200
            hence "c#xs = a#xs" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1201
            from this and eq_xs have "c#xs = a # xs1 @ b # ys" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1202
            from this[unfolded True] have "c#xs = []@[a,b]@ys" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1203
            thus ?thesis by (auto simp:edges_on_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1204
          next
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1205
            case False
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1206
            from rpath_nnl_lastE[OF rp_c this]
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1207
            obtain xs' where "xs1 = xs'@[a]" by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1208
            from eq_xs[unfolded this] have "c#xs = (c#xs')@[a,b]@ys" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1209
            thus ?thesis by (unfold edges_on_def, blast)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1210
          qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1211
          -- {* It can also be shown that @{term "(a,b)"} is not on this fictional path. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1212
          moreover have "(a, b) \<notin> edges_on (c#xs)"
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1213
              using rpath_edges_on[OF rp0] by (auto)
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1214
          -- {* Contradiction is thus derived. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1215
          ultimately show False by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1216
        qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1217
      qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1218
      ultimately show ?thesis by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1219
    qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1220
  } moreover {
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1221
    -- {* The `right to left` direction.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1222
       *} 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1223
     fix c
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1224
   -- {* Assuming that @{text "c"} is in the sub-tree of @{text "x"}, but
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1225
         outside of the sub-tree of @{text "a"} in the original graph, *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1226
   assume h: "c \<in> (subtree r x) - subtree r a"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1227
   -- {* we need to show that in the reduced graph, @{text "c"} is still in 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1228
         the sub-tree of @{text "x"}. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1229
   have "c \<in> subtree (r - {(a, b)}) x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1230
   proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1231
      -- {* The proof goes by showing that the path from @{text "c"} to @{text "x"}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1232
            in the original graph is not affected by the removal of @{text "(a,b)"}.
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1233
         *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1234
      from h have "(c, x) \<in> r^*" by (unfold subtree_def, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1235
      -- {* Extract the path @{text "xs"} from @{text "c"} to @{text "x"} in the original graph. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1236
      from star_rpath[OF this] obtain xs where rp: "rpath r c xs x" by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1237
      -- {* Show that it is also a path in the reduced graph. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1238
      hence "rpath (r - {(a, b)}) c xs x"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1239
      -- {* The proof goes by using rule @{thm rpath_transfer} *} 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1240
      proof(rule rpath_transfer)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1241
        -- {* We need to show all edges on the path are still in the reduced graph. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1242
        show "edges_on (c # xs) \<subseteq> r - {(a, b)}"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1243
        proof -
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1244
          -- {* It is easy to show that all the edges are in the original graph. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1245
          from rpath_edges_on [OF rp] have " edges_on (c # xs) \<subseteq> r" .
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1246
          -- {* The essential part is to show that @{text "(a, b)"} is not on the path. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1247
          moreover have "(a,b) \<notin> edges_on (c#xs)"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1248
          proof
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1249
            -- {* Proof by contradiction, suppose otherwise: *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1250
            assume otherwise: "(a, b) \<in> edges_on (c#xs)"
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1251
            -- {* Then @{text "(a, b)"} is in the middle of the path. 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1252
                  with @{text "l1"} and @{text "l2"} be the nodes in 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1253
                  the front and rear respectively. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1254
              then obtain l1 l2 where eq_xs: 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1255
                "c#xs = l1 @ [a, b] @ l2" by (unfold edges_on_def, blast)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1256
            -- {* From this, it can be shown that @{text "c"} is 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1257
                      in the sub-tree of @{text "a"} *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1258
            have "c \<in> subtree r a" 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1259
            proof(cases "l1 = []")
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1260
              case True
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1261
              -- {* If @{text "l1"} is null, it can be derived that @{text "c = a"}. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1262
              with eq_xs have "c = a" by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1263
              -- {* So, @{text "c"} is obviously in the sub-tree of @{text "a"}. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1264
              thus ?thesis by (unfold subtree_def, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1265
            next
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1266
              case False
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1267
              -- {* When @{text "l1"} is not null, it must have a tail @{text "es"}: *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1268
              then obtain e es where "l1 = e#es" by (cases l1, auto)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1269
              -- {* The relation of this tail with @{text "xs"} is derived: *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1270
              with eq_xs have "xs = es@[a,b]@l2" by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1271
              -- {* From this, a path from @{text "c"} to @{text "a"} is made visible: *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1272
              from rp[unfolded this] have "rpath r c (es @ [a] @ (b#l2)) x" by simp
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1273
              thus ?thesis
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1274
              proof(cases rule:rpath_appendE)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1275
                -- {* The path from @{text "c"} to @{text "a"} is extraced 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1276
                             using @{thm "rpath_appendE"}: *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1277
                case 1
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1278
                from rpath_star[OF this(1)] 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1279
                -- {* The extracted path servers as a witness that @{text "c"} is 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1280
                          in the sub-tree of @{text "a"}: *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1281
                show ?thesis by (simp add:subtree_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1282
            qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1283
          qed with h show False by auto         
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1284
         qed ultimately show ?thesis by auto
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1285
       qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1286
     qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1287
     -- {* From , it is shown that @{text "c"} is in the sub-tree of @{text "x"}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1288
           inthe reduced graph. *}
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1289
     from rpath_star[OF this] show ?thesis by (auto simp:subtree_def)
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1290
    qed
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1291
  } 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1292
  -- {* The equality of sets is derived from the two directions just proved. *}
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1293
  ultimately show ?thesis by blast
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1294
qed 
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1295
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1296
lemma  set_del_rootI:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1297
  assumes "r1 \<subseteq> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1298
  and "a \<in> Domain r1"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1299
  shows "root (r - r1) a"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1300
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1301
   let ?r = "r - r1"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1302
  { fix a' 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1303
    assume neq: "a' \<noteq> a"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1304
    have "a \<notin> subtree ?r a'"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1305
    proof
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1306
      assume "a \<in> subtree ?r a'"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1307
      hence "(a, a') \<in> ?r^*" by (auto simp:subtree_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1308
      from star_rpath[OF this] obtain xs
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1309
      where rp: "rpath ?r a xs a'" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1310
      from rpathE[OF this] and neq
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1311
      obtain z zs where h: "(a, z) \<in> ?r" "rpath ?r z zs a'" "xs = z#zs" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1312
      from assms(2) obtain z' where z'_in: "(a, z') \<in> r1" by (auto simp:DomainE)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1313
      with assms(1) have "(a, z') \<in> r" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1314
      moreover from h(1) have "(a, z) \<in> r" by simp 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1315
      ultimately have "z' = z" using sgv by (auto simp:single_valued_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1316
      from z'_in[unfolded this] and h(1) show False by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1317
   qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1318
  } thus ?thesis by (intro rootI, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1319
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1320
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1321
lemma edge_del_no_rootI:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1322
  assumes "(a, b) \<in> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1323
  shows "root (r - {(a, b)}) a"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1324
  by (rule set_del_rootI, insert assms, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1325
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1326
lemma ancestors_children_unique:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1327
  assumes "z1 \<in> ancestors r x \<inter> children r y"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1328
  and "z2 \<in> ancestors r x \<inter> children r y"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1329
  shows "z1 = z2"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1330
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1331
  from assms have h:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1332
     "(x, z1) \<in> r^+" "(z1, y) \<in> r" 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1333
     "(x, z2) \<in> r^+" "(z2, y) \<in> r" 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1334
  by (auto simp:ancestors_def children_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1335
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1336
  -- {* From this, a path containing @{text "z1"} is obtained. *}
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1337
  from plus_rpath[OF h(1)] obtain xs1 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1338
     where h1: "rpath r x xs1 z1" "xs1 \<noteq> []" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1339
  from rpath_nnl_lastE[OF this] obtain xs1' where eq_xs1: "xs1 = xs1' @ [z1]"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1340
    by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1341
  from h(2) have h2: "rpath r z1 [y] y" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1342
  from rpath_appendI[OF h1(1) h2, unfolded eq_xs1]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1343
  have rp1: "rpath r x (xs1' @ [z1, y]) y" by simp
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1344
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1345
  -- {* Then, another path containing @{text "z2"} is obtained. *}
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1346
  from plus_rpath[OF h(3)] obtain xs2
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1347
     where h3: "rpath r x xs2 z2" "xs2 \<noteq> []" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1348
  from rpath_nnl_lastE[OF this] obtain xs2' where eq_xs2: "xs2 = xs2' @ [z2]"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1349
    by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1350
  from h(4) have h4: "rpath r z2 [y] y" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1351
  from rpath_appendI[OF h3(1) h4, unfolded eq_xs2]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1352
     have "rpath r x (xs2' @ [z2, y]) y" by simp
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1353
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1354
  -- {* Finally @{text "z1 = z2"} is proved by uniqueness of path. *}
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1355
  from rpath_unique[OF rp1 this]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1356
  have "xs1' @ [z1, y] = xs2' @ [z2, y]" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1357
  thus ?thesis by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1358
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1359
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1360
lemma ancestors_childrenE:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1361
  assumes "y \<in> ancestors r x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1362
  obtains "x \<in> children r y"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1363
      | z where "z \<in> ancestors r x \<inter> children r y"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1364
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1365
  from assms(1) have "(x, y) \<in> r^+" by (auto simp:ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1366
  from tranclD2[OF this] obtain z where 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1367
     h: "(x, z) \<in> r\<^sup>*" "(z, y) \<in> r" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1368
  from h(1)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1369
  show ?thesis
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1370
  proof(cases rule:rtranclE)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1371
    case base
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1372
    from h(2)[folded this] have "x \<in> children r y" 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1373
              by (auto simp:children_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1374
    thus ?thesis by (intro that, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1375
  next
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1376
    case (step u)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1377
    hence "z \<in> ancestors r x" by (auto simp:ancestors_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1378
    moreover from h(2) have "z \<in> children r y" 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1379
              by (auto simp:children_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1380
    ultimately show ?thesis by (intro that, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1381
  qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1382
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1383
134
8a13b37b4d95 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 133
diff changeset
  1384
end (* of forest *)
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1385
80
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1386
lemma subtree_trancl:
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1387
  "subtree r x = {x} \<union> {y. (y, x) \<in> r^+}" (is "?L = ?R")
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1388
proof -
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1389
  { fix z
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1390
    assume "z \<in> ?L"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1391
    hence "z \<in> ?R"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1392
    proof(cases rule:subtreeE)
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1393
      case 2
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1394
      thus ?thesis  
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1395
        by (unfold ancestors_def, auto)
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1396
    qed auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1397
  } moreover
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1398
  { fix z
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1399
    assume "z \<in> ?R"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1400
    hence "z \<in> ?L" 
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1401
      by (unfold subtree_def, auto)
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1402
  } ultimately show ?thesis by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1403
qed
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1404
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1405
lemma ancestor_children_subtreeI [intro]: 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1406
  "x \<in> ancestors r z \<Longrightarrow> z \<in> \<Union>(subtree r ` children r x)"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1407
  by (unfold ancestors_def children_def, auto simp:subtree_def dest:tranclD2)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1408
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1409
lemma [iff]: "x \<in> subtree r x"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1410
  by (auto simp:subtree_def)
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1411
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1412
lemma [intro]: "xa \<in> children r x \<Longrightarrow> z \<in> subtree r xa \<Longrightarrow> z \<in> subtree r x"
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1413
  by (unfold children_def subtree_def, auto)
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1414
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1415
lemma subtree_children:
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1416
  "subtree r x = ({x} \<union> (\<Union> (subtree r ` (children r x))))" (is "?L = ?R")
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1417
  by fast
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1418
134
8a13b37b4d95 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 133
diff changeset
  1419
context fforest
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1420
begin
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1421
  
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1422
lemma finite_subtree:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1423
  shows "finite (subtree r x)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1424
proof(induct rule:wf_induct[OF wf])
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1425
  case (1 x)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1426
  have "finite (\<Union>(subtree r ` children r x))"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1427
  proof(rule finite_Union)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1428
    show "finite (subtree r ` children r x)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1429
    proof(cases "children r x = {}")
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1430
      case True
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1431
      thus ?thesis by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1432
    next
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1433
      case False
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1434
      hence "x \<in> Range r" by (auto simp:children_def)
133
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1435
      from fb 
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1436
      have "finite (children r x)" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1437
      thus ?thesis by (rule finite_imageI)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1438
    qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1439
  next
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1440
    fix M 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1441
    assume "M \<in> subtree r ` children r x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1442
    then obtain y where h: "y \<in> children r x" "M = subtree r y" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1443
    hence "(y, x) \<in> r" by (auto simp:children_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1444
    from 1[rule_format, OF this, folded h(2)]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1445
    show "finite M" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1446
  qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1447
  thus ?case
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1448
    by (unfold subtree_children finite_Un, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1449
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1450
57
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1451
end
f1b39d77db00 Added generic theory "RTree.thy"
xingyuan zhang <xingyuanzhang@126.com>
parents:
diff changeset
  1452
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1453
definition "pairself f = (\<lambda>(a, b). (f a, f b))"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1454
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1455
definition "rel_map f r = (pairself f ` r)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1456
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1457
lemma rel_mapE: 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1458
  assumes "(a, b) \<in> rel_map f r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1459
  obtains c d 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1460
  where "(c, d) \<in> r" "(a, b) = (f c, f d)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1461
  using assms
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1462
  by (unfold rel_map_def pairself_def, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1463
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1464
lemma rel_mapI: 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1465
  assumes "(a, b) \<in> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1466
    and "c = f a"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1467
    and "d = f b"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1468
  shows "(c, d) \<in> rel_map f r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1469
  using assms
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1470
  by (unfold rel_map_def pairself_def, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1471
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1472
lemma map_appendE:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1473
  assumes "map f zs = xs @ ys"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1474
  obtains xs' ys' 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1475
  where "zs = xs' @ ys'" "xs = map f xs'" "ys = map f ys'"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1476
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1477
  have "\<exists> xs' ys'. zs = xs' @ ys' \<and> xs = map f xs' \<and> ys = map f ys'"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1478
  using assms
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1479
  proof(induct xs arbitrary:zs ys)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1480
    case (Nil zs ys)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1481
    thus ?case by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1482
  next
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1483
    case (Cons x xs zs ys)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1484
    note h = this
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1485
    show ?case
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1486
    proof(cases zs)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1487
      case (Cons e es)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1488
      with h have eq_x: "map f es = xs @ ys" "x = f e" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1489
      from h(1)[OF this(1)]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1490
      obtain xs' ys' where "es = xs' @ ys'" "xs = map f xs'" "ys = map f ys'"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1491
        by blast
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1492
      with Cons eq_x
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1493
      have "zs = (e#xs') @ ys' \<and> x # xs = map f (e#xs') \<and> ys = map f ys'" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1494
      thus ?thesis by metis
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1495
    qed (insert h, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1496
  qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1497
  thus ?thesis by (auto intro!:that)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1498
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1499
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1500
lemma rel_map_mono:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1501
  assumes "r1 \<subseteq> r2"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1502
  shows "rel_map f r1 \<subseteq> rel_map f r2"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1503
  using assms
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1504
  by (auto simp:rel_map_def pairself_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1505
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1506
lemma rel_map_compose [simp]:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1507
    shows "rel_map f1 (rel_map f2 r) = rel_map (f1 o f2) r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1508
    by (auto simp:rel_map_def pairself_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1509
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1510
lemma edges_on_map: "edges_on (map f xs) = rel_map f (edges_on xs)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1511
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1512
  { fix a b
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1513
    assume "(a, b) \<in> edges_on (map f xs)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1514
    then obtain l1 l2 where eq_map: "map f xs = l1 @ [a, b] @ l2" 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1515
      by (unfold edges_on_def, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1516
    hence "(a, b) \<in> rel_map f (edges_on xs)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1517
      by (auto elim!:map_appendE intro!:rel_mapI simp:edges_on_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1518
  } moreover { 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1519
    fix a b
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1520
    assume "(a, b) \<in> rel_map f (edges_on xs)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1521
    then obtain c d where 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1522
        h: "(c, d) \<in> edges_on xs" "(a, b) = (f c, f d)" 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1523
             by (elim rel_mapE, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1524
    then obtain l1 l2 where
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1525
        eq_xs: "xs = l1 @ [c, d] @ l2" 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1526
             by (auto simp:edges_on_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1527
    hence eq_map: "map f xs = map f l1 @ [f c, f d] @ map f l2" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1528
    have "(a, b) \<in> edges_on (map f xs)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1529
    proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1530
      from h(2) have "[f c, f d] = [a, b]" by simp
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1531
      from eq_map[unfolded this] show ?thesis by (auto simp:edges_on_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1532
    qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1533
  } ultimately show ?thesis by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1534
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1535
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1536
lemma image_id:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1537
  assumes "\<And> x. x \<in> A \<Longrightarrow> f x = x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1538
  shows "f ` A = A"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1539
  using assms by (auto simp:image_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1540
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1541
lemma rel_map_inv_id:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1542
  assumes "inj_on f ((Domain r) \<union> (Range r))"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1543
  shows "(rel_map (inv_into ((Domain r) \<union> (Range r)) f \<circ> f) r) = r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1544
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1545
 let ?f = "(inv_into (Domain r \<union> Range r) f \<circ> f)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1546
 {
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1547
  fix a b
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1548
  assume h0: "(a, b) \<in> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1549
  have "pairself ?f (a, b) = (a, b)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1550
  proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1551
    from assms h0 have "?f a = a" by (auto intro:inv_into_f_f)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1552
    moreover have "?f b = b"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1553
      by (insert h0, simp, intro inv_into_f_f[OF assms], auto intro!:RangeI)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1554
    ultimately show ?thesis by (auto simp:pairself_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1555
  qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1556
 } thus ?thesis by (unfold rel_map_def, intro image_id, case_tac x, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1557
qed 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1558
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1559
lemma rel_map_acyclic:
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1560
  assumes "acyclic r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1561
  and "inj_on f ((Domain r) \<union> (Range r))"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1562
  shows "acyclic (rel_map f r)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1563
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1564
  let ?D = "Domain r \<union> Range r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1565
  { fix a 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1566
    assume "(a, a) \<in> (rel_map f r)^+" 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1567
    from plus_rpath[OF this]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1568
    obtain xs where rp: "rpath (rel_map f r) a xs a" "xs \<noteq> []" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1569
    from rpath_nnl_lastE[OF this] obtain xs' where eq_xs: "xs = xs'@[a]" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1570
    from rpath_edges_on[OF rp(1)]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1571
    have h: "edges_on (a # xs) \<subseteq> rel_map f r" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1572
    from edges_on_map[of "inv_into ?D f" "a#xs"]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1573
    have "edges_on (map (inv_into ?D f) (a # xs)) = rel_map (inv_into ?D f) (edges_on (a # xs))" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1574
    with rel_map_mono[OF h, of "inv_into ?D f"]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1575
    have "edges_on (map (inv_into ?D f) (a # xs)) \<subseteq> rel_map ((inv_into ?D f) o f) r" by simp
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1576
    from this[unfolded eq_xs]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1577
    have subr: "edges_on (map (inv_into ?D f) (a # xs' @ [a])) \<subseteq> rel_map (inv_into ?D f \<circ> f) r" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1578
    have "(map (inv_into ?D f) (a # xs' @ [a])) = (inv_into ?D f a) # map (inv_into ?D f) xs' @ [inv_into ?D f a]"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1579
      by simp
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1580
    from edges_on_rpathI[OF subr[unfolded this]]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1581
    have "rpath (rel_map (inv_into ?D f \<circ> f) r) 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1582
                      (inv_into ?D f a) (map (inv_into ?D f) xs' @ [inv_into ?D f a]) (inv_into ?D f a)" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1583
    hence "(inv_into ?D f a, inv_into ?D f a) \<in> (rel_map (inv_into ?D f \<circ> f) r)^+"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1584
        by (rule rpath_plus, simp)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1585
    moreover have "(rel_map (inv_into ?D f \<circ> f) r) = r" by (rule rel_map_inv_id[OF assms(2)])
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1586
    moreover note assms(1) 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1587
    ultimately have False by (unfold acyclic_def, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1588
  } thus ?thesis by (auto simp:acyclic_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1589
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1590
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1591
lemma compose_relpow_2 [intro, simp]:
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1592
  assumes "r1 \<subseteq> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1593
  and "r2 \<subseteq> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1594
  shows "r1 O r2 \<subseteq> r ^^ (2::nat)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1595
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1596
  { fix a b
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1597
    assume "(a, b) \<in> r1 O r2"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1598
    then obtain e where "(a, e) \<in> r1" "(e, b) \<in> r2"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1599
      by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1600
    with assms have "(a, e) \<in> r" "(e, b) \<in> r" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1601
    hence "(a, b) \<in> r ^^ (Suc (Suc 0))" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1602
  } thus ?thesis by (auto simp:numeral_2_eq_2)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1603
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1604
134
8a13b37b4d95 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 133
diff changeset
  1605
lemma relpow_mult: 
8a13b37b4d95 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 133
diff changeset
  1606
  "((r::'a rel) ^^ m) ^^ n = r ^^ (m*n)"
8a13b37b4d95 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 133
diff changeset
  1607
proof(induct n arbitrary:m)
8a13b37b4d95 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 133
diff changeset
  1608
  case (Suc k m)
8a13b37b4d95 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 133
diff changeset
  1609
  thus ?case
8a13b37b4d95 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 133
diff changeset
  1610
  proof -
8a13b37b4d95 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 133
diff changeset
  1611
    have h: "(m * k + m) = (m + m * k)" by auto
8a13b37b4d95 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 133
diff changeset
  1612
    show ?thesis 
8a13b37b4d95 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 133
diff changeset
  1613
      apply (simp add:Suc relpow_add[symmetric])
8a13b37b4d95 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 133
diff changeset
  1614
      by (unfold h, simp)
8a13b37b4d95 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 133
diff changeset
  1615
  qed
8a13b37b4d95 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 133
diff changeset
  1616
qed simp
8a13b37b4d95 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 133
diff changeset
  1617
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1618
lemma acyclic_compose [intro, simp]:
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1619
  assumes "acyclic r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1620
  and "r1 \<subseteq> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1621
  and "r2 \<subseteq> r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1622
  shows "acyclic (r1 O r2)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1623
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1624
  { fix a
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1625
    assume "(a, a) \<in> (r1 O r2)^+"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1626
    from trancl_mono[OF this compose_relpow_2[OF assms(2, 3)]]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1627
    have "(a, a) \<in> (r ^^ 2) ^+" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1628
    from trancl_power[THEN iffD1, OF this]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1629
    obtain n where h: "(a, a) \<in> (r ^^ 2) ^^ n" "n > 0" by blast
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1630
    from this(1)[unfolded relpow_mult] have h2: "(a, a) \<in> r ^^ (2 * n)" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1631
    have "(a, a) \<in> r^+" 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1632
    proof(cases rule:trancl_power[THEN iffD2])
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1633
      from h(2) h2 show "\<exists>n>0. (a, a) \<in> r ^^ n" 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1634
        by (rule_tac x = "2*n" in exI, auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1635
    qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1636
    with assms have "False" by (auto simp:acyclic_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1637
  } thus ?thesis by (auto simp:acyclic_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1638
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1639
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1640
lemma children_compose_unfold: 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1641
  "children (r1 O r2) x = \<Union> (children r1 ` (children r2 x))"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1642
  by (auto simp:children_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1643
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1644
lemma fbranch_compose [intro, simp]:
132
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
  1645
  assumes "\<forall> x \<in> Range r1 . finite (children r1 x)"
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
  1646
  and "\<forall> x \<in> Range r2 . finite (children r2 x)"
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
  1647
  shows "\<forall> x \<in> Range (r1 O r2) . finite (children (r1 O r2) x)"
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1648
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1649
  {  fix x
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1650
     assume "x\<in>Range (r1 O r2)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1651
     then obtain y z where h: "(y, z) \<in> r1" "(z, x) \<in> r2" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1652
     have "finite (children (r1 O r2) x)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1653
     proof(unfold children_compose_unfold, rule finite_Union)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1654
      show "finite (children r1 ` children r2 x)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1655
      proof(rule finite_imageI)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1656
        from h(2) have "x \<in> Range r2" by auto
134
8a13b37b4d95 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 133
diff changeset
  1657
        from assms(2)[unfolded fforest_def] this
132
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
  1658
        show "finite (children r2 x)" by auto
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1659
      qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1660
     next
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1661
       fix M
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1662
       assume "M \<in> children r1 ` children r2 x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1663
       then obtain y where h1: "y \<in> children r2 x" "M = children r1 y" by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1664
       show "finite M"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1665
       proof(cases "children r1 y = {}")
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1666
          case True
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1667
          with h1(2) show ?thesis by auto
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1668
       next
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1669
          case False
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1670
          hence "y \<in> Range r1" by (unfold children_def, auto)
134
8a13b37b4d95 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 133
diff changeset
  1671
          from assms(1)[unfolded fforest_def] this h1(2)
132
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
  1672
          show ?thesis by auto
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1673
       qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1674
     qed
132
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
  1675
  } thus ?thesis using assms by auto
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1676
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1677
133
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1678
lemma fbranch_compose1 [intro, simp]:
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1679
  assumes "\<forall>x. finite (children r1 x)"
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1680
  and "\<forall>x. finite (children r2 x)"
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1681
  shows "\<forall>x. finite (children (r1 O r2) x)"
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1682
by (metis (no_types, lifting) Collect_empty_eq Range.intros assms(1) 
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1683
         assms(2) children_def fbranch_compose finite.emptyI)
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1684
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1685
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1686
lemma finite_fbranchI [intro]:
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1687
  assumes "finite r"
132
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
  1688
  shows "\<forall> x \<in> Range r . finite (children r x)"
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1689
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1690
  { fix x 
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1691
    assume "x \<in>Range r"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1692
    have "finite (children r x)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1693
    proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1694
      have "{y. (y, x) \<in> r} \<subseteq> Domain r" by (auto)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1695
      from rev_finite_subset[OF finite_Domain[OF assms] this]
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1696
      have "finite {y. (y, x) \<in> r}" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1697
      thus ?thesis by (unfold children_def, simp)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1698
    qed
132
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
  1699
  } thus ?thesis by auto
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1700
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1701
133
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1702
lemma finite_fbranchI1 [intro]:
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1703
  assumes "finite r"
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1704
  shows "\<forall> x . finite (children r x)"
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1705
  by (metis (no_types, lifting) Collect_empty_eq Range.intros assms 
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1706
      children_def finite.emptyI finite_fbranchI)
4b717aa162fa updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 132
diff changeset
  1707
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1708
lemma subset_fbranchI [intro]:
132
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
  1709
  assumes "\<forall> x \<in> Range r1 . finite (children r1 x)"
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1710
  and "r2 \<subseteq> r1"
132
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
  1711
  shows "\<forall> x \<in> Range r2 . finite (children r2 x)"
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1712
proof -
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1713
  { fix x
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1714
    assume "x \<in>Range r2"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1715
    with assms(2) have "x \<in> Range r1" by auto
132
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
  1716
    from assms(1)[rule_format, OF this]
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1717
    have "finite (children r1 x)" .
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1718
    hence "finite (children r2 x)"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1719
    proof(rule rev_finite_subset)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1720
      from assms(2)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1721
      show "children r2 x \<subseteq> children r1 x" by (auto simp:children_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1722
    qed
132
d9974794436a added version with fgraphs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 131
diff changeset
  1723
  } thus ?thesis by auto
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1724
qed
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1725
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1726
lemma children_subtree [simp, intro]: 
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1727
  shows "children r x \<subseteq> subtree r x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1728
  by (auto simp:children_def subtree_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1729
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1730
lemma children_union_kept [simp]:
58
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1731
  assumes "x \<notin> Range r'"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1732
  shows "children (r \<union> r') x = children r x"
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1733
  using assms
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1734
  by (auto simp:children_def)
ad57323fd4d6 Extended RTree.thy
zhangx
parents: 57
diff changeset
  1735
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1736
lemma wf_rbase [elim]:
80
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1737
  assumes "wf r"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1738
  obtains b where "(b, a) \<in> r^*" "\<forall> c. (c, b) \<notin> r"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1739
proof -
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1740
  from assms
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1741
  have "\<exists> b. (b, a) \<in> r^* \<and> (\<forall> c. (c, b) \<notin> r)"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1742
  proof(induct) 
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1743
    case (less x)
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1744
    thus ?case
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1745
    proof(cases "\<exists> z. (z, x) \<in> r")
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1746
      case False
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1747
      moreover have "(x, x) \<in> r^*" by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1748
      ultimately show ?thesis by metis
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1749
    next
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1750
      case True
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1751
      then obtain z where h_z: "(z, x) \<in> r" by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1752
      from less[OF this]
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1753
      obtain b where "(b, z) \<in> r^*" "(\<forall>c. (c, b) \<notin> r)"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1754
        by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1755
      moreover from this(1) h_z have "(b, x) \<in> r^*" by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1756
      ultimately show ?thesis by metis
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1757
    qed
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1758
  qed
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1759
  with that show ?thesis by metis
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1760
qed
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1761
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1762
lemma wf_base [elim]:
80
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1763
  assumes "wf r"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1764
  and "a \<in> Range r"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1765
  obtains b where "(b, a) \<in> r^+" "\<forall> c. (c, b) \<notin> r"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1766
proof -
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1767
  from assms(2) obtain a' where h_a: "(a', a) \<in> r" by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1768
  from wf_rbase[OF assms(1), of a]
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1769
  obtain b where h_b: "(b, a) \<in> r\<^sup>*" "\<forall>c. (c, b) \<notin> r" by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1770
  from rtranclD[OF this(1)]
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1771
  have "b = a \<or>  b \<noteq> a \<and> (b, a) \<in> r\<^sup>+" by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1772
  moreover have "b \<noteq> a" using h_a h_b(2) by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1773
  ultimately have "(b, a) \<in> r\<^sup>+" by auto
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1774
  with h_b(2) and that show ?thesis by metis
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1775
qed
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 64
diff changeset
  1776
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1777
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1778
declare RTree.subtree_transfer[rule del]
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1779
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1780
declare RTree.subtreeE[rule del]
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1781
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1782
declare RTree.ancestors_Field[rule del]
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1783
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1784
declare RTree.star_rpath[rule del]
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1785
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1786
declare RTree.plus_rpath[rule del]
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 80
diff changeset
  1787
127
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
  1788
end