src/Tools/Code_Generator.thy
author wenzelm
Fri, 02 Oct 2009 22:02:11 +0200
changeset 32859 204f749f35a9
parent 31775 2b04504fcb69
child 33561 ab01b72715ef
permissions -rw-r--r--
replaced Proof.get_goal state by Proof.flat_goal state, which provides the standard view on goals for (semi)automated tools;

(*  Title:   Tools/Code_Generator.thy
    Author:  Florian Haftmann, TU Muenchen
*)

header {* Loading the code generator modules *}

theory Code_Generator
imports Pure
uses
  "~~/src/Tools/value.ML"
  "~~/src/Tools/quickcheck.ML"
  "~~/src/Tools/Code/code_preproc.ML" 
  "~~/src/Tools/Code/code_thingol.ML"
  "~~/src/Tools/Code/code_printer.ML"
  "~~/src/Tools/Code/code_target.ML"
  "~~/src/Tools/Code/code_ml.ML"
  "~~/src/Tools/Code/code_haskell.ML"
  "~~/src/Tools/nbe.ML"
begin

setup {*
  Code_Preproc.setup
  #> Code_ML.setup
  #> Code_Haskell.setup
  #> Nbe.setup
*}

end