src/Tools/isac/ProgLang/Isabelle-isac-conflicts
author Walther Neuper <neuper@ist.tugraz.at>
Wed, 25 Aug 2010 16:20:07 +0200
branchisac-update-Isa09-2
changeset 37947 22235e4dbe5f
parent 37906 src/Tools/isac/Scripts/Isabelle-isac-conflicts@e2b23ba9df13
child 60335 7701598a2182
permissions -rw-r--r--
renamed isac's directories and Build_Isac.thy

Scripts --> ProgLang
ME --> Interpret
IsacKnowledge --> Knowledge
     1 6.8.02:
     2 (1) special constants are already defined by Isabelle2002, 
     3     and thus cannot be parsed from terms; eg.
     4 
     5     Reals		thus formula 'subproblem (Reals,...)' not possible
     6     power		thus 'Calculate power' not possible in Scripts
     7     
     8 (2) numerals in (terms and) thms are stored differently:
     9     string	Isabelle term		isac term
    10     123		Bin....			Free("123",_)
    11     0		Const("0",_)		Free("0",_)
    12     0		Const("1",_)		Free("1",_)
    13 
    14 (3) overwritteln functions
    15     find_first		see isac/ROOT.ML
    16 
    17 
    18 Questions for Isabelle team:
    19 
    20 28.02.03
    21 (4)	what is going on in Isa02/Typefix.thy (Markus Wenzen) ?
    22 (5)	how avoid "- x" ---parse--->  Free ("-x", _)  ?