src/FOL/blastdata.ML
author haftmann
Sun, 11 Jan 2009 14:18:17 +0100
changeset 29441 28d7d7572b81
parent 26287 df8e5362cff9
child 30609 983e8b6e4e69
permissions -rw-r--r--
explicit bookkeeping of intro rules and axiom


(*** Applying BlastFun to create Blast_tac ***)
structure Blast_Data = 
  struct
  type claset	= Cla.claset
  val equality_name = @{const_name "op ="}
  val not_name = @{const_name Not}
  val notE	= @{thm notE}
  val ccontr	= @{thm ccontr}
  val contr_tac = Cla.contr_tac
  val dup_intr	= Cla.dup_intr
  val hyp_subst_tac = Hypsubst.blast_hyp_subst_tac
  val claset	= Cla.claset
  val rep_cs    = Cla.rep_cs
  val cla_modifiers = Cla.cla_modifiers;
  val cla_meth' = Cla.cla_meth'
  end;

structure Blast = BlastFun(Blast_Data);

val Blast_tac = Blast.Blast_tac
and blast_tac = Blast.blast_tac;