src/HOL/ex/svc_test.thy
author webertj
Mon, 10 Jul 2006 21:02:29 +0200
changeset 20066 b045b835cb3b
parent 17416 5093a587da16
child 20807 bd3b60f9a343
permissions -rw-r--r--
minor optimization wrt. certifying terms


(* $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