src/FOL/hypsubstdata.ML
author haftmann
Wed, 11 Oct 2006 14:51:25 +0200
changeset 20974 2a29a21825d1
parent 12353 e4be26df707a
child 21218 38013c3a77a2
permissions -rw-r--r--
slight type signature changes


(** Applying HypsubstFun to generate hyp_subst_tac **)
structure Hypsubst_Data =
struct
  structure Simplifier = Simplifier
  fun dest_eq (Const("op =",T) $ t $ u) = ((t, u), domain_type T)
  val dest_Trueprop = FOLogic.dest_Trueprop
  val dest_imp = FOLogic.dest_imp
  val eq_reflection = eq_reflection
  val rev_eq_reflection = meta_eq_to_obj_eq
  val imp_intr = impI
  val rev_mp = rev_mp
  val subst = subst
  val sym = sym
  val thin_refl = prove_goal (the_context ()) "!!X. [|x=x; PROP W|] ==> PROP W" (K [atac 1]);
end;

structure Hypsubst = HypsubstFun(Hypsubst_Data);
open Hypsubst;