]> matita.cs.unibo.it Git - helm.git/blob - matita/matita/lib/turing/universal/tuples.ma
Progress
[helm.git] / matita / matita / lib / turing / universal / tuples.ma
1 (*
2     ||M||  This file is part of HELM, an Hypertextual, Electronic   
3     ||A||  Library of Mathematics, developed at the Computer Science 
4     ||T||  Department of the University of Bologna, Italy.           
5     ||I||                                                            
6     ||T||  
7     ||A||  
8     \   /  This file is distributed under the terms of the       
9      \ /   GNU General Public License Version 2   
10       V_____________________________________________________________*)
11
12
13 (* COMPARE BIT
14
15 *)
16
17 include "turing/universal/marks.ma".
18
19 definition STape ≝ FinProd … FSUnialpha FinBool.
20
21 definition only_bits ≝ λl.
22   ∀c.memb STape c l = true → is_bit (\fst c) = true.
23   
24 definition no_grids ≝ λl.
25   ∀c.memb STape c l = true → is_grid (\fst c) = false.
26
27 definition no_bars ≝ λl.
28   ∀c.memb STape c l = true → is_bar (\fst c) = false.
29
30 definition no_marks ≝ λl.
31   ∀c.memb STape c l = true → is_marked ? c = false.
32
33 lemma bit_not_grid: ∀d. is_bit d = true → is_grid d = false.
34 * // normalize #H destruct
35 qed.
36
37 lemma bit_not_bar: ∀d. is_bit d = true → is_bar d = false.
38 * // normalize #H destruct
39 qed.
40
41 (* by definition, a tuple is not marked *)
42 definition tuple_TM : nat → list STape → Prop ≝ 
43  λn,t.∃qin,qout,mv.
44  no_marks t ∧
45  only_bits qin ∧ only_bits qout ∧ only_bits mv ∧
46  |qin| = n ∧ |qout| = n (* ∧ |mv| = ? *) ∧ 
47  t = qin@〈comma,false〉::qout@〈comma,false〉::mv.
48  
49 inductive table_TM : nat → list STape → Prop ≝ 
50 | ttm_nil  : ∀n.table_TM n [] 
51 | ttm_cons : ∀n,t1,T.tuple_TM n t1 → table_TM n T → table_TM n (t1@〈bar,false〉::T).
52
53 lemma no_grids_in_table: ∀n.∀l.table_TM n l → no_grids l.
54 #n #l #t elim t   
55   [normalize #n #x #H destruct
56   |#m #t1 #t2 * #qin * #qout * #mv * * * * * * 
57    #Hmarks #Hqin #Hqout #Hmv  #_ #_ #Heq #Ht2 #Hind
58    whd >Heq #x #membx 
59    cases (memb_append … membx) -membx #membx
60     [cases (memb_append … membx) -membx #membx
61       [@bit_not_grid @Hqin // 
62       |cases (orb_true_l … membx) -membx #membx
63         [>(\P membx) //
64         |cases (memb_append … membx) -membx #membx
65           [@bit_not_grid @Hqout //
66           |cases (orb_true_l … membx) -membx #membx
67             [>(\P membx) //
68             |@bit_not_grid @Hmv //
69             ]
70           ]
71         ]
72       ]
73     |cases (orb_true_l … membx) -membx #membx
74       [>(\P membx) //
75       |@Hind //
76       ]
77     ]
78   ]
79 qed.
80
81 lemma no_marks_in_table: ∀n.∀l.table_TM n l → no_marks l.
82 #n #l #t elim t   
83   [normalize #n #x #H destruct
84   |#m #t1 #t2 * #qin * #qout * #mv * * * * * * 
85    #Hmarks #_ #_ #_ #_ #_ #_ #Ht2 #Hind
86    #x #Hx cases (memb_append … Hx) -Hx #Hx
87     [@Hmarks //
88     |cases (orb_true_l … Hx) -Hx #Hx
89       [>(\P Hx) //
90       |@Hind //
91       ]
92     ]
93   ]
94 qed.      
95           
96 axiom last_of_table: ∀n,l,b.¬ table_TM n (l@[〈bar,b〉]).
97    
98 (*
99 l0 x* a l1 x0* a0 l2 ------> l0 x a* l1 x0 a0* l2
100    ^                               ^
101
102 if current (* x *) = #
103    then 
104    else if x = 0
105       then move_right; ----
106            adv_to_mark_r;
107            if current (* x0 *) = 0
108               then advance_mark ----
109                    adv_to_mark_l;
110                    advance_mark
111               else STOP
112       else x = 1 (* analogo *)
113
114 *)
115
116
117 (*
118    MARK NEXT TUPLE machine
119    (partially axiomatized)
120    
121    marks the first character after the first bar (rightwards)
122  *)
123  
124 definition bar_or_grid ≝ λc:STape.is_bar (\fst c) ∨ is_grid (\fst c).
125
126 definition mark_next_tuple ≝ 
127   seq ? (adv_to_mark_r ? bar_or_grid)
128      (ifTM ? (test_char ? (λc:STape.is_bar (\fst c)))
129        (move_right_and_mark ?) (nop ?) 1).
130
131 definition R_mark_next_tuple ≝ 
132   λt1,t2.
133     ∀ls,c,rs1,rs2.
134     (* c non può essere un separatore ... speriamo *)
135     t1 = midtape STape ls c (rs1@〈grid,false〉::rs2) → 
136     no_marks rs1 → no_grids rs1 → bar_or_grid c = false → 
137     (∃rs3,rs4,d,b.rs1 = rs3 @ 〈bar,false〉 :: rs4 ∧
138       no_bars rs3 ∧
139       Some ? 〈d,b〉 = option_hd ? (rs4@〈grid,false〉::rs2) ∧
140       t2 = midtape STape (〈bar,false〉::reverse ? rs3@c::ls) 〈d,true〉 (tail ? (rs4@〈grid,false〉::rs2)))
141     ∨
142     (no_bars rs1 ∧ t2 = midtape ? (reverse ? rs1@c::ls) 〈grid,false〉 rs2).
143      
144 axiom tech_split :
145   ∀A:DeqSet.∀f,l.
146    (∀x.memb A x l = true → f x = false) ∨
147    (∃l1,c,l2.f c = true ∧ l = l1@c::l2 ∧ ∀x.memb ? x l1 = true → f x = false).
148 (*#A #f #l elim l
149 [ % #x normalize #Hfalse *)
150      
151 theorem sem_mark_next_tuple :
152   Realize ? mark_next_tuple R_mark_next_tuple.
153 #intape 
154 lapply (sem_seq ? (adv_to_mark_r ? bar_or_grid)
155          (ifTM ? (test_char ? (λc:STape.is_bar (\fst c))) (move_right_and_mark ?) (nop ?) 1) ????)
156 [@sem_if [5: // |6: @sem_move_right_and_mark |7: // |*:skip]
157 | //
158 |||#Hif cases (Hif intape) -Hif
159    #j * #outc * #Hloop * #ta * #Hleft #Hright
160    @(ex_intro ?? j) @ex_intro [|% [@Hloop] ]
161    -Hloop
162    #ls #c #rs1 #rs2 #Hrs #Hrs1 #Hrs1' #Hc
163    cases (Hleft … Hrs)
164    [ * #Hfalse >Hfalse in Hc; #Htf destruct (Htf)
165    | * #_ #Hta cases (tech_split STape (λc.is_bar (\fst c)) rs1)
166      [ #H1 lapply (Hta rs1 〈grid,false〉 rs2 (refl ??) ? ?)
167        [ * #x #b #Hx whd in ⊢ (??%?); >(Hrs1' … Hx) >(H1 … Hx) %
168        | %
169        | -Hta #Hta cases Hright
170          [ * #tb * whd in ⊢ (%→?); #Hcurrent
171            @False_ind cases (Hcurrent 〈grid,false〉 ?)
172            [ normalize #Hfalse destruct (Hfalse)
173            | >Hta % ]
174          | * #tb * whd in ⊢ (%→?); #Hcurrent
175            cases (Hcurrent 〈grid,false〉 ?)
176            [  #_ #Htb whd in ⊢ (%→?); #Houtc
177              %2 %
178              [ @H1
179              | >Houtc >Htb >Hta % ]
180            | >Hta % ]
181          ]
182        ]
183     | * #rs3 * #c0 * #rs4 * * #Hc0 #Hsplit #Hrs3
184       % @(ex_intro ?? rs3) @(ex_intro ?? rs4)
185      lapply (Hta rs3 c0 (rs4@〈grid,false〉::rs2) ???)
186      [ #x #Hrs3' whd in ⊢ (??%?); >Hsplit in Hrs1;>Hsplit in Hrs3;
187        #Hrs3 #Hrs1 >(Hrs1 …) [| @memb_append_l1 @Hrs3'|]
188        >(Hrs3 … Hrs3') @Hrs1' >Hsplit @memb_append_l1 //
189      | whd in ⊢ (??%?); >Hc0 %
190      | >Hsplit >associative_append % ] -Hta #Hta
191        cases Hright
192        [ * #tb * whd in ⊢ (%→?); #Hta'
193          whd in ⊢ (%→?); #Htb
194          cases (Hta' c0 ?)
195          [ #_ #Htb' >Htb' in Htb; #Htb
196            generalize in match Hsplit; -Hsplit
197            cases rs4 in Hta;
198            [ #Hta #Hsplit >(Htb … Hta)
199              >(?:c0 = 〈bar,false〉)
200              [ @(ex_intro ?? grid) @(ex_intro ?? false)
201                % [ % [ % 
202                [(* Hsplit *) @daemon |(*Hrs3*) @daemon ] | % ] | % ] 
203                | (* Hc0 *) @daemon ]
204            | #r5 #rs5 >(eq_pair_fst_snd … r5)
205              #Hta #Hsplit >(Htb … Hta)
206              >(?:c0 = 〈bar,false〉)
207              [ @(ex_intro ?? (\fst r5)) @(ex_intro ?? (\snd r5))
208                % [ % [ % [ (* Hc0, Hsplit *) @daemon | (*Hrs3*) @daemon ] | % ]
209                      | % ] | (* Hc0 *) @daemon ] ] | >Hta % ]
210              | * #tb * whd in ⊢ (%→?); #Hta'
211                whd in ⊢ (%→?); #Htb
212                cases (Hta' c0 ?)
213                [ #Hfalse @False_ind >Hfalse in Hc0;
214                  #Hc0 destruct (Hc0)
215                | >Hta % ]
216 ]]]]
217 qed.
218
219 definition init_current ≝ 
220   seq ? (adv_to_mark_l ? (is_marked ?))
221     (seq ? (clear_mark ?)
222        (seq ? (adv_to_mark_l ? (λc:STape.is_grid (\fst c)))
223           (seq ? (move_r ?) (mark ?)))).
224           
225 definition R_init_current ≝ λt1,t2.
226   ∀l1,c,l2,b,l3,c1,rs,c0,b0. no_marks l1 → no_grids l2 → is_grid c = false → 
227   Some ? 〈c0,b0〉 = option_hd ? (reverse ? (〈c,true〉::l2)) → 
228   t1 = midtape STape (l1@〈c,true〉::l2@〈grid,b〉::l3) 〈c1,false〉 rs → 
229   t2 = midtape STape (〈grid,b〉::l3) 〈c0,true〉
230         ((tail ? (reverse ? (l1@〈c,false〉::l2))@〈c1,false〉::rs)).
231
232 lemma sem_init_current : Realize ? init_current R_init_current.
233 #intape 
234 cases (sem_seq ????? (sem_adv_to_mark_l ? (is_marked ?))
235         (sem_seq ????? (sem_clear_mark ?)
236            (sem_seq ????? (sem_adv_to_mark_l ? (λc:STape.is_grid (\fst c)))
237              (sem_seq ????? (sem_move_r ?) (sem_mark ?)))) intape)
238 #k * #outc * #Hloop #HR 
239 @(ex_intro ?? k) @(ex_intro ?? outc) % [@Hloop]
240 cases HR -HR #ta * whd in ⊢ (%→?); #Hta 
241 * #tb * whd in ⊢ (%→?); #Htb 
242 * #tc * whd in ⊢ (%→?); #Htc 
243 * #td * whd in ⊢ (%→%→?); #Htd #Houtc
244 #l1 #c #l2 #b #l3 #c1 #rs #c0 #b0 #Hl1 #Hl2 #Hc #Hc0 #Hintape
245 cases (Hta … Hintape) [ * #Hfalse normalize in Hfalse; destruct (Hfalse) ]
246 -Hta * #_ #Hta lapply (Hta l1 〈c,true〉 ? (refl ??) ??) [@Hl1|%]
247 -Hta #Hta lapply (Htb … Hta) -Htb #Htb cases (Htc … Htb) [ >Hc -Hc * #Hc destruct (Hc) ] 
248 -Htc * #_ #Htc lapply (Htc … (refl ??) (refl ??) ?) [@Hl2]
249 -Htc #Htc lapply (Htd … Htc) -Htd
250 >reverse_append >reverse_cons 
251 >reverse_cons in Hc0; cases (reverse … l2)
252 [ normalize in ⊢ (%→?); #Hc0 destruct (Hc0)
253   #Htd >(Houtc … Htd) %
254 | * #c2 #b2 #tl2 normalize in ⊢ (%→?);
255   #Hc0 #Htd >(Houtc … Htd)
256   whd in ⊢ (???%); destruct (Hc0)
257   >associative_append >associative_append %
258 ]
259 qed.
260
261 definition match_tuple_step ≝ 
262   ifTM ? (test_char ? (λc:STape.¬ is_grid (\fst c))) 
263    (single_finalTM ? 
264      (seq ? compare
265       (ifTM ? (test_char ? (λc:STape.is_grid (\fst c)))
266         (nop ?)
267         (seq ? mark_next_tuple 
268            (ifTM ? (test_char ? (λc:STape.is_grid (\fst c)))
269              (mark ?) (seq ? (move_l ?) init_current) tc_true)) tc_true)))
270     (nop ?) tc_true.
271
272 definition R_match_tuple_step_true ≝ λt1,t2.
273   ∀ls,c,l1,l2,c1,l3,l4,rs,n.
274   is_bit c = true → only_bits l1 → no_marks l1 (* → no_grids l2 *) → is_bit c1 = true →
275   only_bits l3 → n = |l1| → |l1| = |l3| →
276   table_TM (S n) (l2@〈bar,false〉::〈c1,false〉::l3@〈comma,false〉::l4) → 
277   t1 = midtape STape (〈grid,false〉::ls) 〈c,true〉 
278          (l1@〈grid,false〉::l2@〈bar,false〉::〈c1,true〉::l3@〈comma,false〉::l4@〈grid,false〉::rs) → 
279   (* facciamo match *)
280   (〈c,false〉::l1 = 〈c1,false〉::l3 ∧
281   t2 = midtape ? (reverse ? l1@〈c,false〉::〈grid,false〉::ls) 〈grid,false〉
282         (l2@〈bar,false〉::〈c1,false〉::l3@〈comma,true〉::l4@〈grid,false〉::rs))
283   ∨
284   (* non facciamo match e marchiamo la prossima tupla *)
285   ((〈c,false〉::l1 ≠ 〈c1,false〉::l3 ∧
286    ∃c2,l5,l6.l4 = l5@〈bar,false〉::〈c2,false〉::l6 ∧
287    (* condizioni su l5 l6 l7 *)
288    t2 = midtape STape (〈grid,false〉::ls) 〈c,true〉 
289          (l1@〈grid,false〉::l2@〈bar,false〉::〈c1,false〉::l3@〈comma,false〉::
290           l5@〈bar,false〉::〈c2,true〉::l6@〈grid,false〉::rs))
291   ∨  
292   (* non facciamo match e non c'è una prossima tupla:
293      non specifichiamo condizioni sul nastro di output, perché
294      non eseguiremo altre operazioni, quindi il suo formato non ci interessa *)
295   (〈c,false〉::l1 ≠ 〈c1,false〉::l3 ∧ no_bars l4 ∧ current ? t2 = Some ? 〈grid,true〉)).  
296   
297 definition R_match_tuple_step_false ≝ λt1,t2.
298   ∀ls,c,rs.t1 = midtape STape ls c rs → is_grid (\fst c) = true ∧ t2 = t1.
299   
300 include alias "basics/logic.ma". 
301
302 (*
303 lemma eq_f4: ∀A1,A2,A3,A4,B.∀f:A1 → A2 →A3 →A4 →B.
304   ∀x1,x2,x3,x4,y1,y2,y3,y4. x1 = y1 → x2 = y2 →x3=y3 →x4 = y4 →   
305     f x1 x2 x3 x4 = f y1 y2 y3 y4.
306 //
307 qed-. *)
308
309 lemma some_option_hd: ∀A.∀l:list A.∀a.∃b.
310   Some ? b = option_hd ? (l@[a]) .
311 #A #l #a cases l normalize /2/
312 qed.
313
314 axiom tech_split2 : ∀A,l1,l2,l3,l4,x. 
315   memb A x l1 = false → memb ? x l3 = false → 
316   l1@x::l2 = l3@x::l4 → l1 = l3 ∧ l2 = l4.
317   
318 axiom injective_append : ∀A,l.injective … (λx.append A x l).
319
320 lemma sem_match_tuple_step: 
321     accRealize ? match_tuple_step (inr … (inl … (inr … 0))) 
322     R_match_tuple_step_true R_match_tuple_step_false.
323 @(acc_sem_if_app … (sem_test_char ? (λc:STape.¬ is_grid (\fst c))) …
324   (sem_seq … sem_compare
325     (sem_if … (sem_test_char ? (λc:STape.is_grid (\fst c)))
326       (sem_nop …)
327         (sem_seq … sem_mark_next_tuple 
328            (sem_if … (sem_test_char ? (λc:STape.is_grid (\fst c)))
329              (sem_mark ?) (sem_seq … (sem_move_l …) (sem_init_current …))))))
330   (sem_nop ?) …)
331 [(* is_grid: termination case *)
332  2:#t1 #t2 #t3 whd in ⊢ (%→?); #H #H1 whd #ls #c #rs #Ht1
333   cases (H c ?) [2: >Ht1 %] #Hgrid #Heq %
334     [@injective_notb @Hgrid | <Heq @H1]
335 |#tapea #tapeout #tapeb whd in ⊢ (%→?); #Htapea
336  * #tapec * #Hcompare #Hor 
337  #ls #c #l1 #l2 #c1 #l3 #l4 #rs #n #Hc #Hl1bars #Hl1marks #Hc1 #Hl3 #eqn
338  #eqlen #Htable #Htapea1 cases (Htapea 〈c,true〉 ?) >Htapea1 [2:%]
339  #notgridc -Htapea -Htapea1 -tapea #Htapeb  
340  cases (Hcompare … Htapeb) -Hcompare -Htapeb * #_ #_ #Hcompare 
341  cases (Hcompare c c1 l1 l3 (l2@[〈bar,false〉]) (l4@〈grid,false〉::rs) eqlen Hl1bars Hl3 Hl1marks … (refl …) Hc ?)  
342  -Hcompare 
343    [* #Htemp destruct (Htemp) #Htapec %1 % [%]
344     >Htapec in Hor; -Htapec *
345      [2: * #t3 * whd in ⊢ (%→?); #H @False_ind
346       cases (H … (refl …)) whd in ⊢ ((??%?)→?); #H destruct (H)
347      |* #taped * whd in ⊢ (%→?); #Htaped cases (Htaped ? (refl …)) -Htaped *
348       #Htaped whd in ⊢ (%→?); #Htapeout >Htapeout >Htaped >associative_append
349       %
350      ]
351    |* #la * #c' * #d' * #lb * #lc * * * #H1 #H2 #H3 #Htapec 
352     cut (〈c,false〉::l1 ≠ 〈c1,false〉::l3) 
353       [>H2 >H3 elim la
354         [@(not_to_not …H1) normalize #H destruct % 
355         |#x #tl @not_to_not normalize #H destruct // 
356         ]
357       ] #Hnoteq %2
358     cut (is_bit d' = true) 
359       [cases la in H3;
360         [normalize in ⊢ (%→?); #H destruct //
361         |#x #tl #H @(Hl3 〈d',false〉)
362          normalize in H; destruct @memb_append_l2 @memb_hd
363         ] 
364       ] #Hd'
365     >Htapec in Hor; -Htapec *
366      [* #taped * whd in ⊢ (%→?); #H @False_ind
367       cases (H … (refl …)) >(bit_not_grid ? Hd') #Htemp destruct (Htemp)
368      |* #taped * whd in ⊢ (%→?); #H cases (H … (refl …)) -H #_
369       #Htaped * #tapee * whd in ⊢ (%→?); #Htapee  
370       <(associative_append ? lc (〈comma,false〉::l4)) in Htaped; #Htaped
371       cases (Htapee … Htaped ???) -Htaped -Htapee 
372        [* #rs3 * * (* we proceed by cases on rs4 *) 
373          [(* rs4 is empty : the case is absurd since the tape
374             cannot end with a bar *)
375           * #d * #b * * * #Heq1 @False_ind 
376           cut (∀A,l1,l2.∀a:A. a::l1@l2=(a::l1)@l2) [//] #Hcut 
377           >Hcut in Htable; >H3 >associative_append
378           normalize >Heq1 >Hcut <associative_append >Hcut 
379           <associative_append #Htable @(absurd … Htable) 
380           @last_of_table    
381          |(* rs4 not empty *)
382           * #d2 #b2 #rs3' * #d  * #b * * * #Heq1 #Hnobars
383           cut (is_grid d2 = false) 
384           [@(no_grids_in_table … Htable … 〈d2,b2〉)
385            @daemon (* no grids in table *)] #Hd2
386           whd in ⊢ ((???%)→?); #Htemp destruct (Htemp) #Htapee >Htapee -Htapee *
387            [(* we know current is not grid *)
388             * #tapef * whd in ⊢ (%→?); #Htapef 
389             cases (Htapef … (refl …)) >Hd2 #Htemp destruct (Htemp) 
390            |* #tapef * whd in ⊢ (%→?); #Htapef 
391             cases (Htapef … (refl …)) #_ -Htapef #Htapef
392             * #tapeg >Htapef -Htapef * 
393             (* move_l *)
394             whd in ⊢ (%→?); 
395             #H lapply (H … (refl …)) whd in ⊢ (???%→?); -H  #Htapeg
396             >Htapeg -Htapeg
397             (* init_current *)
398              whd in ⊢ (%→?); #Htapeout
399             %1 cases (some_option_hd ? (reverse ? (reverse ? la)) 〈c',true〉)
400             * #c00 #b00 #Hoption
401              (* cut 
402             ((reverse ? rs3 @〈d',false〉::reverse ? la@reverse ? (l2@[〈bar,false〉])@(〈grid,false〉::reverse ? lb))
403              = *) 
404             lapply 
405              (Htapeout (reverse ? rs3 @〈d',false〉::reverse ? la@reverse ? (l2@[〈bar,false〉])@(〈grid,false〉::reverse ? lb))
406              c' (reverse ? la) false ls bar (〈d2,true〉::rs3'@〈grid,false〉::rs) c00 b00 ?????) -Htapeout
407               [whd in ⊢ (??(??%??)?); @eq_f3 [2:%|3: %]
408                >associative_append 
409                generalize in match (〈c',true〉::reverse ? la@〈grid,false〉::ls); #l
410                whd in ⊢ (???(???%)); >associative_append >associative_append % 
411               |>reverse_cons @Hoption
412               |cases la in H2; 
413                 [normalize in ⊢ (%→?); #Htemp destruct (Htemp) 
414                  @injective_notb @notgridc
415                 |#x #tl normalize in ⊢ (%→?); #Htemp destruct (Htemp)
416                  @bit_not_grid @(Hl1bars 〈c',false〉) @memb_append_l2 @memb_hd
417                 ]
418               |cut (only_bits (la@(〈c',false〉::lb)))
419                 [<H2 whd #c0 #Hmemb cases (orb_true_l … Hmemb)
420                   [#eqc0 >(\P eqc0) @Hc |@Hl1bars]
421                 |#Hl1' #x #Hx @bit_not_grid @Hl1'
422                  @memb_append_l1 @daemon
423                 ]
424               |@daemon
425               |>reverse_append >reverse_cons >reverse_reverse
426                >reverse_append >reverse_reverse
427                >reverse_cons >reverse_append >reverse_reverse
428                >reverse_append >reverse_cons >reverse_reverse
429                >reverse_reverse
430                #Htapeout % [@Hnoteq]
431                @(ex_intro … d2)
432                cut (∃rs32.rs3 = lc@〈comma,false〉::rs32) 
433                [ (*cases (tech_split STape (λc.c == 〈bar,false〉) l4)
434                  [
435                  | * #l41 * * #cbar #bfalse * #l42 * * #Hbar #Hl4 #Hl41
436                    @(ex_intro ?? l41) >Hl4 in Heq1; #Heq1
437                
438                cut (sublist … lc l3)
439                  [ #x #Hx cases la in H3;
440                    [ normalize #H3 destruct (H3) @Hx
441                    | #p #la' normalize #Hla' destruct (Hla')
442                      @memb_append_l2 @memb_cons @Hx ] ] #Hsublist*)
443                @daemon]
444                * #rs32 #Hrs3
445                (* cut 
446                (〈c1,false〉::l3@〈comma,false〉::l4= la@〈d',false〉::rs3@〈bar,false〉::〈d2,b2〉::rs3')
447                [@daemon] #Hcut *)
448                cut (l4=rs32@〈bar,false〉::〈d2,b2〉::rs3')
449                [ >Hrs3 in Heq1; @daemon ] #Hl4
450                @(ex_intro … rs32) @(ex_intro … rs3') %
451                  [(* by showing b2 = false: @Hl4 *) @daemon
452                  |>Htapeout @eq_f2
453                    [@daemon
454                    |(*>Hrs3 *)>append_cons
455                     > (?:l1@〈grid,false〉::l2@〈bar,false〉::〈c1,false〉::l3@〈comma,false〉::rs32@〈bar,false〉::〈d2,true〉::rs3'@〈grid,false〉::rs
456                         = (l1@〈grid,false〉::l2@〈bar,false〉::〈c1,false〉::l3@〈comma,false〉::rs32@[〈bar,false〉])@〈d2,true〉::rs3'@〈grid,false〉::rs)
457                     [|>associative_append normalize 
458                       >associative_append normalize
459                       >associative_append normalize
460                       >associative_append normalize
461                        % ]
462                     @eq_f2 [|%]
463                     @(injective_append … (〈d2,b2〉::rs3'))
464                     >(?:(la@[〈c',false〉])@((((lb@[〈grid,false〉])@l2@[〈bar,false〉])@la)@[〈d',false〉])@rs3
465                        =((la@〈c',false〉::lb)@([〈grid,false〉]@l2@[〈bar,false〉]@la@[〈d',false〉]@rs3)))
466                     [|>associative_append >associative_append 
467                       >associative_append >associative_append >associative_append
468                       >associative_append >associative_append % ]
469                     <H2 normalize (* <Hrs3 *)
470                     >associative_append >associative_append >associative_append
471                     @eq_f normalize @eq_f >associative_append
472                     >associative_append @eq_f normalize @eq_f
473                     >(append_cons ? 〈d',false〉) >associative_append
474                     <Heq1 >Hl4 <associative_append <append_cons
475                     <H3
476                     >associative_append normalize
477                     >associative_append normalize %
478                    ]
479                  ]
480               ]
481            ]
482          ]
483        |* #Hnobars #Htapee >Htapee -Htapee *
484          [whd in ⊢ (%→?); * #tapef * whd in ⊢ (%→?); #Htapef
485           cases (Htapef … (refl …)) -Htapef #_ #Htapef >Htapef -Htapef
486           whd in ⊢ (%→?); #Htapeout %2
487           >(Htapeout … (refl …)) %
488            [ % 
489              [ @Hnoteq 
490              | whd #x #Hx @Hnobars @memb_append_l2 @memb_cons //
491              ]
492            | %
493            ] 
494          |whd in ⊢ (%→?); * #tapef * whd in ⊢ (%→?); #Htapef
495           cases (Htapef … (refl …)) -Htapef 
496           whd in ⊢ ((??%?)→?); #Htemp destruct (Htemp) 
497          ]
498        |(* no marks in table *)
499         #x #membx @(no_marks_in_table … Htable) 
500         @memb_append_l2 @memb_cons 
501         cut (∀A,l1,l2.∀a:A. a::l1@l2=(a::l1)@l2) [//] #Hcut >Hcut
502         >H3 >associative_append @memb_append_l2 @memb_cons @membx
503        |(* no grids in table *)
504         #x #membx @(no_grids_in_table … Htable) 
505         @memb_append_l2 @memb_cons 
506         cut (∀A,l1,l2.∀a:A. a::l1@l2=(a::l1)@l2) [//] #Hcut >Hcut
507         >H3 >associative_append @memb_append_l2 @memb_cons @membx
508        |whd in ⊢ (??%?); >(bit_not_grid … Hd') >(bit_not_bar … Hd') %
509        ]
510      ]
511    |#x #membx @(no_marks_in_table … Htable) 
512     @memb_append_l2 @memb_cons @memb_cons @memb_append_l1 @membx 
513    |#x #membx @(no_marks_in_table … Htable) 
514     cases (memb_append … membx) -membx #membx
515      [@memb_append_l1 @membx | @memb_append_l2 >(memb_single … membx) @memb_hd]
516    |>associative_append %
517    ]
518  ]
519 qed.
520
521
522 (* 
523   MATCH TUPLE
524
525   scrolls through the tuples in the transition table until one matching the
526   current configuration is found
527 *)
528
529 definition match_tuple ≝  whileTM ? match_tuple_step (inr … (inl … (inr … 0))).
530
531 definition R_match_tuple ≝ λt1,t2.
532   ∀ls,c,l1,c1,l2,rs,n.
533   is_bit c = true → only_bits l1 → is_bit c1 = true → n = |l1| →
534   table_TM (S n) (〈c1,true〉::l2) → 
535   t1 = midtape STape (〈grid,false〉::ls) 〈c,true〉 
536          (l1@〈grid,false〉::〈c1,true〉::l2@〈grid,false〉::rs) → 
537   (* facciamo match *)
538   (∃l3,newc,mv,l4.
539    〈c1,false〉::l2 = l3@〈c,false〉::l1@〈comma,false〉::newc@〈comma,false〉::mv@l4 ∧
540    t2 = midtape ? (reverse ? l1@〈c,false〉::〈grid,false〉::ls) 〈grid,false〉
541         (l3@〈c,false〉::l1@〈comma,true〉::newc@〈comma,false〉::mv@l4@〈grid,false〉::rs))
542   ∨
543   (* non facciamo match su nessuna tupla;
544      non specifichiamo condizioni sul nastro di output, perché
545      non eseguiremo altre operazioni, quindi il suo formato non ci interessa *)
546   (current ? t2 = Some ? 〈grid,true〉 ∧
547    ∀l3,newc,mv,l4.
548    〈c1,false〉::l2 ≠ l3@〈c,false〉::l1@〈comma,false〉::newc@〈comma,false〉::mv@l4).