src/HOL/IMP/Transition.ML
author berghofe
Fri, 24 Jul 1998 13:03:20 +0200
changeset 5183 89f162de39cf
parent 5117 7b5efef2ca74
child 5223 4cb05273f764
permissions -rw-r--r--
Adapted to new datatype package.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
     1
(*  Title:      HOL/IMP/Transition.ML
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
     2
    ID:         $Id$
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
     3
    Author:     Tobias Nipkow & Robert Sandner, TUM
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
     4
    Copyright   1996 TUM
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
     5
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
     6
Equivalence of Natural and Transition semantics
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
     7
*)
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
     8
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
     9
open Transition;
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    10
1707
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
    11
section "Winskel's Proof";
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
    12
1973
8c94c9a5be10 Converted proofs to use default clasets.
nipkow
parents: 1939
diff changeset
    13
AddSEs [rel_pow_0_E];
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    14
1973
8c94c9a5be10 Converted proofs to use default clasets.
nipkow
parents: 1939
diff changeset
    15
val evalc1_SEs = map (evalc1.mk_cases com.simps)
8c94c9a5be10 Converted proofs to use default clasets.
nipkow
parents: 1939
diff changeset
    16
   ["(SKIP,s) -1-> t", "(x:=a,s) -1-> t","(c1;c2, s) -1-> t", 
8c94c9a5be10 Converted proofs to use default clasets.
nipkow
parents: 1939
diff changeset
    17
    "(IF b THEN c1 ELSE c2, s) -1-> t"];
8c94c9a5be10 Converted proofs to use default clasets.
nipkow
parents: 1939
diff changeset
    18
val evalc1_Es = map (evalc1.mk_cases com.simps)
8c94c9a5be10 Converted proofs to use default clasets.
nipkow
parents: 1939
diff changeset
    19
   ["(WHILE b DO c,s) -1-> t"];
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    20
1973
8c94c9a5be10 Converted proofs to use default clasets.
nipkow
parents: 1939
diff changeset
    21
AddSEs evalc1_SEs;
8c94c9a5be10 Converted proofs to use default clasets.
nipkow
parents: 1939
diff changeset
    22
8c94c9a5be10 Converted proofs to use default clasets.
nipkow
parents: 1939
diff changeset
    23
AddIs evalc1.intrs;
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    24
5117
7b5efef2ca74 Removed leading !! in goals.
nipkow
parents: 5069
diff changeset
    25
Goal "(SKIP,s) -m-> (SKIP,t) ==> s = t & m = 0";
2031
03a843f0f447 Ran expandshort
paulson
parents: 1973
diff changeset
    26
by (etac rel_pow_E2 1);
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    27
by (Asm_full_simp_tac 1);
2031
03a843f0f447 Ran expandshort
paulson
parents: 1973
diff changeset
    28
by (Fast_tac 1);
1973
8c94c9a5be10 Converted proofs to use default clasets.
nipkow
parents: 1939
diff changeset
    29
val hlemma = result();
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    30
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    31
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4897
diff changeset
    32
Goal
1701
a26fbeaaaabd Streamlined syntax: -(n)-> is now -n->.
nipkow
parents: 1700
diff changeset
    33
  "!s t u c d. (c,s) -n-> (SKIP,t) --> (d,t) -*-> (SKIP,u) --> \
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    34
\              (c;d, s) -*-> (SKIP, u)";
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5117
diff changeset
    35
by (induct_tac "n" 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3439
diff changeset
    36
 by (fast_tac (claset() addIs [rtrancl_into_rtrancl2])1);
4772
8c7e7eaffbdf split_all_tac now fails if there is nothing to split
oheimb
parents: 4746
diff changeset
    37
by (fast_tac  (claset() addIs [rtrancl_into_rtrancl2]addSDs [rel_pow_Suc_D2])1);
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    38
qed_spec_mp "lemma1";
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    39
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    40
5117
7b5efef2ca74 Removed leading !! in goals.
nipkow
parents: 5069
diff changeset
    41
Goal "<c,s> -c-> s1 ==> (c,s) -*-> (SKIP,s1)";
2031
03a843f0f447 Ran expandshort
paulson
parents: 1973
diff changeset
    42
by (etac evalc.induct 1);
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    43
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    44
(* SKIP *)
2031
03a843f0f447 Ran expandshort
paulson
parents: 1973
diff changeset
    45
by (rtac rtrancl_refl 1);
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    46
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    47
(* ASSIGN *)
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3439
diff changeset
    48
by (fast_tac (claset() addSIs [r_into_rtrancl]) 1);
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    49
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    50
(* SEMI *)
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3439
diff changeset
    51
by (fast_tac (claset() addDs [rtrancl_imp_UN_rel_pow] addIs [lemma1]) 1);
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    52
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    53
(* IF *)
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3439
diff changeset
    54
by (fast_tac (claset() addIs [rtrancl_into_rtrancl2]) 1);
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3439
diff changeset
    55
by (fast_tac (claset() addIs [rtrancl_into_rtrancl2]) 1);
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    56
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    57
(* WHILE *)
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3439
diff changeset
    58
by (fast_tac (claset() addSIs [r_into_rtrancl]) 1);
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3439
diff changeset
    59
by (fast_tac (claset() addDs [rtrancl_imp_UN_rel_pow]
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    60
                        addIs [rtrancl_into_rtrancl2,lemma1]) 1);
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    61
1730
1c7f793fc374 Updated for new form of induction rules
paulson
parents: 1707
diff changeset
    62
qed "evalc_impl_evalc1";
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    63
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    64
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4897
diff changeset
    65
Goal
1701
a26fbeaaaabd Streamlined syntax: -(n)-> is now -n->.
nipkow
parents: 1700
diff changeset
    66
  "!c d s u. (c;d,s) -n-> (SKIP,u) --> \
a26fbeaaaabd Streamlined syntax: -(n)-> is now -n->.
nipkow
parents: 1700
diff changeset
    67
\            (? t m. (c,s) -*-> (SKIP,t) & (d,t) -m-> (SKIP,u) & m <= n)";
4897
be11be0b6ea1 Changed [/] to [:=] and removed actual definition.
nipkow
parents: 4772
diff changeset
    68
by (induct_tac "n" 1);
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    69
 (* case n = 0 *)
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3439
diff changeset
    70
 by (fast_tac (claset() addss simpset()) 1);
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    71
(* induction step *)
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3439
diff changeset
    72
by (fast_tac (claset() addSIs [le_SucI,le_refl]
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    73
                     addSDs [rel_pow_Suc_D2]
1973
8c94c9a5be10 Converted proofs to use default clasets.
nipkow
parents: 1939
diff changeset
    74
                     addSEs [rel_pow_imp_rtrancl,rtrancl_into_rtrancl2]) 1);
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    75
qed_spec_mp "lemma2";
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    76
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4897
diff changeset
    77
Goal "!s t. (c,s) -*-> (SKIP,t) --> <c,s> -c-> t";
4897
be11be0b6ea1 Changed [/] to [:=] and removed actual definition.
nipkow
parents: 4772
diff changeset
    78
by (induct_tac "c" 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3439
diff changeset
    79
by (safe_tac (claset() addSDs [rtrancl_imp_UN_rel_pow]));
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    80
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    81
(* SKIP *)
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3439
diff changeset
    82
by (fast_tac (claset() addSEs [rel_pow_E2]) 1);
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    83
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    84
(* ASSIGN *)
4897
be11be0b6ea1 Changed [/] to [:=] and removed actual definition.
nipkow
parents: 4772
diff changeset
    85
by (fast_tac (claset() addSDs [hlemma]  addSEs [rel_pow_E2]) 1);
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    86
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    87
(* SEMI *)
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3439
diff changeset
    88
by (fast_tac (claset() addSDs [lemma2,rel_pow_imp_rtrancl]) 1);
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    89
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    90
(* IF *)
2031
03a843f0f447 Ran expandshort
paulson
parents: 1973
diff changeset
    91
by (etac rel_pow_E2 1);
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    92
by (Asm_full_simp_tac 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3439
diff changeset
    93
by (fast_tac (claset() addSDs [rel_pow_imp_rtrancl]) 1);
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    94
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    95
(* WHILE, induction on the length of the computation *)
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4089
diff changeset
    96
by (eres_inst_tac [("P","?X -n-> ?Y")] rev_mp 1);
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    97
by (res_inst_tac [("x","s")] spec 1);
2031
03a843f0f447 Ran expandshort
paulson
parents: 1973
diff changeset
    98
by (res_inst_tac [("n","n")] less_induct 1);
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
    99
by (strip_tac 1);
2031
03a843f0f447 Ran expandshort
paulson
parents: 1973
diff changeset
   100
by (etac rel_pow_E2 1);
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
   101
 by (Asm_full_simp_tac 1);
1973
8c94c9a5be10 Converted proofs to use default clasets.
nipkow
parents: 1939
diff changeset
   102
by (eresolve_tac evalc1_Es 1);
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
   103
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
   104
(* WhileFalse *)
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3439
diff changeset
   105
 by (fast_tac (claset() addSDs [hlemma]) 1);
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
   106
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
   107
(* WhileTrue *)
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3439
diff changeset
   108
by (fast_tac(claset() addSDs[lemma2,le_imp_less_or_eq,less_Suc_eq RS iffD2])1);
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
   109
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
   110
qed_spec_mp "evalc1_impl_evalc";
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
   111
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
   112
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
   113
(**** proof of the equivalence of evalc and evalc1 ****)
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
   114
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4897
diff changeset
   115
Goal "((c, s) -*-> (SKIP, t)) = (<c,s> -c-> t)";
1700
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
   116
by (fast_tac (HOL_cs addSEs [evalc1_impl_evalc,evalc_impl_evalc1]) 1);
afd3b60660db Natural and Transition semantics.
nipkow
parents:
diff changeset
   117
qed "evalc1_eq_evalc";
1707
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   118
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   119
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   120
section "A Proof Without -n->";
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   121
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4897
diff changeset
   122
Goal
5117
7b5efef2ca74 Removed leading !! in goals.
nipkow
parents: 5069
diff changeset
   123
 "(c1,s1) -*-> (SKIP,s2) ==> \
1939
ad5bb12605fb Generalized my_lemma1: (c3,s3) |--> cs3
nipkow
parents: 1730
diff changeset
   124
\ (c2,s2) -*-> cs3 --> (c1;c2,s1) -*-> cs3";
4746
a5dcd7e4a37d inverse -> converse
paulson
parents: 4651
diff changeset
   125
by (etac converse_rtrancl_induct2 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3439
diff changeset
   126
by (fast_tac (claset() addIs [rtrancl_into_rtrancl2]) 1);
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3439
diff changeset
   127
by (fast_tac (claset() addIs [rtrancl_into_rtrancl2]) 1);
1707
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   128
qed_spec_mp "my_lemma1";
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   129
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   130
5117
7b5efef2ca74 Removed leading !! in goals.
nipkow
parents: 5069
diff changeset
   131
Goal "<c,s> -c-> s1 ==> (c,s) -*-> (SKIP,s1)";
2031
03a843f0f447 Ran expandshort
paulson
parents: 1973
diff changeset
   132
by (etac evalc.induct 1);
1707
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   133
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   134
(* SKIP *)
2031
03a843f0f447 Ran expandshort
paulson
parents: 1973
diff changeset
   135
by (rtac rtrancl_refl 1);
1707
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   136
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   137
(* ASSIGN *)
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3439
diff changeset
   138
by (fast_tac (claset() addSIs [r_into_rtrancl]) 1);
1707
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   139
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   140
(* SEMI *)
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3439
diff changeset
   141
by (fast_tac (claset() addIs [my_lemma1]) 1);
1707
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   142
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   143
(* IF *)
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3439
diff changeset
   144
by (fast_tac (claset() addIs [rtrancl_into_rtrancl2]) 1);
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3439
diff changeset
   145
by (fast_tac (claset() addIs [rtrancl_into_rtrancl2]) 1);
1707
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   146
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   147
(* WHILE *)
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3439
diff changeset
   148
by (fast_tac (claset() addSIs [r_into_rtrancl]) 1);
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3439
diff changeset
   149
by (fast_tac (claset() addIs [rtrancl_into_rtrancl2,my_lemma1]) 1);
1707
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   150
1730
1c7f793fc374 Updated for new form of induction rules
paulson
parents: 1707
diff changeset
   151
qed "evalc_impl_evalc1";
1707
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   152
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   153
(* The opposite direction is based on a Coq proof done by Ranan Fraer and
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   154
   Yves Bertot. The following sketch is from an email by Ranan Fraer.
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   155
*)
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   156
(*
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   157
First we've broke it into 2 lemmas:
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   158
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   159
Lemma 1
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   160
((c,s) --> (SKIP,t)) => (<c,s> -c-> t)
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   161
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   162
This is a quick one, dealing with the cases skip, assignment
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   163
and while_false.
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   164
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   165
Lemma 2
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   166
((c,s) -*-> (c',s')) /\ <c',s'> -c'-> t
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   167
  => 
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   168
<c,s> -c-> t
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   169
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   170
This is proved by rule induction on the  -*-> relation
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   171
and the induction step makes use of a third lemma: 
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   172
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   173
Lemma 3
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   174
((c,s) --> (c',s')) /\ <c',s'> -c'-> t
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   175
  => 
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   176
<c,s> -c-> t
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   177
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   178
This captures the essence of the proof, as it shows that <c',s'> 
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   179
behaves as the continuation of <c,s> with respect to the natural
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   180
semantics.
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   181
The proof of Lemma 3 goes by rule induction on the --> relation,
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   182
dealing with the cases sequence1, sequence2, if_true, if_false and
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   183
while_true. In particular in the case (sequence1) we make use again
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   184
of Lemma 1.
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   185
*)
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   186
4897
be11be0b6ea1 Changed [/] to [:=] and removed actual definition.
nipkow
parents: 4772
diff changeset
   187
(*Delsimps [update_apply];*)
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4897
diff changeset
   188
Goal 
5117
7b5efef2ca74 Removed leading !! in goals.
nipkow
parents: 5069
diff changeset
   189
  "((c,s) -1-> (c',s')) ==> (!t. <c',s'> -c-> t --> <c,s> -c-> t)";
2031
03a843f0f447 Ran expandshort
paulson
parents: 1973
diff changeset
   190
by (etac evalc1.induct 1);
4477
b3e5857d8d99 New Auto_tac (by Oheimb), and new syntax (without parens), and expandshort
paulson
parents: 4153
diff changeset
   191
by Auto_tac;
1730
1c7f793fc374 Updated for new form of induction rules
paulson
parents: 1707
diff changeset
   192
qed_spec_mp "FB_lemma3";
4897
be11be0b6ea1 Changed [/] to [:=] and removed actual definition.
nipkow
parents: 4772
diff changeset
   193
(*Addsimps [update_apply];*)
1707
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   194
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   195
val [major] = goal Transition.thy
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   196
  "(c,s) -*-> (c',s') ==> <c',s'> -c-> t --> <c,s> -c-> t";
2031
03a843f0f447 Ran expandshort
paulson
parents: 1973
diff changeset
   197
by (rtac (major RS rtrancl_induct2) 1);
4897
be11be0b6ea1 Changed [/] to [:=] and removed actual definition.
nipkow
parents: 4772
diff changeset
   198
 by (Fast_tac 1);
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4477
diff changeset
   199
by (fast_tac (claset() addIs [FB_lemma3]) 1);
1707
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   200
qed_spec_mp "FB_lemma2";
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   201
5117
7b5efef2ca74 Removed leading !! in goals.
nipkow
parents: 5069
diff changeset
   202
Goal "(c,s) -*-> (SKIP,t) ==> <c,s> -c-> t";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3439
diff changeset
   203
by (fast_tac (claset() addEs [FB_lemma2]) 1);
1707
e1a64a6c454d Added an equivalence proof which avoids the use of -n->
nipkow
parents: 1701
diff changeset
   204
qed "evalc1_impl_evalc";