src/HOL/UNITY/Extend.thy
author paulson
Thu, 11 Nov 1999 10:25:17 +0100
changeset 8005 b64d86018785
parent 7880 62fb24e28e5e
child 8703 816d8f6513be
permissions -rw-r--r--
new-style infix declaration for "image"
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6297
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
     1
(*  Title:      HOL/UNITY/Extend.thy
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
     2
    ID:         $Id$
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
     4
    Copyright   1998  University of Cambridge
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
     5
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
     6
Extending of state sets
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
     7
  function f (forget)    maps the extended state to the original state
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
     8
  function g (forgotten) maps the extended state to the "extending part"
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
     9
*)
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    10
7399
cf780c2bcccf changed "component" infix in HOL/UNITY/Comp.thy to be overloaded <
paulson
parents: 7378
diff changeset
    11
Extend = Guar +
6297
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    12
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    13
constdefs
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    14
7482
7badd511844d working snapshot
paulson
parents: 7399
diff changeset
    15
  good_map :: "['a*'b => 'c] => bool"
7badd511844d working snapshot
paulson
parents: 7399
diff changeset
    16
    "good_map h == surj h & (ALL x y. fst (inv h (h (x,y))) = x)"
7badd511844d working snapshot
paulson
parents: 7399
diff changeset
    17
     (*Using the locale constant "f", this is  f (h (x,y))) = x*)
7badd511844d working snapshot
paulson
parents: 7399
diff changeset
    18
  
6297
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    19
  extend_set :: "['a*'b => 'c, 'a set] => 'c set"
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    20
    "extend_set h A == h `` (A Times UNIV)"
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    21
7342
532841541d73 project constants
paulson
parents: 6677
diff changeset
    22
  project_set :: "['a*'b => 'c, 'c set] => 'a set"
532841541d73 project constants
paulson
parents: 6677
diff changeset
    23
    "project_set h C == {x. EX y. h(x,y) : C}"
532841541d73 project constants
paulson
parents: 6677
diff changeset
    24
532841541d73 project constants
paulson
parents: 6677
diff changeset
    25
  extend_act :: "['a*'b => 'c, ('a*'a) set] => ('c*'c) set"
7826
c6a8b73b6c2a working shapshot with "projecting" and "extending"
paulson
parents: 7546
diff changeset
    26
    "extend_act h == %act. UN (s,s'): act. UN y. {(h(s,y), h(s',y))}"
6297
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    27
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
    28
  project_act :: "['a*'b => 'c, ('c*'c) set] => ('a*'a) set"
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
    29
    "project_act h act == {(x,x'). EX y y'. (h(x,y), h(x',y')) : act}"
7342
532841541d73 project constants
paulson
parents: 6677
diff changeset
    30
6297
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    31
  extend :: "['a*'b => 'c, 'a program] => 'c program"
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    32
    "extend h F == mk_program (extend_set h (Init F),
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    33
			       extend_act h `` Acts F)"
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    34
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
    35
  (*Argument C allows weak safety laws to be projected*)
7880
62fb24e28e5e exchanged the first two args of "project" and "drop_prog"
paulson
parents: 7878
diff changeset
    36
  project :: "['a*'b => 'c, 'c set, 'c program] => 'a program"
62fb24e28e5e exchanged the first two args of "project" and "drop_prog"
paulson
parents: 7878
diff changeset
    37
    "project h C F == mk_program (project_set h (Init F),
7878
43b03d412b82 working version with localTo[C] instead of localTo
paulson
parents: 7826
diff changeset
    38
		  	          project_act h `` Restrict C `` Acts F)"
7342
532841541d73 project constants
paulson
parents: 6677
diff changeset
    39
6297
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    40
locale Extend =
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    41
  fixes 
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    42
    f       :: 'c => 'a
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    43
    g       :: 'c => 'b
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    44
    h       :: "'a*'b => 'c"    (*isomorphism between 'a * 'b and 'c *)
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    45
    slice   :: ['c set, 'b] => 'a set
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    46
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    47
  assumes
7482
7badd511844d working snapshot
paulson
parents: 7399
diff changeset
    48
    good_h  "good_map h"
6297
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    49
  defines
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    50
    f_def       "f z == fst (inv h z)"
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    51
    g_def       "g z == snd (inv h z)"
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    52
    slice_def   "slice Z y == {x. h(x,y) : Z}"
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    53
5b9fbdfe22b7 new theory of extending the state space
paulson
parents:
diff changeset
    54
end