TODO.md
author wneuper <walther.neuper@jku.at>
Tue, 01 Jun 2021 15:41:23 +0200
changeset 60317 638d02a9a96a
parent 60278 343efa173023
child 60330 e5e9a6c45597
permissions -rw-r--r--
Test_Some.thy with looping ML<>
     1 * reconsider use of Thy_Info.get_theory: only works with batch-build, not within PIDE session;
     2   + consider in Build_Thydata:  Thy_Hierarchy.insert_errpatIDs
     3   + consider in Biegelinie.thy: KEStore_Elems.add_thes, 
     4 
     5 * MW: ML antiqutation @{rule_thm NAME} to produce (Rule.Thm ("NAME", ThmC.numerals_to_Free "NAME"));
     6 
     7 * MW: more concise "setup KEStore_Elems.add_rlss" etc.;
     8 
     9 * MW: check uses of Unsynchronized.ref vs. Synchronized.var;
    10 
    11 * MW: proper formal name space for rule set, model patterns, methods;
    12   proper setup command;
    13 
    14 * MW: clarify/eliminate Isabelle/Scala add-ons (presently unused)
    15 
    16     diff -r /home/makarius/isabelle/repos-Isabelle2021/src/Pure/build-jars ./src/Pure/build-jars
    17     11a12
    18     >   src/Tools/isac/BridgeJEdit/isac.scala
    19 
    20     diff -r /home/makarius/isabelle/repos-Isabelle2021/src/Pure/Tools/scala_project.scala ./src/Pure/Tools/scala_project.scala
    21     76a77
    22     >       "src/Tools/isac/etc" -> Path.explode("isabelle.isac"),
    23 
    24 
    25 * WN: more direct logical foundations wrt. Isabelle/HOL, eliminate many axiomatizations
    26     - quite often "axiomatization ..." can be turned into "lemma ... by auto"
    27       without further ado;
    28     - sometimes this requires to use more specific types / type classes;
    29     - sometimes this requires to use proper definitional mechanisms (e.g. 'primrec', 'fun');
    30     - a few "hard" cases will remain, to be reconsidered eventually (e.g. differentiation);
    31 
    32 * WN: eliminate ThmC.numerals_to_Free, use existing Isabelle/HOL representation, DONE partially;
    33     - TODO: ? how to do algebraic operations on numerals ? Presburger ? simplifier ?
    34     - TODO: clarify role of type "real" vs. "float" (see theory "HOL-Library.Float");
    35 
    36 * WN: DONE cleanup remaining ^^^ in comments (but sometimes it is just ASCII art), partially;
    37       Left ^^^ in doc-isac (old master-theses, etc: "x^^^#2 + #8" ... # are left, too)
    38       Left "ASCII art" in case of indicating comments pointing at facts ABOVE.
    39 
    40 * WN: "fun pr_ord" is not required if used with @{make_string}, @{print}, @{print tracing};
    41       ???
    42 
    43 * WN: reduce the number of TermC.parse*;
    44     - one or two variants should suffice.