src/HOL/ex/svc_test.thy
author berghofe
Fri, 02 Dec 2005 13:10:12 +0100
changeset 18331 eb3a7d3d874b
parent 17416 5093a587da16
child 20807 bd3b60f9a343
permissions -rw-r--r--
Factored out proof for normalization of applications (norm_list).


(* $Id$ *)

header {* Demonstrating the interface SVC *}

theory svc_test
imports SVC_Oracle
begin

syntax
  "<->" :: "[bool, bool] => bool"    (infixr 25)

translations
  "x <-> y" => "x = y"

end