src/Tools/isac/Interpret/Interpret.thy
author Walther Neuper <neuper@ist.tugraz.at>
Sun, 16 Jun 2013 12:31:41 +0200
changeset 48880 ea0c337066d9
parent 48761 4162c4f6f897
child 55275 f08422eeef24
permissions -rw-r--r--
Isabelle2011 --> 2012 intermediate

Made paths absolute wrt ~~, which probably will be shortened later again.
'isabelle usedir -b HOL Isac' successfully creates a heap;
still no 'thehier' created in 'Knowledge/Build_Thydata.thy',
because these are not required by the math-engine.
neuper@41905
     1
(* Title:  collect all defitions for the Lucas-Interpreter
neuper@41905
     2
   Author: Walther Neuper 110226
neuper@41905
     3
   (c) due to copyright terms
neuper@41905
     4
 *)
neuper@41905
     5
neuper@48761
     6
theory Interpret
neuper@48880
     7
imports "~~/src/Tools/isac/ProgLang/ProgLang"
neuper@48880
     8
uses 
neuper@48880
     9
  ("~~/src/Tools/isac/Interpret/mstools.sml") 
neuper@48880
    10
  ("~~/src/Tools/isac/Interpret/ctree.sml") 
neuper@48880
    11
  ("~~/src/Tools/isac/Interpret/ptyps.sml") 
neuper@48880
    12
  ("~~/src/Tools/isac/Interpret/generate.sml")
neuper@48880
    13
  ("~~/src/Tools/isac/Interpret/calchead.sml") 
neuper@48880
    14
  ("~~/src/Tools/isac/Interpret/appl.sml") 
neuper@48880
    15
  ("~~/src/Tools/isac/Interpret/rewtools.sml") 
neuper@48880
    16
  ("~~/src/Tools/isac/Interpret/script.sml")
neuper@48880
    17
  ("~~/src/Tools/isac/Interpret/solve.sml") 
neuper@48880
    18
  ("~~/src/Tools/isac/Interpret/inform.sml") 
neuper@48880
    19
  ("~~/src/Tools/isac/Interpret/mathengine.sml")
neuper@41905
    20
begin
neuper@48880
    21
  use "~~/src/Tools/isac/Interpret/mstools.sml"
neuper@48880
    22
  use "~~/src/Tools/isac/Interpret/ctree.sml"
neuper@48880
    23
  use "~~/src/Tools/isac/Interpret/ptyps.sml"
neuper@48880
    24
  use "~~/src/Tools/isac/Interpret/generate.sml"
neuper@48880
    25
  use "~~/src/Tools/isac/Interpret/calchead.sml"
neuper@48880
    26
  use "~~/src/Tools/isac/Interpret/appl.sml"
neuper@48880
    27
  use "~~/src/Tools/isac/Interpret/rewtools.sml"
neuper@48880
    28
  use "~~/src/Tools/isac/Interpret/script.sml"
neuper@48880
    29
  use "~~/src/Tools/isac/Interpret/solve.sml"
neuper@48880
    30
  use "~~/src/Tools/isac/Interpret/inform.sml"
neuper@48880
    31
  use "~~/src/Tools/isac/Interpret/mathengine.sml"
neuper@41905
    32
end