src/HOL/IOA/Asig.ML
author wenzelm
Tue, 04 Dec 2001 02:01:49 +0100
changeset 12356 ce0961b1f536
parent 5143 b94cd208f073
child 17288 aa3833fb7bee
permissions -rw-r--r--
removed \newcommand{\isasymone};

(*  Title:      HOL/IOA/Asig.ML
    ID:         $Id$
    Author:     Tobias Nipkow & Konrad Slind
    Copyright   1994  TU Muenchen

Action signatures
*)

open Asig;

val asig_projections = [asig_inputs_def, asig_outputs_def, asig_internals_def];

Goal "[| a~:internals(S) ;a~:externals(S)|] ==> a~:actions(S)";
by (asm_full_simp_tac (simpset() addsimps [externals_def,actions_def]) 1);
qed"int_and_ext_is_act";

Goal "[|a:externals(S)|] ==> a:actions(S)";
by (asm_full_simp_tac (simpset() addsimps [externals_def,actions_def]) 1);
qed"ext_is_act";