TFL/thms.sig
author paulson
Wed, 23 Apr 1997 11:11:38 +0200
changeset 3021 39806db47be9
parent 2112 3902e9af752f
child 3245 241838c01caf
permissions -rw-r--r--
Loop detection: before expanding a haz formula, see whether it is a duplicate and, if so, delete it. Recursion detection: transitivity and similar rules, when applied, put the new formulae at the end of a branch and not at the front (in effect).
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2112
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
     1
signature Thms_sig =
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
     2
sig
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
     3
   type Thm
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
     4
   val WF_INDUCTION_THM:Thm
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
     5
   val WFREC_COROLLARY :Thm
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
     6
   val CUT_DEF         :Thm
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
     7
   val CUT_LEMMA       :Thm
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
     8
   val SELECT_AX       :Thm
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
     9
   
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    10
   val COND_CONG :Thm
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    11
   val LET_CONG  :Thm
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    12
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    13
   val eqT       :Thm
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    14
   val rev_eq_mp :Thm
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    15
   val simp_thm  :Thm
3902e9af752f Konrad Slind's TFL
paulson
parents:
diff changeset
    16
end;