TODO.md
author wneuper <Walther.Neuper@jku.at>
Sun, 29 May 2022 19:00:35 +0200
changeset 60434 d780a93d21b3
parent 60427 aa835b157a2a
child 60436 1c8263e775d4
permissions -rw-r--r--
Calculation 1: minimal changes in code + application
wenzelm@60234
     1
* MW: check uses of Unsynchronized.ref vs. Synchronized.var;
wenzelm@60234
     2
wenzelm@60216
     3
* MW: clarify/eliminate Isabelle/Scala add-ons (presently unused)
wenzelm@60216
     4
wenzelm@60216
     5
    diff -r /home/makarius/isabelle/repos-Isabelle2021/src/Pure/build-jars ./src/Pure/build-jars
wenzelm@60216
     6
    11a12
wenzelm@60216
     7
    >   src/Tools/isac/BridgeJEdit/isac.scala
wenzelm@60216
     8
wenzelm@60216
     9
    diff -r /home/makarius/isabelle/repos-Isabelle2021/src/Pure/Tools/scala_project.scala ./src/Pure/Tools/scala_project.scala
wenzelm@60216
    10
    76a77
wenzelm@60216
    11
    >       "src/Tools/isac/etc" -> Path.explode("isabelle.isac"),
wenzelm@60225
    12
wenzelm@60316
    13
* Eliminate Thy_Info.get_theory eventually: should take theory from ancestory
walther@60363
    14
  within current context.
walther@60362
    15
    cf. e587c45cae0f note in Build_Thydata.thy
wenzelm@60316
    16
wenzelm@60295
    17
* Clarify symmetric rule: Thm.apply_attribute Calculation.symmetric thm context (!?);
walther@60369
    18
    ??
wenzelm@60295
    19
wenzelm@60316
    20
* KEStore_Elems: Should we eliminate union_overwrite and use standard namespace merge?
wenzelm@60316
    21
  (Exception: rlss with its special cross-theory merge.)
walther@60376
    22
    ? how adapt the different signatures ?
walther@60376
    23
    union_overwrite: ('a * 'a -> bool) -> 'a list -> 'a list -> 'a list
walther@60376
    24
    merge          : ('a * 'a -> bool) -> 'a list * 'a list -> 'a list
wenzelm@60285
    25
wenzelm@60281
    26
* What is the purpose of "#numeral" instead of plain numeral?
walther@60368
    27
    ??
wenzelm@60281
    28
wenzelm@60281
    29
* Check/clarify Context.theory_name vs. Context.theory_long_name.
walther@60369
    30
    present ISAC assumes 2 sessions in the MathEngine, Specify and Interpret, 
walther@60369
    31
    and all Isac_Knowledge is in session Isac.
walther@60369
    32
    So Context.theory_name suffices
wenzelm@60281
    33
wenzelm@60292
    34
* Eliminate mutable Rewrite_Ord.rew_ord' (!?);
walther@60362
    35
    shall be done in connection with cf. e587c45cae0f note in Build_Thydata.thy
wenzelm@60292
    36
wenzelm@60315
    37
* What is the idea behind KEStore_Elems.add_thes? How to do it properly in current Isabelle?
walther@60365
    38
    https://static.miraheze.org/isacwiki/0/04/Isac-docu.pdf distinguishes 
walther@60365
    39
    several kinds of ISAC users, in particular "math author (Mathematik-Autor)" and
walther@60365
    40
    "course designer (Kurs-Designer)". The latter just adds examples which re-use existing
walther@60365
    41
    knowledge designed by the former. KEStore_Elems.add_thes is an interface for the latter.   
wenzelm@60315
    42
wenzelm@60311
    43
* WN: proper ML antiquotations for "Tactical.Try" etc. --- be careful about unclear situations,
wenzelm@60311
    44
  e.g. "Tactical.Try" vs. "Lucas_Interpreter.Try";
wenzelm@60311
    45
walther@60376
    46
* WN: Avoid Thm.get_name_hint and use Global_Theory.get_thm instead, get theory from References.T
walther@60370
    47
    and push theory through as argument of respective functions.
wenzelm@60304
    48
wenzelm@60241
    49
* WN: more direct logical foundations wrt. Isabelle/HOL, eliminate many axiomatizations
wenzelm@60241
    50
    - quite often "axiomatization ..." can be turned into "lemma ... by auto"
wenzelm@60241
    51
      without further ado;
wenzelm@60241
    52
    - sometimes this requires to use more specific types / type classes;
wenzelm@60241
    53
    - sometimes this requires to use proper definitional mechanisms (e.g. 'primrec', 'fun');
wenzelm@60241
    54
    - a few "hard" cases will remain, to be reconsidered eventually (e.g. differentiation);
wenzelm@60234
    55
wenzelm@60247
    56
* WN: "fun pr_ord" is not required if used with @{make_string}, @{print}, @{print tracing};
walther@60375
    57
    takes only static arguments ----------------^^^^^^^^^^^^^^, not value of "hd_ord (f, g)"
walther@60375
    58
    ? are there better approximations to old output of (*1*) than with (*2*)
walther@60375
    59
    (*1*)val _ = tracing ("hd_ord (f, g)      = " ^ ((pr_ord o hd_ord) (f, g)) );
walther@60375
    60
    (*2*)val _ = @{print tracing}{a = "hd_ord (f, g)      = ", z = hd_ord (f, g)}(**)
walther@60317
    61
wenzelm@60379
    62
wenzelm@60379
    63
* WN: eliminate global flags like "trace_on", replace Unsynchronized.ref by
wenzelm@60379
    64
wenzelm@60379
    65
ML \<open>
wenzelm@60379
    66
  val rewrite_trace = Attrib.setup_config_bool \<^binding>\<open>rewrite_trace\<close> (K false);
wenzelm@60379
    67
\<close>
Walther@60434
    68
Walther@60434
    69
* WN: for calculation by use of Makarius' "problem" as boilerplate clarify
Walther@60434
    70
    - reasons to have some parsers local (initially parse_cas, parse_methods, ml in Outer_Syntax.command..problem)
Walther@60434
    71
    -