src/HOL/IOA/meta_theory/Asig.ML
author paulson
Tue, 16 Jul 1996 15:49:46 +0200
changeset 1868 836950047d85
parent 1465 5d7a7e439cec
permissions -rw-r--r--
Put in minimal simpset to avoid excessive simplification, just as in revision 1.9 of HOL/indrule.ML
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)";
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1052
diff changeset
    14
by (asm_full_simp_tac (!simpset addsimps [externals_def,actions_def]) 1);
1052
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)";
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1052
diff changeset
    18
by (asm_full_simp_tac (!simpset addsimps [externals_def,actions_def]) 1);
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1266
diff changeset
    19
qed"ext_is_act";