src/HOL/PreList.thy
author wenzelm
Mon, 01 Oct 2007 21:08:26 +0200
changeset 24801 f53f6b08e13a
parent 24742 73b8b42a36b6
child 25517 36d710d1dbce
permissions -rw-r--r--
misc tuning and update;

(*  Title:      HOL/PreList.thy
    ID:         $Id$
    Author:     Tobias Nipkow and Markus Wenzel
    Copyright   2000 TU Muenchen
*)

header {* A Basis for Building the Theory of Lists *}

theory PreList
imports ATP_Linkup
uses "Tools/function_package/lexicographic_order.ML"
     "Tools/function_package/fundef_datatype.ML"
begin

text {*
  This is defined separately to serve as a basis for
  theory ToyList in the documentation.
*}

(* The lexicographic_order method and the "fun" command *)
setup LexicographicOrder.setup
setup FundefDatatype.setup

end