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