TODO.md
author wneuper <walther.neuper@jku.at>
Tue, 20 Apr 2021 17:21:08 +0200
changeset 60245 62d165c78123
parent 60241 07849bde0c95
child 60247 8b209bda5de5
child 60248 2022f88eee80
permissions -rw-r--r--
more TODO caused by ac7426ab0491
     1 * WN: eliminate "handle _ => ..." (essential for PIDE interaction):
     2     - either use \<^try>CARTOUCHE / \<^can>CARTOUCHE antiquotation
     3     - or more basic try/can combinators;
     4     - or more direct ML of intention;
     5 
     6 * WN: check remaining "for tests only" wrt. \<^isac_test>CARTOUCHE;
     7 
     8 * WN: eliminate odd notation term tricks: replace "^^^" e.g. by "\<up>"
     9   based on "_ powr _" for type real;
    10 
    11     abbreviation real_powr :: "real \<Rightarrow> real \<Rightarrow> real"  (infixr "\<up>" 80)
    12       where "x \<up> a \<equiv> x powr a"
    13 
    14 * WN: purge BridgeLibisabelle: eliminate unused code;
    15 
    16 
    17 * reconsider use of Thy_Info.get_theory: only works with batch-build, not within PIDE session;
    18 
    19 
    20 * MW: check JVM resource requirements of session Isac_Test;
    21 
    22 * MW: check uses of Unsynchronized.ref vs. Synchronized.var;
    23 
    24 * MW: proper formal name space for rule set, model patterns, methods;
    25   proper setup command;
    26 
    27 * MW: clarify/eliminate Isabelle/Scala add-ons (presently unused)
    28 
    29     diff -r /home/makarius/isabelle/repos-Isabelle2021/src/Pure/build-jars ./src/Pure/build-jars
    30     11a12
    31     >   src/Tools/isac/BridgeJEdit/isac.scala
    32 
    33     diff -r /home/makarius/isabelle/repos-Isabelle2021/src/Pure/Tools/scala_project.scala ./src/Pure/Tools/scala_project.scala
    34     76a77
    35     >       "src/Tools/isac/etc" -> Path.explode("isabelle.isac"),
    36 
    37 
    38 * WN: more direct logical foundations wrt. Isabelle/HOL, eliminate many axiomatizations
    39     - quite often "axiomatization ..." can be turned into "lemma ... by auto"
    40       without further ado;
    41     - sometimes this requires to use more specific types / type classes;
    42     - sometimes this requires to use proper definitional mechanisms (e.g. 'primrec', 'fun');
    43     - a few "hard" cases will remain, to be reconsidered eventually (e.g. differentiation);
    44 
    45 * WN: eliminate ThmC.numerals_to_Free, use existing Isabelle/HOL representation
    46     - clarify role of type "real" vs. "float" (see theory "HOL-Library.Float");
    47 
    48 * WN: investigate errors further which popped up in rewriting when replacing ^^^ by \<up> in ac7426ab0491.
    49       The errors occur with examples in test/../poly.sml, which do not work properly in isabisac20 either.