src/ZF/IMP/Com.thy
author wenzelm
Thu, 14 Oct 1999 15:04:36 +0200
changeset 7866 3ccaa11b6df9
parent 6112 5e4871c5136b
child 11320 56aa53caf333
permissions -rw-r--r--
pdf: generate thumbnails if ISABELLE_THUMBPDF set;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1478
2b8c2a7547ab expanded tabs
clasohm
parents: 1401
diff changeset
     1
(*  Title:      ZF/IMP/Com.thy
482
3a4e092ba69c Initial revision
nipkow
parents:
diff changeset
     2
    ID:         $Id$
1478
2b8c2a7547ab expanded tabs
clasohm
parents: 1401
diff changeset
     3
    Author:     Heiko Loetzbeyer & Robert Sandner, TUM
482
3a4e092ba69c Initial revision
nipkow
parents:
diff changeset
     4
    Copyright   1994 TUM
3a4e092ba69c Initial revision
nipkow
parents:
diff changeset
     5
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
     6
Arithmetic expressions, Boolean expressions, Commands
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
     7
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
     8
And their Operational semantics
482
3a4e092ba69c Initial revision
nipkow
parents:
diff changeset
     9
*)
3a4e092ba69c Initial revision
nipkow
parents:
diff changeset
    10
6047
f2e0938ba38d converted to use new primrec section and update operator
paulson
parents: 1741
diff changeset
    11
Com = Main +
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    12
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    13
(** Arithmetic expressions **)
1401
0c439768f45c removed quotes from consts and syntax sections
clasohm
parents: 1155
diff changeset
    14
consts  loc  :: i
0c439768f45c removed quotes from consts and syntax sections
clasohm
parents: 1155
diff changeset
    15
        aexp :: i
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    16
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    17
datatype <= "univ(loc Un (nat->nat) Un ((nat*nat) -> nat) )"
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    18
  "aexp" = N ("n: nat")
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    19
         | X ("x: loc")
1534
e8de1db81559 A mere adjustment of spacing
paulson
parents: 1478
diff changeset
    20
         | Op1 ("f : nat -> nat", "a : aexp")
e8de1db81559 A mere adjustment of spacing
paulson
parents: 1478
diff changeset
    21
         | Op2 ("f : (nat*nat) -> nat", "a0 : aexp", "a1 : aexp")
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    22
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    23
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    24
(** Evaluation of arithmetic expressions **)
1401
0c439768f45c removed quotes from consts and syntax sections
clasohm
parents: 1155
diff changeset
    25
consts  evala    :: i
1741
8b3de497b49d Removed special syntax for -a-> and nested tuples to left
paulson
parents: 1534
diff changeset
    26
        "-a->"   :: [i,i] => o                  (infixl 50)
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    27
translations
1741
8b3de497b49d Removed special syntax for -a-> and nested tuples to left
paulson
parents: 1534
diff changeset
    28
    "p -a-> n" == "<p,n> : evala"
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    29
inductive
1741
8b3de497b49d Removed special syntax for -a-> and nested tuples to left
paulson
parents: 1534
diff changeset
    30
  domains "evala" <= "(aexp * (loc -> nat)) * nat"
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    31
  intrs 
1534
e8de1db81559 A mere adjustment of spacing
paulson
parents: 1478
diff changeset
    32
    N   "[| n:nat;  sigma:loc->nat |] ==> <N(n),sigma> -a-> n"
1478
2b8c2a7547ab expanded tabs
clasohm
parents: 1401
diff changeset
    33
    X   "[| x:loc;  sigma:loc->nat |] ==> <X(x),sigma> -a-> sigma`x"
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    34
    Op1 "[| <e,sigma> -a-> n;  f: nat -> nat |] ==> <Op1(f,e),sigma> -a-> f`n"
1155
928a16e02f9f removed \...\ inside strings
clasohm
parents: 810
diff changeset
    35
    Op2 "[| <e0,sigma> -a-> n0;  <e1,sigma>  -a-> n1; f: (nat*nat) -> nat |] 
928a16e02f9f removed \...\ inside strings
clasohm
parents: 810
diff changeset
    36
           ==> <Op2(f,e0,e1),sigma> -a-> f`<n0,n1>"
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    37
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    38
  type_intrs "aexp.intrs@[apply_funtype]"
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    39
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    40
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    41
(** Boolean expressions **)
1401
0c439768f45c removed quotes from consts and syntax sections
clasohm
parents: 1155
diff changeset
    42
consts  bexp :: i
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    43
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    44
datatype <= "univ(aexp Un ((nat*nat)->bool) )"
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    45
  "bexp" = true
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    46
         | false
1534
e8de1db81559 A mere adjustment of spacing
paulson
parents: 1478
diff changeset
    47
         | ROp  ("f : (nat*nat)->bool", "a0 : aexp", "a1 : aexp")
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    48
         | noti ("b : bexp")
1478
2b8c2a7547ab expanded tabs
clasohm
parents: 1401
diff changeset
    49
         | andi ("b0 : bexp", "b1 : bexp")      (infixl 60)
2b8c2a7547ab expanded tabs
clasohm
parents: 1401
diff changeset
    50
         | ori  ("b0 : bexp", "b1 : bexp")      (infixl 60)
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    51
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    52
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    53
(** Evaluation of boolean expressions **)
1478
2b8c2a7547ab expanded tabs
clasohm
parents: 1401
diff changeset
    54
consts evalb    :: i    
1741
8b3de497b49d Removed special syntax for -a-> and nested tuples to left
paulson
parents: 1534
diff changeset
    55
       "-b->"   :: [i,i] => o                   (infixl 50)
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    56
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    57
translations
1741
8b3de497b49d Removed special syntax for -a-> and nested tuples to left
paulson
parents: 1534
diff changeset
    58
    "p -b-> b" == "<p,b> : evalb"
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    59
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    60
inductive
1741
8b3de497b49d Removed special syntax for -a-> and nested tuples to left
paulson
parents: 1534
diff changeset
    61
  domains "evalb" <= "(bexp * (loc -> nat)) * bool"
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    62
  intrs (*avoid clash with ML constructors true, false*)
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    63
    tru   "[| sigma:loc -> nat |] ==> <true,sigma> -b-> 1"
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    64
    fls   "[| sigma:loc -> nat |] ==> <false,sigma> -b-> 0"
1155
928a16e02f9f removed \...\ inside strings
clasohm
parents: 810
diff changeset
    65
    ROp   "[| <a0,sigma> -a-> n0; <a1,sigma> -a-> n1; f: (nat*nat)->bool |] 
1478
2b8c2a7547ab expanded tabs
clasohm
parents: 1401
diff changeset
    66
           ==> <ROp(f,a0,a1),sigma> -b-> f`<n0,n1> "
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    67
    noti  "[| <b,sigma> -b-> w |] ==> <noti(b),sigma> -b-> not(w)"
1155
928a16e02f9f removed \...\ inside strings
clasohm
parents: 810
diff changeset
    68
    andi  "[| <b0,sigma> -b-> w0; <b1,sigma> -b-> w1 |] 
928a16e02f9f removed \...\ inside strings
clasohm
parents: 810
diff changeset
    69
          ==> <b0 andi b1,sigma> -b-> (w0 and w1)"
928a16e02f9f removed \...\ inside strings
clasohm
parents: 810
diff changeset
    70
    ori   "[| <b0,sigma> -b-> w0; <b1,sigma> -b-> w1 |] 
1478
2b8c2a7547ab expanded tabs
clasohm
parents: 1401
diff changeset
    71
            ==> <b0 ori b1,sigma> -b-> (w0 or w1)"
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    72
1155
928a16e02f9f removed \...\ inside strings
clasohm
parents: 810
diff changeset
    73
  type_intrs "bexp.intrs @   
1478
2b8c2a7547ab expanded tabs
clasohm
parents: 1401
diff changeset
    74
              [apply_funtype, and_type, or_type, bool_1I, bool_0I, not_type]"
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    75
  type_elims "[make_elim(evala.dom_subset RS subsetD)]"
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    76
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    77
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    78
(** Commands **)
1401
0c439768f45c removed quotes from consts and syntax sections
clasohm
parents: 1155
diff changeset
    79
consts  com :: i
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    80
6112
5e4871c5136b datatype package improvements
paulson
parents: 6047
diff changeset
    81
datatype 
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    82
  "com" = skip
6047
f2e0938ba38d converted to use new primrec section and update operator
paulson
parents: 1741
diff changeset
    83
        | asgt  ("x:loc", "a:aexp")             (infixl 60)
1478
2b8c2a7547ab expanded tabs
clasohm
parents: 1401
diff changeset
    84
        | semic ("c0:com", "c1:com")            ("_; _"  [60, 60] 10)
2b8c2a7547ab expanded tabs
clasohm
parents: 1401
diff changeset
    85
        | while ("b:bexp", "c:com")             ("while _ do _"  60)
2b8c2a7547ab expanded tabs
clasohm
parents: 1401
diff changeset
    86
        | ifc   ("b:bexp", "c0:com", "c1:com")  ("ifc _ then _ else _"  60)
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    87
653
6eeff82979df HOL,ZF/IMP/Com.thy: tightening precedences to eliminate syntactic ambiguities.
lcp
parents: 518
diff changeset
    88
(*Constructor ";" has low precedence to avoid syntactic ambiguities
6eeff82979df HOL,ZF/IMP/Com.thy: tightening precedences to eliminate syntactic ambiguities.
lcp
parents: 518
diff changeset
    89
  with [| m: nat; x: loc; ... |] ==> ...  It usually will need parentheses.*)
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    90
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    91
(** Execution of commands **)
1401
0c439768f45c removed quotes from consts and syntax sections
clasohm
parents: 1155
diff changeset
    92
consts  evalc    :: i
1741
8b3de497b49d Removed special syntax for -a-> and nested tuples to left
paulson
parents: 1534
diff changeset
    93
        "-c->"   :: [i,i] => o                   (infixl 50)
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    94
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    95
translations
1741
8b3de497b49d Removed special syntax for -a-> and nested tuples to left
paulson
parents: 1534
diff changeset
    96
       "p -c-> s" == "<p,s> : evalc"
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    97
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    98
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
    99
inductive
1741
8b3de497b49d Removed special syntax for -a-> and nested tuples to left
paulson
parents: 1534
diff changeset
   100
  domains "evalc" <= "(com * (loc -> nat)) * (loc -> nat)"
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
   101
  intrs
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
   102
    skip    "[| sigma: loc -> nat |] ==> <skip,sigma> -c-> sigma"
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
   103
1155
928a16e02f9f removed \...\ inside strings
clasohm
parents: 810
diff changeset
   104
    assign  "[| m: nat; x: loc; <a,sigma> -a-> m |] ==> 
6047
f2e0938ba38d converted to use new primrec section and update operator
paulson
parents: 1741
diff changeset
   105
            <x asgt a,sigma> -c-> sigma(x:=m)"
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
   106
1155
928a16e02f9f removed \...\ inside strings
clasohm
parents: 810
diff changeset
   107
    semi    "[| <c0,sigma> -c-> sigma2; <c1,sigma2> -c-> sigma1 |] ==> 
928a16e02f9f removed \...\ inside strings
clasohm
parents: 810
diff changeset
   108
            <c0 ; c1, sigma> -c-> sigma1"
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
   109
1155
928a16e02f9f removed \...\ inside strings
clasohm
parents: 810
diff changeset
   110
    ifc1     "[| b:bexp; c1:com; sigma:loc->nat;   
1478
2b8c2a7547ab expanded tabs
clasohm
parents: 1401
diff changeset
   111
                 <b,sigma> -b-> 1; <c0,sigma> -c-> sigma1 |] ==> 
1155
928a16e02f9f removed \...\ inside strings
clasohm
parents: 810
diff changeset
   112
             <ifc b then c0 else c1, sigma> -c-> sigma1"
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
   113
1155
928a16e02f9f removed \...\ inside strings
clasohm
parents: 810
diff changeset
   114
    ifc0     "[| b:bexp; c0:com; sigma:loc->nat;   
1478
2b8c2a7547ab expanded tabs
clasohm
parents: 1401
diff changeset
   115
                 <b,sigma> -b-> 0; <c1,sigma> -c-> sigma1 |] ==> 
1155
928a16e02f9f removed \...\ inside strings
clasohm
parents: 810
diff changeset
   116
             <ifc b then c0 else c1, sigma> -c-> sigma1"
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
   117
1155
928a16e02f9f removed \...\ inside strings
clasohm
parents: 810
diff changeset
   118
    while0   "[| c: com; <b, sigma> -b-> 0 |] ==> 
928a16e02f9f removed \...\ inside strings
clasohm
parents: 810
diff changeset
   119
             <while b do c,sigma> -c-> sigma "
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
   120
1155
928a16e02f9f removed \...\ inside strings
clasohm
parents: 810
diff changeset
   121
    while1   "[| c : com; <b,sigma> -b-> 1; <c,sigma> -c-> sigma2; 
928a16e02f9f removed \...\ inside strings
clasohm
parents: 810
diff changeset
   122
                <while b do c, sigma2> -c-> sigma1 |] ==> 
928a16e02f9f removed \...\ inside strings
clasohm
parents: 810
diff changeset
   123
             <while b do c, sigma> -c-> sigma1 "
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
   124
6047
f2e0938ba38d converted to use new primrec section and update operator
paulson
parents: 1741
diff changeset
   125
  type_intrs "com.intrs @ [update_type]"
1155
928a16e02f9f removed \...\ inside strings
clasohm
parents: 810
diff changeset
   126
  type_elims "[make_elim(evala.dom_subset RS subsetD),   
6047
f2e0938ba38d converted to use new primrec section and update operator
paulson
parents: 1741
diff changeset
   127
               make_elim(evalb.dom_subset RS subsetD) ]"
511
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
   128
b2be4790da7a re-organized using new theory sections
lcp
parents: 482
diff changeset
   129
end