src/HOL/Predicate_Compile.thy
author haftmann
Thu, 23 Feb 2012 21:25:59 +0100
changeset 46635 cde737f9c911
parent 45450 dc2236b19a3d
child 46638 fc315796794e
permissions -rw-r--r--
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy

(*  Title:      HOL/Predicate_Compile.thy
    Author:     Stefan Berghofer, Lukas Bulwahn, Florian Haftmann, TU Muenchen
*)

header {* A compiler for predicates defined by introduction rules *}

theory Predicate_Compile
imports Predicate New_Random_Sequence Quickcheck_Exhaustive
uses
  "Tools/Predicate_Compile/predicate_compile_aux.ML"
  "Tools/Predicate_Compile/predicate_compile_compilations.ML"
  "Tools/Predicate_Compile/core_data.ML"
  "Tools/Predicate_Compile/mode_inference.ML"
  "Tools/Predicate_Compile/predicate_compile_proof.ML"
  "Tools/Predicate_Compile/predicate_compile_core.ML"
  "Tools/Predicate_Compile/predicate_compile_data.ML"
  "Tools/Predicate_Compile/predicate_compile_fun.ML"
  "Tools/Predicate_Compile/predicate_compile_pred.ML"
  "Tools/Predicate_Compile/predicate_compile_specialisation.ML"
  "Tools/Predicate_Compile/predicate_compile.ML"
begin

setup Predicate_Compile.setup

end