Theory PreList

Up to index of Isabelle/HOL

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

(*  Title:      HOL/PreList.thy
    ID:         $Id: PreList.thy,v 1.45 2007/09/27 15:55:28 paulson Exp $
    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