TODO.md
author wneuper <walther.neuper@jku.at>
Wed, 21 Apr 2021 10:09:14 +0200
changeset 60249 e23a1e79b892
parent 60247 8b209bda5de5
parent 60248 2022f88eee80
child 60250 18a90cd37392
child 60251 eb9be9ce654e
permissions -rw-r--r--
merged
     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: purge BridgeLibisabelle: eliminate unused code;
     9 
    10 
    11 * reconsider use of Thy_Info.get_theory: only works with batch-build, not within PIDE session;
    12 
    13 
    14 * MW: ML antiqutation @{rule_thm NAME} to produce (Rule.Thm ("NAME", ThmC.numerals_to_Free "NAME"));
    15 
    16 * MW: more concise "setup KEStore_Elems.add_rlss" etc.;
    17 
    18 * MW: eliminate low-level TextIO (not portable);
    19 
    20 * MW: check uses of Unsynchronized.ref vs. Synchronized.var;
    21 
    22 * MW: proper formal name space for rule set, model patterns, methods;
    23   proper setup command;
    24 
    25 * MW: clarify/eliminate Isabelle/Scala add-ons (presently unused)
    26 
    27     diff -r /home/makarius/isabelle/repos-Isabelle2021/src/Pure/build-jars ./src/Pure/build-jars
    28     11a12
    29     >   src/Tools/isac/BridgeJEdit/isac.scala
    30 
    31     diff -r /home/makarius/isabelle/repos-Isabelle2021/src/Pure/Tools/scala_project.scala ./src/Pure/Tools/scala_project.scala
    32     76a77
    33     >       "src/Tools/isac/etc" -> Path.explode("isabelle.isac"),
    34 
    35 
    36 * WN: more direct logical foundations wrt. Isabelle/HOL, eliminate many axiomatizations
    37     - quite often "axiomatization ..." can be turned into "lemma ... by auto"
    38       without further ado;
    39     - sometimes this requires to use more specific types / type classes;
    40     - sometimes this requires to use proper definitional mechanisms (e.g. 'primrec', 'fun');
    41     - a few "hard" cases will remain, to be reconsidered eventually (e.g. differentiation);
    42     - abbreviation real_powr :: "real \<Rightarrow> real \<Rightarrow> real"  (infixr "\<up>" 80)
    43       where "x \<up> a \<equiv> x powr a"
    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.
    50 
    51 * WN: cleanup remaining ^^^ in comments (but sometimes it is just ASCII art);
    52 
    53 * WN: simplify const names like "is'_expanded": no need to imitate the escape of mixfix syntax;
    54 
    55 * WN: proper statement for rcancel_den ("not" is a free variable!?!!):
    56     rcancel_den:             "not(a=0) ==> a * (b / a) = b" and
    57 
    58 * WN: "fun pr_ord" is not required if used with @{make_string}, @{print}, @{print tracing};
    59