doc-src/Ref/simplifier.tex
changeset 5575 9ea449586464
parent 5574 620130d6b8e6
child 5776 3bcc29d0c783
--- a/doc-src/Ref/simplifier.tex	Fri Sep 25 15:21:07 1998 +0200
+++ b/doc-src/Ref/simplifier.tex	Fri Sep 25 15:54:29 1998 +0200
@@ -267,15 +267,16 @@
 
 
 \subsection{Accessing the current simpset}
+\label{sec:access-current-simpset}
 
 \begin{ttbox}
-simpset        : unit -> simpset
-simpset_ref    : unit -> simpset ref
+simpset        : unit   -> simpset
+simpset_ref    : unit   -> simpset ref
 simpset_of     : theory -> simpset
 simpset_ref_of : theory -> simpset ref
-SIMPSET        : (simpset -> tactic) -> tactic
-SIMPSET'       : (simpset -> 'a -> tactic) -> 'a -> tactic
 print_simpset  : theory -> unit
+SIMPSET        :(simpset ->       tactic) ->       tactic
+SIMPSET'       :(simpset -> 'a -> tactic) -> 'a -> tactic
 \end{ttbox}
 
 Each theory contains a current simpset\index{simpset!current} stored
@@ -297,14 +298,14 @@
 \item[\ttindexbold{simpset_ref_of} $thy$;] retrieves the simpset
   reference variable from theory $thy$.
 
+\item[\ttindexbold{print_simpset} $thy$;] prints the current simpset
+  of theory $thy$ in the same way as \texttt{print_ss}.
+
 \item[\ttindexbold{SIMPSET} $tacf$, \ttindexbold{SIMPSET'} $tacf'$]
   are tacticals that make a tactic depend on the implicit current
   simpset of the theory associated with the proof state they are
   applied on.
 
-\item[\ttindexbold{print_simpset} $thy$;] prints the current simpset
-  of theory $thy$ in the same way as \texttt{print_ss}.
-
 \end{ttdescription}
 
 \begin{warn}