src/HOLCF/Discrete.ML
author oheimb
Thu, 31 May 2001 16:52:32 +0200
changeset 11346 0d28bc664955
parent 5068 fb28eaa07e01
child 12030 46d57d0290a2
permissions -rw-r--r--
corrected ML names of definitions
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2841
c2508f4ab739 Added "discrete" CPOs and modified IMP to use those rather than "lift"
nipkow
parents:
diff changeset
     1
(*  Title:      HOLCF/Discrete.ML
c2508f4ab739 Added "discrete" CPOs and modified IMP to use those rather than "lift"
nipkow
parents:
diff changeset
     2
    ID:         $Id$
c2508f4ab739 Added "discrete" CPOs and modified IMP to use those rather than "lift"
nipkow
parents:
diff changeset
     3
    Author:     Tobias Nipkow
c2508f4ab739 Added "discrete" CPOs and modified IMP to use those rather than "lift"
nipkow
parents:
diff changeset
     4
    Copyright   1997 TUM
c2508f4ab739 Added "discrete" CPOs and modified IMP to use those rather than "lift"
nipkow
parents:
diff changeset
     5
*)
c2508f4ab739 Added "discrete" CPOs and modified IMP to use those rather than "lift"
nipkow
parents:
diff changeset
     6
5068
fb28eaa07e01 isatool fixgoal;
wenzelm
parents: 4721
diff changeset
     7
Goalw [undiscr_def] "undiscr(Discr x) = x";
4423
a129b817b58a expandshort;
wenzelm
parents: 4098
diff changeset
     8
by (Simp_tac 1);
2841
c2508f4ab739 Added "discrete" CPOs and modified IMP to use those rather than "lift"
nipkow
parents:
diff changeset
     9
qed "undiscr_Discr";
c2508f4ab739 Added "discrete" CPOs and modified IMP to use those rather than "lift"
nipkow
parents:
diff changeset
    10
Addsimps [undiscr_Discr];
c2508f4ab739 Added "discrete" CPOs and modified IMP to use those rather than "lift"
nipkow
parents:
diff changeset
    11
5068
fb28eaa07e01 isatool fixgoal;
wenzelm
parents: 4721
diff changeset
    12
Goal
4721
c8a8482a8124 renamed is_chain to chain, is_tord to tord, replaced chain_finite by chfin
oheimb
parents: 4423
diff changeset
    13
 "!!S::nat=>('a::term)discr. chain(S) ==> range(%i. f(S i)) = {f(S 0)}";
4423
a129b817b58a expandshort;
wenzelm
parents: 4098
diff changeset
    14
by (fast_tac (claset() addDs [discr_chain0] addEs [arg_cong]) 1);
2841
c2508f4ab739 Added "discrete" CPOs and modified IMP to use those rather than "lift"
nipkow
parents:
diff changeset
    15
qed "discr_chain_f_range0";
c2508f4ab739 Added "discrete" CPOs and modified IMP to use those rather than "lift"
nipkow
parents:
diff changeset
    16
11346
0d28bc664955 corrected ML names of definitions
oheimb
parents: 5068
diff changeset
    17
Goalw [cont,is_lub_def,is_ub_def] "cont(%x::('a::term)discr. f x)";
4423
a129b817b58a expandshort;
wenzelm
parents: 4098
diff changeset
    18
by (simp_tac (simpset() addsimps [discr_chain_f_range0]) 1);
2841
c2508f4ab739 Added "discrete" CPOs and modified IMP to use those rather than "lift"
nipkow
parents:
diff changeset
    19
qed "cont_discr";
c2508f4ab739 Added "discrete" CPOs and modified IMP to use those rather than "lift"
nipkow
parents:
diff changeset
    20
AddIffs [cont_discr];