src/FOL/blastdata.ML
author haftmann
Wed, 02 Apr 2008 15:58:26 +0200
changeset 26507 6da615cef733
parent 26287 df8e5362cff9
child 30609 983e8b6e4e69
permissions -rw-r--r--
moved some code lemmas for Numerals here


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