src/HOL/IOA/meta_theory/Asig.ML
author nipkow
Thu, 13 Apr 1995 17:05:41 +0200
changeset 1052 e044350bfa52
parent 966 3fd66f245ad7
child 1266 3ae9fe3c0f68
permissions -rw-r--r--
Olafs new version.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
966
3fd66f245ad7 converted IOA with curried function application
clasohm
parents:
diff changeset
     1
(*  Title:      HOL/IOA/meta_theory/Asig.ML
3fd66f245ad7 converted IOA with curried function application
clasohm
parents:
diff changeset
     2
    ID:         $Id$
3fd66f245ad7 converted IOA with curried function application
clasohm
parents:
diff changeset
     3
    Author:     Tobias Nipkow & Konrad Slind
3fd66f245ad7 converted IOA with curried function application
clasohm
parents:
diff changeset
     4
    Copyright   1994  TU Muenchen
3fd66f245ad7 converted IOA with curried function application
clasohm
parents:
diff changeset
     5
3fd66f245ad7 converted IOA with curried function application
clasohm
parents:
diff changeset
     6
Action signatures
3fd66f245ad7 converted IOA with curried function application
clasohm
parents:
diff changeset
     7
*)
3fd66f245ad7 converted IOA with curried function application
clasohm
parents:
diff changeset
     8
3fd66f245ad7 converted IOA with curried function application
clasohm
parents:
diff changeset
     9
open Asig;
3fd66f245ad7 converted IOA with curried function application
clasohm
parents:
diff changeset
    10
3fd66f245ad7 converted IOA with curried function application
clasohm
parents:
diff changeset
    11
val asig_projections = [asig_inputs_def, asig_outputs_def, asig_internals_def];
1052
e044350bfa52 Olafs new version.
nipkow
parents: 966
diff changeset
    12
e044350bfa52 Olafs new version.
nipkow
parents: 966
diff changeset
    13
goal Asig.thy "!!a.[| a~:internals(S) ;a~:externals(S)|] ==> a~:actions(S)";
e044350bfa52 Olafs new version.
nipkow
parents: 966
diff changeset
    14
by (asm_full_simp_tac (list_ss addsimps [externals_def,actions_def]) 1);
e044350bfa52 Olafs new version.
nipkow
parents: 966
diff changeset
    15
qed"int_and_ext_is_act";
e044350bfa52 Olafs new version.
nipkow
parents: 966
diff changeset
    16
e044350bfa52 Olafs new version.
nipkow
parents: 966
diff changeset
    17
goal Asig.thy "!!a.[|a:externals(S)|] ==> a:actions(S)";
e044350bfa52 Olafs new version.
nipkow
parents: 966
diff changeset
    18
by (asm_full_simp_tac (list_ss addsimps [externals_def,actions_def]) 1);
e044350bfa52 Olafs new version.
nipkow
parents: 966
diff changeset
    19
qed"ext_is_act";