src/HOLCF/Lift.ML
author slotosch
Wed, 12 Aug 1998 12:17:20 +0200
changeset 5291 5706f0ef1d43
parent 5143 b94cd208f073
child 7570 a9391550eea1
permissions -rw-r--r--
eliminated fabs,fapp. changed all theorem names and functions into Rep_CFun, Abs_CFun
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3655
0531f2c64c91 new extended adm tactic introduced;
mueller
parents: 3457
diff changeset
     1
(*  Title:      HOLCF/Lift.ML
0531f2c64c91 new extended adm tactic introduced;
mueller
parents: 3457
diff changeset
     2
    ID:         $Id$
0531f2c64c91 new extended adm tactic introduced;
mueller
parents: 3457
diff changeset
     3
    Author:     Olaf Mueller
0531f2c64c91 new extended adm tactic introduced;
mueller
parents: 3457
diff changeset
     4
    Copyright   1997 Technische Universitaet Muenchen
0531f2c64c91 new extended adm tactic introduced;
mueller
parents: 3457
diff changeset
     5
0531f2c64c91 new extended adm tactic introduced;
mueller
parents: 3457
diff changeset
     6
Theorems for Lift.thy
0531f2c64c91 new extended adm tactic introduced;
mueller
parents: 3457
diff changeset
     7
*)
0531f2c64c91 new extended adm tactic introduced;
mueller
parents: 3457
diff changeset
     8
3324
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
     9
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    10
(* ---------------------------------------------------------- *)
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    11
    section"Continuity Proofs for flift1, flift2, if";
3655
0531f2c64c91 new extended adm tactic introduced;
mueller
parents: 3457
diff changeset
    12
(* ---------------------------------------------------------- *)
3324
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    13
(* need the instance into flat *)
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    14
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    15
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    16
(* flift1 is continuous in its argument itself*)
5068
fb28eaa07e01 isatool fixgoal;
wenzelm
parents: 4477
diff changeset
    17
Goal "cont (lift_case UU f)"; 
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3324
diff changeset
    18
by (rtac flatdom_strict2cont 1);
3324
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    19
by (Simp_tac 1);
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    20
qed"cont_flift1_arg";
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    21
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    22
(* flift1 is continuous in a variable that occurs only 
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    23
   in the Def branch *)
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    24
5068
fb28eaa07e01 isatool fixgoal;
wenzelm
parents: 4477
diff changeset
    25
Goal "!!f. [| !! a. cont (%y. (f y) a) |] ==> \
3324
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    26
\          cont (%y. lift_case UU (f y))";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3324
diff changeset
    27
by (rtac cont2cont_CF1L_rev 1);
3324
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    28
by (strip_tac 1);
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    29
by (res_inst_tac [("x","y")] Lift_cases 1);
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    30
by (Asm_simp_tac 1);
4098
71e05eb27fb6 isatool fixclasimp;
wenzelm
parents: 3842
diff changeset
    31
by (fast_tac (HOL_cs addss simpset()) 1);
3324
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    32
qed"cont_flift1_not_arg";
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    33
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    34
(* flift1 is continuous in a variable that occurs either 
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    35
   in the Def branch or in the argument *)
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    36
5068
fb28eaa07e01 isatool fixgoal;
wenzelm
parents: 4477
diff changeset
    37
Goal "!!f. [| !! a. cont (%y. (f y) a); cont g|] ==> \
3324
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    38
\   cont (%y. lift_case UU (f y) (g y))";
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5068
diff changeset
    39
by (res_inst_tac [("tt","g")] cont2cont_app 1);
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3324
diff changeset
    40
by (rtac cont_flift1_not_arg 1);
4477
b3e5857d8d99 New Auto_tac (by Oheimb), and new syntax (without parens), and expandshort
paulson
parents: 4098
diff changeset
    41
by Auto_tac;
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3324
diff changeset
    42
by (rtac cont_flift1_arg 1);
3324
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    43
qed"cont_flift1_arg_and_not_arg";
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    44
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    45
(* flift2 is continuous in its argument itself *)
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    46
5068
fb28eaa07e01 isatool fixgoal;
wenzelm
parents: 4477
diff changeset
    47
Goal "cont (lift_case UU (%y. Def (f y)))";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3324
diff changeset
    48
by (rtac flatdom_strict2cont 1);
3324
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    49
by (Simp_tac 1);
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    50
qed"cont_flift2_arg";
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    51
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    52
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    53
(* ---------------------------------------------------------- *)
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    54
(*    Extension of cont_tac and installation of simplifier    *)
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    55
(* ---------------------------------------------------------- *)
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    56
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    57
bind_thm("cont2cont_CF1L_rev2",allI RS cont2cont_CF1L_rev);
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    58
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    59
val cont_lemmas_ext = [cont_flift1_arg,cont_flift2_arg,
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    60
                       cont_flift1_arg_and_not_arg,cont2cont_CF1L_rev2, 
5291
5706f0ef1d43 eliminated fabs,fapp.
slotosch
parents: 5143
diff changeset
    61
                       cont_Rep_CFun_app,cont_Rep_CFun_app_app,cont_if];
3324
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    62
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    63
val cont_lemmas2 =  cont_lemmas1 @ cont_lemmas_ext;
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    64
                 
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    65
Addsimps cont_lemmas_ext;         
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    66
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    67
fun cont_tac  i = resolve_tac cont_lemmas2 i;
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    68
fun cont_tacR i = REPEAT (cont_tac i);
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    69
4098
71e05eb27fb6 isatool fixclasimp;
wenzelm
parents: 3842
diff changeset
    70
fun cont_tacRs i = simp_tac (simpset() addsimps [flift1_def,flift2_def]) i THEN
3324
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    71
                  REPEAT (cont_tac i);
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    72
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    73
4098
71e05eb27fb6 isatool fixclasimp;
wenzelm
parents: 3842
diff changeset
    74
simpset_ref() := simpset() addSolver (K (DEPTH_SOLVE_1 o cont_tac));
3324
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    75
3661
1ea4a45b9412 moved extended adm_tac to new place
mueller
parents: 3655
diff changeset
    76
1ea4a45b9412 moved extended adm_tac to new place
mueller
parents: 3655
diff changeset
    77
3324
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    78
(* ---------------------------------------------------------- *)
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    79
              section"flift1, flift2";
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    80
(* ---------------------------------------------------------- *)
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    81
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    82
5068
fb28eaa07e01 isatool fixgoal;
wenzelm
parents: 4477
diff changeset
    83
Goal "flift1 f`(Def x) = (f x)";
4098
71e05eb27fb6 isatool fixclasimp;
wenzelm
parents: 3842
diff changeset
    84
by (simp_tac (simpset() addsimps [flift1_def]) 1);
3324
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    85
qed"flift1_Def";
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    86
5068
fb28eaa07e01 isatool fixgoal;
wenzelm
parents: 4477
diff changeset
    87
Goal "flift2 f`(Def x) = Def (f x)";
4098
71e05eb27fb6 isatool fixclasimp;
wenzelm
parents: 3842
diff changeset
    88
by (simp_tac (simpset() addsimps [flift2_def]) 1);
3324
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    89
qed"flift2_Def";
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    90
5068
fb28eaa07e01 isatool fixgoal;
wenzelm
parents: 4477
diff changeset
    91
Goal "flift1 f`UU = UU";
4098
71e05eb27fb6 isatool fixclasimp;
wenzelm
parents: 3842
diff changeset
    92
by (simp_tac (simpset() addsimps [flift1_def]) 1);
3324
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    93
qed"flift1_UU";
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    94
5068
fb28eaa07e01 isatool fixgoal;
wenzelm
parents: 4477
diff changeset
    95
Goal "flift2 f`UU = UU";
4098
71e05eb27fb6 isatool fixclasimp;
wenzelm
parents: 3842
diff changeset
    96
by (simp_tac (simpset() addsimps [flift2_def]) 1);
3324
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    97
qed"flift2_UU";
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    98
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
    99
Addsimps [flift1_Def,flift2_Def,flift1_UU,flift2_UU];
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
   100
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5068
diff changeset
   101
Goal "x~=UU ==> (flift2 f)`x~=UU";
3324
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
   102
by (def_tac 1);
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
   103
qed"flift2_nUU";
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
   104
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
   105
Addsimps [flift2_nUU];
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
   106
6b26b886ff69 Eliminated the prediates flat,chfin
slotosch
parents:
diff changeset
   107