| author | wenzelm | 
| Sat, 21 Jan 2006 23:02:23 +0100 | |
| changeset 18731 | 3989c3c41983 | 
| parent 18372 | 2bffdf62fe7f | 
| child 19228 | 30fce6da8cbe | 
| permissions | -rw-r--r-- | 
| 10213 | 1  | 
(* Title: HOL/Transitive_Closure.thy  | 
2  | 
ID: $Id$  | 
|
3  | 
Author: Lawrence C Paulson, Cambridge University Computer Laboratory  | 
|
4  | 
Copyright 1992 University of Cambridge  | 
|
5  | 
*)  | 
|
6  | 
||
| 12691 | 7  | 
header {* Reflexive and Transitive closure of a relation *}
 | 
8  | 
||
| 15131 | 9  | 
theory Transitive_Closure  | 
| 15140 | 10  | 
imports Inductive  | 
| 16417 | 11  | 
uses ("../Provers/trancl.ML")
 | 
| 15131 | 12  | 
begin  | 
| 12691 | 13  | 
|
14  | 
text {*
 | 
|
15  | 
  @{text rtrancl} is reflexive/transitive closure,
 | 
|
16  | 
  @{text trancl} is transitive closure,
 | 
|
17  | 
  @{text reflcl} is reflexive closure.
 | 
|
18  | 
||
19  | 
  These postfix operators have \emph{maximum priority}, forcing their
 | 
|
20  | 
operands to be atomic.  | 
|
21  | 
*}  | 
|
| 10213 | 22  | 
|
| 
11327
 
cd2c27a23df1
Transitive closure is now defined via "inductive".
 
berghofe 
parents: 
11115 
diff
changeset
 | 
23  | 
consts  | 
| 12691 | 24  | 
  rtrancl :: "('a \<times> 'a) set => ('a \<times> 'a) set"    ("(_^*)" [1000] 999)
 | 
| 
11327
 
cd2c27a23df1
Transitive closure is now defined via "inductive".
 
berghofe 
parents: 
11115 
diff
changeset
 | 
25  | 
|
| 
 
cd2c27a23df1
Transitive closure is now defined via "inductive".
 
berghofe 
parents: 
11115 
diff
changeset
 | 
26  | 
inductive "r^*"  | 
| 12691 | 27  | 
intros  | 
| 15801 | 28  | 
rtrancl_refl [intro!, Pure.intro!, simp]: "(a, a) : r^*"  | 
29  | 
rtrancl_into_rtrancl [Pure.intro]: "(a, b) : r^* ==> (b, c) : r ==> (a, c) : r^*"  | 
|
| 
11327
 
cd2c27a23df1
Transitive closure is now defined via "inductive".
 
berghofe 
parents: 
11115 
diff
changeset
 | 
30  | 
|
| 
13704
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
31  | 
consts  | 
| 12691 | 32  | 
  trancl :: "('a \<times> 'a) set => ('a \<times> 'a) set"    ("(_^+)" [1000] 999)
 | 
| 
13704
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
33  | 
|
| 
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
34  | 
inductive "r^+"  | 
| 
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
35  | 
intros  | 
| 15801 | 36  | 
r_into_trancl [intro, Pure.intro]: "(a, b) : r ==> (a, b) : r^+"  | 
37  | 
trancl_into_trancl [Pure.intro]: "(a, b) : r^+ ==> (b, c) : r ==> (a,c) : r^+"  | 
|
| 10213 | 38  | 
|
39  | 
syntax  | 
|
| 12691 | 40  | 
  "_reflcl" :: "('a \<times> 'a) set => ('a \<times> 'a) set"    ("(_^=)" [1000] 999)
 | 
| 10213 | 41  | 
translations  | 
| 12691 | 42  | 
"r^=" == "r \<union> Id"  | 
| 10213 | 43  | 
|
| 10827 | 44  | 
syntax (xsymbols)  | 
| 
14361
 
ad2f5da643b4
* Support for raw latex output in control symbols: \<^raw...>
 
schirmer 
parents: 
14337 
diff
changeset
 | 
45  | 
  rtrancl :: "('a \<times> 'a) set => ('a \<times> 'a) set"    ("(_\<^sup>*)" [1000] 999)
 | 
| 
 
ad2f5da643b4
* Support for raw latex output in control symbols: \<^raw...>
 
schirmer 
parents: 
14337 
diff
changeset
 | 
46  | 
  trancl :: "('a \<times> 'a) set => ('a \<times> 'a) set"    ("(_\<^sup>+)" [1000] 999)
 | 
| 
 
ad2f5da643b4
* Support for raw latex output in control symbols: \<^raw...>
 
schirmer 
parents: 
14337 
diff
changeset
 | 
47  | 
  "_reflcl" :: "('a \<times> 'a) set => ('a \<times> 'a) set"    ("(_\<^sup>=)" [1000] 999)
 | 
| 12691 | 48  | 
|
| 14565 | 49  | 
syntax (HTML output)  | 
50  | 
  rtrancl :: "('a \<times> 'a) set => ('a \<times> 'a) set"    ("(_\<^sup>*)" [1000] 999)
 | 
|
51  | 
  trancl :: "('a \<times> 'a) set => ('a \<times> 'a) set"    ("(_\<^sup>+)" [1000] 999)
 | 
|
52  | 
  "_reflcl" :: "('a \<times> 'a) set => ('a \<times> 'a) set"    ("(_\<^sup>=)" [1000] 999)
 | 
|
53  | 
||
| 12691 | 54  | 
|
55  | 
subsection {* Reflexive-transitive closure *}
 | 
|
56  | 
||
57  | 
lemma r_into_rtrancl [intro]: "!!p. p \<in> r ==> p \<in> r^*"  | 
|
58  | 
  -- {* @{text rtrancl} of @{text r} contains @{text r} *}
 | 
|
59  | 
apply (simp only: split_tupled_all)  | 
|
60  | 
apply (erule rtrancl_refl [THEN rtrancl_into_rtrancl])  | 
|
61  | 
done  | 
|
62  | 
||
63  | 
lemma rtrancl_mono: "r \<subseteq> s ==> r^* \<subseteq> s^*"  | 
|
64  | 
  -- {* monotonicity of @{text rtrancl} *}
 | 
|
65  | 
apply (rule subsetI)  | 
|
66  | 
apply (simp only: split_tupled_all)  | 
|
67  | 
apply (erule rtrancl.induct)  | 
|
| 14208 | 68  | 
apply (rule_tac [2] rtrancl_into_rtrancl, blast+)  | 
| 12691 | 69  | 
done  | 
70  | 
||
| 12823 | 71  | 
theorem rtrancl_induct [consumes 1, induct set: rtrancl]:  | 
| 
12937
 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 
wenzelm 
parents: 
12823 
diff
changeset
 | 
72  | 
assumes a: "(a, b) : r^*"  | 
| 
 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 
wenzelm 
parents: 
12823 
diff
changeset
 | 
73  | 
and cases: "P a" "!!y z. [| (a, y) : r^*; (y, z) : r; P y |] ==> P z"  | 
| 
 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 
wenzelm 
parents: 
12823 
diff
changeset
 | 
74  | 
shows "P b"  | 
| 12691 | 75  | 
proof -  | 
76  | 
from a have "a = a --> P b"  | 
|
| 17589 | 77  | 
by (induct "%x y. x = a --> P y" a b) (iprover intro: cases)+  | 
78  | 
thus ?thesis by iprover  | 
|
| 12691 | 79  | 
qed  | 
80  | 
||
| 
14404
 
4952c5a92e04
Transitive_Closure: added consumes and case_names attributes
 
nipkow 
parents: 
14398 
diff
changeset
 | 
81  | 
lemmas rtrancl_induct2 =  | 
| 
 
4952c5a92e04
Transitive_Closure: added consumes and case_names attributes
 
nipkow 
parents: 
14398 
diff
changeset
 | 
82  | 
rtrancl_induct[of "(ax,ay)" "(bx,by)", split_format (complete),  | 
| 
 
4952c5a92e04
Transitive_Closure: added consumes and case_names attributes
 
nipkow 
parents: 
14398 
diff
changeset
 | 
83  | 
consumes 1, case_names refl step]  | 
| 18372 | 84  | 
|
| 12691 | 85  | 
lemma trans_rtrancl: "trans(r^*)"  | 
86  | 
  -- {* transitivity of transitive closure!! -- by induction *}
 | 
|
| 12823 | 87  | 
proof (rule transI)  | 
88  | 
fix x y z  | 
|
89  | 
assume "(x, y) \<in> r\<^sup>*"  | 
|
90  | 
assume "(y, z) \<in> r\<^sup>*"  | 
|
| 17589 | 91  | 
thus "(x, z) \<in> r\<^sup>*" by induct (iprover!)+  | 
| 12823 | 92  | 
qed  | 
| 12691 | 93  | 
|
94  | 
lemmas rtrancl_trans = trans_rtrancl [THEN transD, standard]  | 
|
95  | 
||
96  | 
lemma rtranclE:  | 
|
| 18372 | 97  | 
assumes major: "(a::'a,b) : r^*"  | 
98  | 
and cases: "(a = b) ==> P"  | 
|
99  | 
"!!y. [| (a,y) : r^*; (y,b) : r |] ==> P"  | 
|
100  | 
shows P  | 
|
| 12691 | 101  | 
  -- {* elimination of @{text rtrancl} -- by induction on a special formula *}
 | 
| 18372 | 102  | 
apply (subgoal_tac "(a::'a) = b | (EX y. (a,y) : r^* & (y,b) : r)")  | 
103  | 
apply (rule_tac [2] major [THEN rtrancl_induct])  | 
|
104  | 
prefer 2 apply blast  | 
|
105  | 
prefer 2 apply blast  | 
|
106  | 
apply (erule asm_rl exE disjE conjE cases)+  | 
|
107  | 
done  | 
|
| 12691 | 108  | 
|
| 12823 | 109  | 
lemma converse_rtrancl_into_rtrancl:  | 
110  | 
"(a, b) \<in> r \<Longrightarrow> (b, c) \<in> r\<^sup>* \<Longrightarrow> (a, c) \<in> r\<^sup>*"  | 
|
| 17589 | 111  | 
by (rule rtrancl_trans) iprover+  | 
| 12691 | 112  | 
|
113  | 
text {*
 | 
|
114  | 
  \medskip More @{term "r^*"} equations and inclusions.
 | 
|
115  | 
*}  | 
|
116  | 
||
117  | 
lemma rtrancl_idemp [simp]: "(r^*)^* = r^*"  | 
|
118  | 
apply auto  | 
|
119  | 
apply (erule rtrancl_induct)  | 
|
120  | 
apply (rule rtrancl_refl)  | 
|
121  | 
apply (blast intro: rtrancl_trans)  | 
|
122  | 
done  | 
|
123  | 
||
124  | 
lemma rtrancl_idemp_self_comp [simp]: "R^* O R^* = R^*"  | 
|
125  | 
apply (rule set_ext)  | 
|
126  | 
apply (simp only: split_tupled_all)  | 
|
127  | 
apply (blast intro: rtrancl_trans)  | 
|
128  | 
done  | 
|
129  | 
||
130  | 
lemma rtrancl_subset_rtrancl: "r \<subseteq> s^* ==> r^* \<subseteq> s^*"  | 
|
| 14208 | 131  | 
by (drule rtrancl_mono, simp)  | 
| 12691 | 132  | 
|
133  | 
lemma rtrancl_subset: "R \<subseteq> S ==> S \<subseteq> R^* ==> S^* = R^*"  | 
|
134  | 
apply (drule rtrancl_mono)  | 
|
| 
14398
 
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
 
ballarin 
parents: 
14361 
diff
changeset
 | 
135  | 
apply (drule rtrancl_mono, simp)  | 
| 12691 | 136  | 
done  | 
137  | 
||
138  | 
lemma rtrancl_Un_rtrancl: "(R^* \<union> S^*)^* = (R \<union> S)^*"  | 
|
139  | 
by (blast intro!: rtrancl_subset intro: r_into_rtrancl rtrancl_mono [THEN subsetD])  | 
|
140  | 
||
141  | 
lemma rtrancl_reflcl [simp]: "(R^=)^* = R^*"  | 
|
142  | 
by (blast intro!: rtrancl_subset intro: r_into_rtrancl)  | 
|
143  | 
||
144  | 
lemma rtrancl_r_diff_Id: "(r - Id)^* = r^*"  | 
|
145  | 
apply (rule sym)  | 
|
| 14208 | 146  | 
apply (rule rtrancl_subset, blast, clarify)  | 
| 12691 | 147  | 
apply (rename_tac a b)  | 
| 14208 | 148  | 
apply (case_tac "a = b", blast)  | 
| 12691 | 149  | 
apply (blast intro!: r_into_rtrancl)  | 
150  | 
done  | 
|
151  | 
||
| 12823 | 152  | 
theorem rtrancl_converseD:  | 
| 
12937
 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 
wenzelm 
parents: 
12823 
diff
changeset
 | 
153  | 
assumes r: "(x, y) \<in> (r^-1)^*"  | 
| 
 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 
wenzelm 
parents: 
12823 
diff
changeset
 | 
154  | 
shows "(y, x) \<in> r^*"  | 
| 12823 | 155  | 
proof -  | 
156  | 
from r show ?thesis  | 
|
| 17589 | 157  | 
by induct (iprover intro: rtrancl_trans dest!: converseD)+  | 
| 12823 | 158  | 
qed  | 
| 12691 | 159  | 
|
| 12823 | 160  | 
theorem rtrancl_converseI:  | 
| 
12937
 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 
wenzelm 
parents: 
12823 
diff
changeset
 | 
161  | 
assumes r: "(y, x) \<in> r^*"  | 
| 
 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 
wenzelm 
parents: 
12823 
diff
changeset
 | 
162  | 
shows "(x, y) \<in> (r^-1)^*"  | 
| 12823 | 163  | 
proof -  | 
164  | 
from r show ?thesis  | 
|
| 17589 | 165  | 
by induct (iprover intro: rtrancl_trans converseI)+  | 
| 12823 | 166  | 
qed  | 
| 12691 | 167  | 
|
168  | 
lemma rtrancl_converse: "(r^-1)^* = (r^*)^-1"  | 
|
169  | 
by (fast dest!: rtrancl_converseD intro!: rtrancl_converseI)  | 
|
170  | 
||
| 
14404
 
4952c5a92e04
Transitive_Closure: added consumes and case_names attributes
 
nipkow 
parents: 
14398 
diff
changeset
 | 
171  | 
theorem converse_rtrancl_induct[consumes 1]:  | 
| 
12937
 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 
wenzelm 
parents: 
12823 
diff
changeset
 | 
172  | 
assumes major: "(a, b) : r^*"  | 
| 
 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 
wenzelm 
parents: 
12823 
diff
changeset
 | 
173  | 
and cases: "P b" "!!y z. [| (y, z) : r; (z, b) : r^*; P z |] ==> P y"  | 
| 
 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 
wenzelm 
parents: 
12823 
diff
changeset
 | 
174  | 
shows "P a"  | 
| 12691 | 175  | 
proof -  | 
| 12823 | 176  | 
from rtrancl_converseI [OF major]  | 
| 12691 | 177  | 
show ?thesis  | 
| 17589 | 178  | 
by induct (iprover intro: cases dest!: converseD rtrancl_converseD)+  | 
| 12691 | 179  | 
qed  | 
180  | 
||
| 
14404
 
4952c5a92e04
Transitive_Closure: added consumes and case_names attributes
 
nipkow 
parents: 
14398 
diff
changeset
 | 
181  | 
lemmas converse_rtrancl_induct2 =  | 
| 
 
4952c5a92e04
Transitive_Closure: added consumes and case_names attributes
 
nipkow 
parents: 
14398 
diff
changeset
 | 
182  | 
converse_rtrancl_induct[of "(ax,ay)" "(bx,by)", split_format (complete),  | 
| 
 
4952c5a92e04
Transitive_Closure: added consumes and case_names attributes
 
nipkow 
parents: 
14398 
diff
changeset
 | 
183  | 
consumes 1, case_names refl step]  | 
| 12691 | 184  | 
|
185  | 
lemma converse_rtranclE:  | 
|
| 18372 | 186  | 
assumes major: "(x,z):r^*"  | 
187  | 
and cases: "x=z ==> P"  | 
|
188  | 
"!!y. [| (x,y):r; (y,z):r^* |] ==> P"  | 
|
189  | 
shows P  | 
|
190  | 
apply (subgoal_tac "x = z | (EX y. (x,y) : r & (y,z) : r^*)")  | 
|
191  | 
apply (rule_tac [2] major [THEN converse_rtrancl_induct])  | 
|
192  | 
prefer 2 apply iprover  | 
|
193  | 
prefer 2 apply iprover  | 
|
194  | 
apply (erule asm_rl exE disjE conjE cases)+  | 
|
195  | 
done  | 
|
| 12691 | 196  | 
|
197  | 
ML_setup {*
 | 
|
198  | 
  bind_thm ("converse_rtranclE2", split_rule
 | 
|
199  | 
    (read_instantiate [("x","(xa,xb)"), ("z","(za,zb)")] (thm "converse_rtranclE")));
 | 
|
200  | 
*}  | 
|
201  | 
||
202  | 
lemma r_comp_rtrancl_eq: "r O r^* = r^* O r"  | 
|
203  | 
by (blast elim: rtranclE converse_rtranclE  | 
|
204  | 
intro: rtrancl_into_rtrancl converse_rtrancl_into_rtrancl)  | 
|
205  | 
||
| 15551 | 206  | 
lemma rtrancl_unfold: "r^* = Id Un (r O r^*)"  | 
207  | 
by (auto intro: rtrancl_into_rtrancl elim: rtranclE)  | 
|
208  | 
||
| 12691 | 209  | 
|
210  | 
subsection {* Transitive closure *}
 | 
|
| 10331 | 211  | 
|
| 
13704
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
212  | 
lemma trancl_mono: "!!p. p \<in> r^+ ==> r \<subseteq> s ==> p \<in> s^+"  | 
| 
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
213  | 
apply (simp only: split_tupled_all)  | 
| 
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
214  | 
apply (erule trancl.induct)  | 
| 17589 | 215  | 
apply (iprover dest: subsetD)+  | 
| 12691 | 216  | 
done  | 
217  | 
||
| 
13704
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
218  | 
lemma r_into_trancl': "!!p. p : r ==> p : r^+"  | 
| 
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
219  | 
by (simp only: split_tupled_all) (erule r_into_trancl)  | 
| 
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
220  | 
|
| 12691 | 221  | 
text {*
 | 
222  | 
  \medskip Conversions between @{text trancl} and @{text rtrancl}.
 | 
|
223  | 
*}  | 
|
224  | 
||
| 
13704
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
225  | 
lemma trancl_into_rtrancl: "(a, b) \<in> r^+ ==> (a, b) \<in> r^*"  | 
| 17589 | 226  | 
by (erule trancl.induct) iprover+  | 
| 12691 | 227  | 
|
| 
13704
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
228  | 
lemma rtrancl_into_trancl1: assumes r: "(a, b) \<in> r^*"  | 
| 
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
229  | 
shows "!!c. (b, c) \<in> r ==> (a, c) \<in> r^+" using r  | 
| 17589 | 230  | 
by induct iprover+  | 
| 12691 | 231  | 
|
232  | 
lemma rtrancl_into_trancl2: "[| (a,b) : r; (b,c) : r^* |] ==> (a,c) : r^+"  | 
|
233  | 
  -- {* intro rule from @{text r} and @{text rtrancl} *}
 | 
|
| 17589 | 234  | 
apply (erule rtranclE, iprover)  | 
| 12691 | 235  | 
apply (rule rtrancl_trans [THEN rtrancl_into_trancl1])  | 
236  | 
apply (assumption | rule r_into_rtrancl)+  | 
|
237  | 
done  | 
|
238  | 
||
| 
13704
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
239  | 
lemma trancl_induct [consumes 1, induct set: trancl]:  | 
| 
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
240  | 
assumes a: "(a,b) : r^+"  | 
| 
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
241  | 
and cases: "!!y. (a, y) : r ==> P y"  | 
| 
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
242  | 
"!!y z. (a,y) : r^+ ==> (y, z) : r ==> P y ==> P z"  | 
| 
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
243  | 
shows "P b"  | 
| 12691 | 244  | 
  -- {* Nice induction rule for @{text trancl} *}
 | 
245  | 
proof -  | 
|
| 
13704
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
246  | 
from a have "a = a --> P b"  | 
| 17589 | 247  | 
by (induct "%x y. x = a --> P y" a b) (iprover intro: cases)+  | 
248  | 
thus ?thesis by iprover  | 
|
| 12691 | 249  | 
qed  | 
250  | 
||
251  | 
lemma trancl_trans_induct:  | 
|
| 18372 | 252  | 
assumes major: "(x,y) : r^+"  | 
253  | 
and cases: "!!x y. (x,y) : r ==> P x y"  | 
|
254  | 
"!!x y z. [| (x,y) : r^+; P x y; (y,z) : r^+; P y z |] ==> P x z"  | 
|
255  | 
shows "P x y"  | 
|
| 12691 | 256  | 
  -- {* Another induction rule for trancl, incorporating transitivity *}
 | 
| 18372 | 257  | 
by (iprover intro: r_into_trancl major [THEN trancl_induct] cases)  | 
| 12691 | 258  | 
|
| 
13704
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
259  | 
inductive_cases tranclE: "(a, b) : r^+"  | 
| 10980 | 260  | 
|
| 15551 | 261  | 
lemma trancl_unfold: "r^+ = r Un (r O r^+)"  | 
262  | 
by (auto intro: trancl_into_trancl elim: tranclE)  | 
|
263  | 
||
| 12691 | 264  | 
lemma trans_trancl: "trans(r^+)"  | 
265  | 
  -- {* Transitivity of @{term "r^+"} *}
 | 
|
| 
13704
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
266  | 
proof (rule transI)  | 
| 
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
267  | 
fix x y z  | 
| 18372 | 268  | 
assume xy: "(x, y) \<in> r^+"  | 
| 
13704
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
269  | 
assume "(y, z) \<in> r^+"  | 
| 18372 | 270  | 
thus "(x, z) \<in> r^+" by induct (insert xy, iprover)+  | 
| 
13704
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
271  | 
qed  | 
| 12691 | 272  | 
|
273  | 
lemmas trancl_trans = trans_trancl [THEN transD, standard]  | 
|
274  | 
||
| 
13704
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
275  | 
lemma rtrancl_trancl_trancl: assumes r: "(x, y) \<in> r^*"  | 
| 
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
276  | 
shows "!!z. (y, z) \<in> r^+ ==> (x, z) \<in> r^+" using r  | 
| 17589 | 277  | 
by induct (iprover intro: trancl_trans)+  | 
| 12691 | 278  | 
|
279  | 
lemma trancl_into_trancl2: "(a, b) \<in> r ==> (b, c) \<in> r^+ ==> (a, c) \<in> r^+"  | 
|
280  | 
by (erule transD [OF trans_trancl r_into_trancl])  | 
|
281  | 
||
282  | 
lemma trancl_insert:  | 
|
283  | 
  "(insert (y, x) r)^+ = r^+ \<union> {(a, b). (a, y) \<in> r^* \<and> (x, b) \<in> r^*}"
 | 
|
284  | 
  -- {* primitive recursion for @{text trancl} over finite relations *}
 | 
|
285  | 
apply (rule equalityI)  | 
|
286  | 
apply (rule subsetI)  | 
|
287  | 
apply (simp only: split_tupled_all)  | 
|
| 14208 | 288  | 
apply (erule trancl_induct, blast)  | 
| 12691 | 289  | 
apply (blast intro: rtrancl_into_trancl1 trancl_into_rtrancl r_into_trancl trancl_trans)  | 
290  | 
apply (rule subsetI)  | 
|
291  | 
apply (blast intro: trancl_mono rtrancl_mono  | 
|
292  | 
[THEN [2] rev_subsetD] rtrancl_trancl_trancl rtrancl_into_trancl2)  | 
|
293  | 
done  | 
|
294  | 
||
| 
13704
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
295  | 
lemma trancl_converseI: "(x, y) \<in> (r^+)^-1 ==> (x, y) \<in> (r^-1)^+"  | 
| 
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
296  | 
apply (drule converseD)  | 
| 
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
297  | 
apply (erule trancl.induct)  | 
| 17589 | 298  | 
apply (iprover intro: converseI trancl_trans)+  | 
| 12691 | 299  | 
done  | 
300  | 
||
| 
13704
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
301  | 
lemma trancl_converseD: "(x, y) \<in> (r^-1)^+ ==> (x, y) \<in> (r^+)^-1"  | 
| 
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
302  | 
apply (rule converseI)  | 
| 
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
303  | 
apply (erule trancl.induct)  | 
| 17589 | 304  | 
apply (iprover dest: converseD intro: trancl_trans)+  | 
| 
13704
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
305  | 
done  | 
| 12691 | 306  | 
|
| 
13704
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
307  | 
lemma trancl_converse: "(r^-1)^+ = (r^+)^-1"  | 
| 
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
308  | 
by (fastsimp simp add: split_tupled_all  | 
| 
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
309  | 
intro!: trancl_converseI trancl_converseD)  | 
| 12691 | 310  | 
|
311  | 
lemma converse_trancl_induct:  | 
|
| 18372 | 312  | 
assumes major: "(a,b) : r^+"  | 
313  | 
and cases: "!!y. (y,b) : r ==> P(y)"  | 
|
314  | 
"!!y z.[| (y,z) : r; (z,b) : r^+; P(z) |] ==> P(y)"  | 
|
315  | 
shows "P a"  | 
|
316  | 
apply (rule major [THEN converseI, THEN trancl_converseI [THEN trancl_induct]])  | 
|
317  | 
apply (rule cases)  | 
|
318  | 
apply (erule converseD)  | 
|
319  | 
apply (blast intro: prems dest!: trancl_converseD)  | 
|
320  | 
done  | 
|
| 12691 | 321  | 
|
322  | 
lemma tranclD: "(x, y) \<in> R^+ ==> EX z. (x, z) \<in> R \<and> (z, y) \<in> R^*"  | 
|
| 14208 | 323  | 
apply (erule converse_trancl_induct, auto)  | 
| 12691 | 324  | 
apply (blast intro: rtrancl_trans)  | 
325  | 
done  | 
|
326  | 
||
| 13867 | 327  | 
lemma irrefl_tranclI: "r^-1 \<inter> r^* = {} ==> (x, x) \<notin> r^+"
 | 
| 18372 | 328  | 
by (blast elim: tranclE dest: trancl_into_rtrancl)  | 
| 12691 | 329  | 
|
330  | 
lemma irrefl_trancl_rD: "!!X. ALL x. (x, x) \<notin> r^+ ==> (x, y) \<in> r ==> x \<noteq> y"  | 
|
331  | 
by (blast dest: r_into_trancl)  | 
|
332  | 
||
333  | 
lemma trancl_subset_Sigma_aux:  | 
|
334  | 
"(a, b) \<in> r^* ==> r \<subseteq> A \<times> A ==> a = b \<or> a \<in> A"  | 
|
| 18372 | 335  | 
by (induct rule: rtrancl_induct) auto  | 
| 12691 | 336  | 
|
337  | 
lemma trancl_subset_Sigma: "r \<subseteq> A \<times> A ==> r^+ \<subseteq> A \<times> A"  | 
|
| 
13704
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
338  | 
apply (rule subsetI)  | 
| 
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
339  | 
apply (simp only: split_tupled_all)  | 
| 
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
340  | 
apply (erule tranclE)  | 
| 
 
854501b1e957
Transitive closure is now defined inductively as well.
 
berghofe 
parents: 
12937 
diff
changeset
 | 
341  | 
apply (blast dest!: trancl_into_rtrancl trancl_subset_Sigma_aux)+  | 
| 12691 | 342  | 
done  | 
| 
10996
 
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
 
nipkow 
parents: 
10980 
diff
changeset
 | 
343  | 
|
| 11090 | 344  | 
lemma reflcl_trancl [simp]: "(r^+)^= = r^*"  | 
| 11084 | 345  | 
apply safe  | 
| 12691 | 346  | 
apply (erule trancl_into_rtrancl)  | 
| 11084 | 347  | 
apply (blast elim: rtranclE dest: rtrancl_into_trancl1)  | 
348  | 
done  | 
|
| 
10996
 
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
 
nipkow 
parents: 
10980 
diff
changeset
 | 
349  | 
|
| 11090 | 350  | 
lemma trancl_reflcl [simp]: "(r^=)^+ = r^*"  | 
| 11084 | 351  | 
apply safe  | 
| 14208 | 352  | 
apply (drule trancl_into_rtrancl, simp)  | 
353  | 
apply (erule rtranclE, safe)  | 
|
354  | 
apply (rule r_into_trancl, simp)  | 
|
| 11084 | 355  | 
apply (rule rtrancl_into_trancl1)  | 
| 14208 | 356  | 
apply (erule rtrancl_reflcl [THEN equalityD2, THEN subsetD], fast)  | 
| 11084 | 357  | 
done  | 
| 
10996
 
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
 
nipkow 
parents: 
10980 
diff
changeset
 | 
358  | 
|
| 11090 | 359  | 
lemma trancl_empty [simp]: "{}^+ = {}"
 | 
| 11084 | 360  | 
by (auto elim: trancl_induct)  | 
| 
10996
 
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
 
nipkow 
parents: 
10980 
diff
changeset
 | 
361  | 
|
| 11090 | 362  | 
lemma rtrancl_empty [simp]: "{}^* = Id"
 | 
| 11084 | 363  | 
by (rule subst [OF reflcl_trancl]) simp  | 
| 
10996
 
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
 
nipkow 
parents: 
10980 
diff
changeset
 | 
364  | 
|
| 11090 | 365  | 
lemma rtranclD: "(a, b) \<in> R^* ==> a = b \<or> a \<noteq> b \<and> (a, b) \<in> R^+"  | 
| 11084 | 366  | 
by (force simp add: reflcl_trancl [symmetric] simp del: reflcl_trancl)  | 
367  | 
||
| 16514 | 368  | 
lemma rtrancl_eq_or_trancl:  | 
369  | 
"(x,y) \<in> R\<^sup>* = (x=y \<or> x\<noteq>y \<and> (x,y) \<in> R\<^sup>+)"  | 
|
370  | 
by (fast elim: trancl_into_rtrancl dest: rtranclD)  | 
|
| 
10996
 
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
 
nipkow 
parents: 
10980 
diff
changeset
 | 
371  | 
|
| 12691 | 372  | 
text {* @{text Domain} and @{text Range} *}
 | 
| 
10996
 
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
 
nipkow 
parents: 
10980 
diff
changeset
 | 
373  | 
|
| 11090 | 374  | 
lemma Domain_rtrancl [simp]: "Domain (R^*) = UNIV"  | 
| 11084 | 375  | 
by blast  | 
| 
10996
 
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
 
nipkow 
parents: 
10980 
diff
changeset
 | 
376  | 
|
| 11090 | 377  | 
lemma Range_rtrancl [simp]: "Range (R^*) = UNIV"  | 
| 11084 | 378  | 
by blast  | 
| 
10996
 
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
 
nipkow 
parents: 
10980 
diff
changeset
 | 
379  | 
|
| 11090 | 380  | 
lemma rtrancl_Un_subset: "(R^* \<union> S^*) \<subseteq> (R Un S)^*"  | 
| 11084 | 381  | 
by (rule rtrancl_Un_rtrancl [THEN subst]) fast  | 
| 
10996
 
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
 
nipkow 
parents: 
10980 
diff
changeset
 | 
382  | 
|
| 11090 | 383  | 
lemma in_rtrancl_UnI: "x \<in> R^* \<or> x \<in> S^* ==> x \<in> (R \<union> S)^*"  | 
| 11084 | 384  | 
by (blast intro: subsetD [OF rtrancl_Un_subset])  | 
| 
10996
 
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
 
nipkow 
parents: 
10980 
diff
changeset
 | 
385  | 
|
| 11090 | 386  | 
lemma trancl_domain [simp]: "Domain (r^+) = Domain r"  | 
| 11084 | 387  | 
by (unfold Domain_def) (blast dest: tranclD)  | 
| 
10996
 
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
 
nipkow 
parents: 
10980 
diff
changeset
 | 
388  | 
|
| 11090 | 389  | 
lemma trancl_range [simp]: "Range (r^+) = Range r"  | 
| 11084 | 390  | 
by (simp add: Range_def trancl_converse [symmetric])  | 
| 
10996
 
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
 
nipkow 
parents: 
10980 
diff
changeset
 | 
391  | 
|
| 11115 | 392  | 
lemma Not_Domain_rtrancl:  | 
| 12691 | 393  | 
"x ~: Domain R ==> ((x, y) : R^*) = (x = y)"  | 
394  | 
apply auto  | 
|
395  | 
by (erule rev_mp, erule rtrancl_induct, auto)  | 
|
396  | 
||
| 
11327
 
cd2c27a23df1
Transitive closure is now defined via "inductive".
 
berghofe 
parents: 
11115 
diff
changeset
 | 
397  | 
|
| 12691 | 398  | 
text {* More about converse @{text rtrancl} and @{text trancl}, should
 | 
399  | 
be merged with main body. *}  | 
|
| 
12428
 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 
kleing 
parents: 
11327 
diff
changeset
 | 
400  | 
|
| 
14337
 
e13731554e50
undid split_comp_eq[simp] because it leads to nontermination together with split_def!
 
nipkow 
parents: 
14208 
diff
changeset
 | 
401  | 
lemma single_valued_confluent:  | 
| 
 
e13731554e50
undid split_comp_eq[simp] because it leads to nontermination together with split_def!
 
nipkow 
parents: 
14208 
diff
changeset
 | 
402  | 
"\<lbrakk> single_valued r; (x,y) \<in> r^*; (x,z) \<in> r^* \<rbrakk>  | 
| 
 
e13731554e50
undid split_comp_eq[simp] because it leads to nontermination together with split_def!
 
nipkow 
parents: 
14208 
diff
changeset
 | 
403  | 
\<Longrightarrow> (y,z) \<in> r^* \<or> (z,y) \<in> r^*"  | 
| 
 
e13731554e50
undid split_comp_eq[simp] because it leads to nontermination together with split_def!
 
nipkow 
parents: 
14208 
diff
changeset
 | 
404  | 
apply(erule rtrancl_induct)  | 
| 
 
e13731554e50
undid split_comp_eq[simp] because it leads to nontermination together with split_def!
 
nipkow 
parents: 
14208 
diff
changeset
 | 
405  | 
apply simp  | 
| 
 
e13731554e50
undid split_comp_eq[simp] because it leads to nontermination together with split_def!
 
nipkow 
parents: 
14208 
diff
changeset
 | 
406  | 
apply(erule disjE)  | 
| 
 
e13731554e50
undid split_comp_eq[simp] because it leads to nontermination together with split_def!
 
nipkow 
parents: 
14208 
diff
changeset
 | 
407  | 
apply(blast elim:converse_rtranclE dest:single_valuedD)  | 
| 
 
e13731554e50
undid split_comp_eq[simp] because it leads to nontermination together with split_def!
 
nipkow 
parents: 
14208 
diff
changeset
 | 
408  | 
apply(blast intro:rtrancl_trans)  | 
| 
 
e13731554e50
undid split_comp_eq[simp] because it leads to nontermination together with split_def!
 
nipkow 
parents: 
14208 
diff
changeset
 | 
409  | 
done  | 
| 
 
e13731554e50
undid split_comp_eq[simp] because it leads to nontermination together with split_def!
 
nipkow 
parents: 
14208 
diff
changeset
 | 
410  | 
|
| 12691 | 411  | 
lemma r_r_into_trancl: "(a, b) \<in> R ==> (b, c) \<in> R ==> (a, c) \<in> R^+"  | 
| 
12428
 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 
kleing 
parents: 
11327 
diff
changeset
 | 
412  | 
by (fast intro: trancl_trans)  | 
| 
 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 
kleing 
parents: 
11327 
diff
changeset
 | 
413  | 
|
| 
 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 
kleing 
parents: 
11327 
diff
changeset
 | 
414  | 
lemma trancl_into_trancl [rule_format]:  | 
| 12691 | 415  | 
"(a, b) \<in> r\<^sup>+ ==> (b, c) \<in> r --> (a,c) \<in> r\<^sup>+"  | 
416  | 
apply (erule trancl_induct)  | 
|
| 
12428
 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 
kleing 
parents: 
11327 
diff
changeset
 | 
417  | 
apply (fast intro: r_r_into_trancl)  | 
| 
 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 
kleing 
parents: 
11327 
diff
changeset
 | 
418  | 
apply (fast intro: r_r_into_trancl trancl_trans)  | 
| 
 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 
kleing 
parents: 
11327 
diff
changeset
 | 
419  | 
done  | 
| 
 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 
kleing 
parents: 
11327 
diff
changeset
 | 
420  | 
|
| 
 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 
kleing 
parents: 
11327 
diff
changeset
 | 
421  | 
lemma trancl_rtrancl_trancl:  | 
| 12691 | 422  | 
"(a, b) \<in> r\<^sup>+ ==> (b, c) \<in> r\<^sup>* ==> (a, c) \<in> r\<^sup>+"  | 
| 
12428
 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 
kleing 
parents: 
11327 
diff
changeset
 | 
423  | 
apply (drule tranclD)  | 
| 
 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 
kleing 
parents: 
11327 
diff
changeset
 | 
424  | 
apply (erule exE, erule conjE)  | 
| 
 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 
kleing 
parents: 
11327 
diff
changeset
 | 
425  | 
apply (drule rtrancl_trans, assumption)  | 
| 14208 | 426  | 
apply (drule rtrancl_into_trancl2, assumption, assumption)  | 
| 
12428
 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 
kleing 
parents: 
11327 
diff
changeset
 | 
427  | 
done  | 
| 
 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 
kleing 
parents: 
11327 
diff
changeset
 | 
428  | 
|
| 12691 | 429  | 
lemmas transitive_closure_trans [trans] =  | 
430  | 
r_r_into_trancl trancl_trans rtrancl_trans  | 
|
431  | 
trancl_into_trancl trancl_into_trancl2  | 
|
432  | 
rtrancl_into_rtrancl converse_rtrancl_into_rtrancl  | 
|
433  | 
rtrancl_trancl_trancl trancl_rtrancl_trancl  | 
|
| 
12428
 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 
kleing 
parents: 
11327 
diff
changeset
 | 
434  | 
|
| 
 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 
kleing 
parents: 
11327 
diff
changeset
 | 
435  | 
declare trancl_into_rtrancl [elim]  | 
| 
11327
 
cd2c27a23df1
Transitive closure is now defined via "inductive".
 
berghofe 
parents: 
11115 
diff
changeset
 | 
436  | 
|
| 
 
cd2c27a23df1
Transitive closure is now defined via "inductive".
 
berghofe 
parents: 
11115 
diff
changeset
 | 
437  | 
declare rtranclE [cases set: rtrancl]  | 
| 
 
cd2c27a23df1
Transitive closure is now defined via "inductive".
 
berghofe 
parents: 
11115 
diff
changeset
 | 
438  | 
declare tranclE [cases set: trancl]  | 
| 
 
cd2c27a23df1
Transitive closure is now defined via "inductive".
 
berghofe 
parents: 
11115 
diff
changeset
 | 
439  | 
|
| 15551 | 440  | 
|
441  | 
||
442  | 
||
443  | 
||
| 
15076
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
444  | 
subsection {* Setup of transitivity reasoner *}
 | 
| 
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
445  | 
|
| 
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
446  | 
use "../Provers/trancl.ML";  | 
| 
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
447  | 
|
| 
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
448  | 
ML_setup {*
 | 
| 
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
449  | 
|
| 
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
450  | 
structure Trancl_Tac = Trancl_Tac_Fun (  | 
| 
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
451  | 
struct  | 
| 
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
452  | 
val r_into_trancl = thm "r_into_trancl";  | 
| 
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
453  | 
val trancl_trans = thm "trancl_trans";  | 
| 
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
454  | 
val rtrancl_refl = thm "rtrancl_refl";  | 
| 
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
455  | 
val r_into_rtrancl = thm "r_into_rtrancl";  | 
| 
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
456  | 
val trancl_into_rtrancl = thm "trancl_into_rtrancl";  | 
| 
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
457  | 
val rtrancl_trancl_trancl = thm "rtrancl_trancl_trancl";  | 
| 
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
458  | 
val trancl_rtrancl_trancl = thm "trancl_rtrancl_trancl";  | 
| 
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
459  | 
val rtrancl_trans = thm "rtrancl_trans";  | 
| 15096 | 460  | 
|
| 18372 | 461  | 
fun decomp (Trueprop $ t) =  | 
462  | 
    let fun dec (Const ("op :", _) $ (Const ("Pair", _) $ a $ b) $ rel ) =
 | 
|
463  | 
        let fun decr (Const ("Transitive_Closure.rtrancl", _ ) $ r) = (r,"r*")
 | 
|
464  | 
              | decr (Const ("Transitive_Closure.trancl", _ ) $ r)  = (r,"r+")
 | 
|
465  | 
| decr r = (r,"r");  | 
|
466  | 
val (rel,r) = decr rel;  | 
|
467  | 
in SOME (a,b,rel,r) end  | 
|
468  | 
| dec _ = NONE  | 
|
| 
15076
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
469  | 
in dec t end;  | 
| 18372 | 470  | 
|
| 
15076
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
471  | 
end); (* struct *)  | 
| 
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
472  | 
|
| 17876 | 473  | 
change_simpset (fn ss => ss  | 
474  | 
addSolver (mk_solver "Trancl" (fn _ => Trancl_Tac.trancl_tac))  | 
|
475  | 
addSolver (mk_solver "Rtrancl" (fn _ => Trancl_Tac.rtrancl_tac)));  | 
|
| 
15076
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
476  | 
|
| 
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
477  | 
*}  | 
| 
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
478  | 
|
| 
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
479  | 
(* Optional methods  | 
| 
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
480  | 
|
| 
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
481  | 
method_setup trancl =  | 
| 
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
482  | 
  {* Method.no_args (Method.SIMPLE_METHOD' HEADGOAL (trancl_tac)) *}
 | 
| 18372 | 483  | 
  {* simple transitivity reasoner *}
 | 
| 
15076
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
484  | 
method_setup rtrancl =  | 
| 
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
485  | 
  {* Method.no_args (Method.SIMPLE_METHOD' HEADGOAL (rtrancl_tac)) *}
 | 
| 
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
486  | 
  {* simple transitivity reasoner *}
 | 
| 
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
487  | 
|
| 
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
488  | 
*)  | 
| 
 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 
ballarin 
parents: 
14565 
diff
changeset
 | 
489  | 
|
| 10213 | 490  | 
end  |