src/HOL/ex/SVC_Oracle.thy
author wenzelm
Tue, 31 Jul 2007 19:40:26 +0200
changeset 24095 785c3cd7fcb5
parent 20813 379ce56e5dc2
child 24470 41c81e23c08d
permissions -rw-r--r--
moved lin_arith stuff to Tools/lin_arith.ML;

(*  Title:      HOL/ex/SVC_Oracle.thy
    ID:         $Id$
    Author:     Lawrence C Paulson
    Copyright   1999  University of Cambridge

Based upon the work of Søren T. Heilmann.
*)

header {* Installing an oracle for SVC (Stanford Validity Checker) *}

theory SVC_Oracle
imports Main
uses "svc_funcs.ML" ("svc_oracle.ML")
begin

consts
  iff_keep :: "[bool, bool] => bool"
  iff_unfold :: "[bool, bool] => bool"

hide const iff_keep iff_unfold

oracle
  svc_oracle ("term") = Svc.oracle

use "svc_oracle.ML"

end