src/Pure/thm.ML
changeset 30342 d32daa6aba3c
parent 30288 a32700e45ab3
child 30466 5f31e24937c5
--- a/src/Pure/thm.ML	Sat Mar 07 21:57:36 2009 +0100
+++ b/src/Pure/thm.ML	Sat Mar 07 22:04:59 2009 +0100
@@ -128,9 +128,6 @@
   val hyps_of: thm -> term list
   val full_prop_of: thm -> term
   val axiom: theory -> string -> thm
-  val def_name: string -> string
-  val def_name_optional: string -> string -> string
-  val get_def: theory -> xstring -> thm
   val axioms_of: theory -> (string * thm) list
   val get_name: thm -> string
   val put_name: string -> thm -> thm
@@ -558,14 +555,6 @@
     | NONE => raise THEORY ("No axiom " ^ quote name, [theory]))
   end;
 
-fun def_name c = c ^ "_def";
-
-fun def_name_optional c "" = def_name c
-  | def_name_optional _ name = name;
-
-fun get_def thy = axiom thy o NameSpace.intern (Theory.axiom_space thy) o def_name;
-
-
 (*return additional axioms of this theory node*)
 fun axioms_of thy =
   map (fn s => (s, axiom thy s)) (Symtab.keys (Theory.axiom_table thy));