src/HOL/Induct/Com.ML
author paulson
Fri, 31 Jul 1998 10:48:42 +0200
changeset 5223 4cb05273f764
parent 5143 b94cd208f073
child 6141 a6922171b396
permissions -rw-r--r--
Removal of obsolete "open" commands from heads of .ML files
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
     1
(*  Title:      HOL/Induct/Com
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
     2
    ID:         $Id$
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
     4
    Copyright   1997  University of Cambridge
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
     5
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
     6
Example of Mutual Induction via Iteratived Inductive Definitions: Commands
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
     7
*)
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
     8
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
     9
AddIs exec.intrs;
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    10
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    11
val exec_elim_cases = map (exec.mk_cases exp.simps)
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    12
   ["(SKIP,s) -[eval]-> t", "(x:=a,s) -[eval]-> t", "(c1;;c2, s) -[eval]-> t",
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    13
    "(IF e THEN c1 ELSE c2, s) -[eval]-> t"];
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    14
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    15
val exec_WHILE_case = exec.mk_cases exp.simps "(WHILE b DO c,s) -[eval]-> t";
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    16
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    17
AddSEs exec_elim_cases;
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    18
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    19
(*This theorem justifies using "exec" in the inductive definition of "eval"*)
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5069
diff changeset
    20
Goalw exec.defs "A<=B ==> exec(A) <= exec(B)";
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    21
by (rtac lfp_mono 1);
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    22
by (REPEAT (ares_tac basic_monos 1));
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    23
qed "exec_mono";
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    24
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    25
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    26
Unify.trace_bound := 30;
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    27
Unify.search_bound := 60;
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    28
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    29
(*Command execution is functional (deterministic) provided evaluation is*)
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5069
diff changeset
    30
Goal "Function ev ==> Function(exec ev)";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3919
diff changeset
    31
by (simp_tac (simpset() addsimps [Function_def, Unique_def]) 1);
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    32
by (REPEAT (rtac allI 1));
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    33
by (rtac impI 1);
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    34
by (etac exec.induct 1);
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    35
by (Blast_tac 3);
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    36
by (Blast_tac 1);
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    37
by (rewrite_goals_tac [Function_def, Unique_def]);
3142
a6f73a02c619 Made a slow proof slightly faster
paulson
parents: 3120
diff changeset
    38
by (thin_tac "(?c,s1) -[ev]-> s2" 5);
4390
57e16404c2a9 ugly patch for new Blast_tac
paulson
parents: 4089
diff changeset
    39
by (rotate_tac 1 5);   (*PATCH to avoid very slow proof*)
3142
a6f73a02c619 Made a slow proof slightly faster
paulson
parents: 3120
diff changeset
    40
(*SLOW (23s) due to proof reconstruction; needs 60s if thin_tac is omitted*)
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3919
diff changeset
    41
by (REPEAT (blast_tac (claset() addEs [exec_WHILE_case]) 1));
3120
c58423c20740 New directory to contain examples of (co)inductive definitions
paulson
parents:
diff changeset
    42
qed "Function_exec";
3147
49f2614732ea New theorems about "assign"
paulson
parents: 3142
diff changeset
    43
49f2614732ea New theorems about "assign"
paulson
parents: 3142
diff changeset
    44
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4686
diff changeset
    45
Goalw [assign_def] "(s[v/x])x = v";
3147
49f2614732ea New theorems about "assign"
paulson
parents: 3142
diff changeset
    46
by (Simp_tac 1);
49f2614732ea New theorems about "assign"
paulson
parents: 3142
diff changeset
    47
qed "assign_same";
49f2614732ea New theorems about "assign"
paulson
parents: 3142
diff changeset
    48
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5069
diff changeset
    49
Goalw [assign_def] "y~=x ==> (s[v/x])y = s y";
3147
49f2614732ea New theorems about "assign"
paulson
parents: 3142
diff changeset
    50
by (Asm_simp_tac 1);
49f2614732ea New theorems about "assign"
paulson
parents: 3142
diff changeset
    51
qed "assign_different";
49f2614732ea New theorems about "assign"
paulson
parents: 3142
diff changeset
    52
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4686
diff changeset
    53
Goalw [assign_def] "s[s x/x] = s";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3147
diff changeset
    54
by (rtac ext 1);
4686
74a12e86b20b Removed `addsplits [expand_if]'
nipkow
parents: 4390
diff changeset
    55
by (Simp_tac 1);
3147
49f2614732ea New theorems about "assign"
paulson
parents: 3142
diff changeset
    56
qed "assign_triv";
49f2614732ea New theorems about "assign"
paulson
parents: 3142
diff changeset
    57
49f2614732ea New theorems about "assign"
paulson
parents: 3142
diff changeset
    58
Addsimps [assign_same, assign_different, assign_triv];