src/HOL/IMP/ROOT.ML
author nipkow
Tue, 14 Mar 1995 09:47:28 +0100
changeset 951 682139612060
parent 936 a6d7b4084761
child 1025 23190112d369
permissions -rw-r--r--
added exit 1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
924
806721cfbf46 new version of HOL/IMP with curried function application
clasohm
parents:
diff changeset
     1
(*  Title: 	CHOL/IMP/ROOT.ML
806721cfbf46 new version of HOL/IMP with curried function application
clasohm
parents:
diff changeset
     2
    ID:         $Id$
936
a6d7b4084761 Hoare logic
nipkow
parents: 924
diff changeset
     3
    Author: 	Heiko Loetzbeyer, Robert Sandner, Tobias Nipkow
a6d7b4084761 Hoare logic
nipkow
parents: 924
diff changeset
     4
    Copyright   1995 TUM
924
806721cfbf46 new version of HOL/IMP with curried function application
clasohm
parents:
diff changeset
     5
936
a6d7b4084761 Hoare logic
nipkow
parents: 924
diff changeset
     6
The formalization of the denotational, operational and axiomatic semantics of
a6d7b4084761 Hoare logic
nipkow
parents: 924
diff changeset
     7
a simple while-language, including
a6d7b4084761 Hoare logic
nipkow
parents: 924
diff changeset
     8
(1) an equivalence proof between denotational and operational semantics and
a6d7b4084761 Hoare logic
nipkow
parents: 924
diff changeset
     9
(2) the derivation of the Hoare rules from the denotational semantics.
a6d7b4084761 Hoare logic
nipkow
parents: 924
diff changeset
    10
The whole development essentially formalizes/transcribes chapters 2, 5 and 6 of
924
806721cfbf46 new version of HOL/IMP with curried function application
clasohm
parents:
diff changeset
    11
806721cfbf46 new version of HOL/IMP with curried function application
clasohm
parents:
diff changeset
    12
Glynn Winskel. The Formal Semantics of Programming Languages.
806721cfbf46 new version of HOL/IMP with curried function application
clasohm
parents:
diff changeset
    13
MIT Press, 1993.
806721cfbf46 new version of HOL/IMP with curried function application
clasohm
parents:
diff changeset
    14
806721cfbf46 new version of HOL/IMP with curried function application
clasohm
parents:
diff changeset
    15
*)
806721cfbf46 new version of HOL/IMP with curried function application
clasohm
parents:
diff changeset
    16
806721cfbf46 new version of HOL/IMP with curried function application
clasohm
parents:
diff changeset
    17
CHOL_build_completed;	(*Make examples fail if CHOL did*)
806721cfbf46 new version of HOL/IMP with curried function application
clasohm
parents:
diff changeset
    18
806721cfbf46 new version of HOL/IMP with curried function application
clasohm
parents:
diff changeset
    19
writeln"Root file for CHOL/IMP";
806721cfbf46 new version of HOL/IMP with curried function application
clasohm
parents:
diff changeset
    20
proof_timing := true;
806721cfbf46 new version of HOL/IMP with curried function application
clasohm
parents:
diff changeset
    21
loadpath := [".","IMP"];
951
682139612060 added exit 1
nipkow
parents: 936
diff changeset
    22
(time_use_thy "Properties";
682139612060 added exit 1
nipkow
parents: 936
diff changeset
    23
 time_use_thy "Equiv";
682139612060 added exit 1
nipkow
parents: 936
diff changeset
    24
 time_use_thy "Hoare"
682139612060 added exit 1
nipkow
parents: 936
diff changeset
    25
) handle _ => exit 1;