TODO.md
author wneuper <Walther.Neuper@jku.at>
Sat, 23 Jul 2022 20:05:25 +0200
changeset 60487 28da4f69d32d
parent 60485 c14f2538095c
child 60492 a4f173bee704
permissions -rw-r--r--
//continued: investigate Outer_Syntax.command \<^command_keyword>?problem?
Walther@60484
     1
* MW: make Outer_Syntax.command \<^command_keyword>\<open>problem\<close> a model for ..\<open>Example\<close>
Walther@60484
     2
  An ML syntax error should be indicated in place (in the string after \<^keyword>\<open>Given\<close> etc)
Walther@60484
     3
  and not on the definition as a whole. 
Walther@60487
     4
    - in MathEngBasic/problem "Outer_Syntax.command \<^command_keyword>\<open>problem\<close>" there are writeln
Walther@60487
     5
      and comments with testdata from "problem pbl_bieg : "Biegelinien"" in Biegelinie.thy
Walther@60487
     6
    - in BridgeJEdit/Calculation.thy are remainings of time-consuming investigations
Walther@60487
     7
    - in MathEngBasic/problem there is guesswork ("TODO") how to reorganise "fun prep_input_PIDE"
Walther@60487
     8
      such that errors in "Given" etc are indicated WITHIN the term.
Walther@60484
     9
Walther@60485
    10
* ?MW?: In Outer_Syntax.command \<^command_keyword>\<open>Example\<close> is there a quick fix
Walther@60485
    11
  for successfully replacing hacked Problem.parse_cas by parse_references_input?
Walther@60487
    12
    How get Token.src for testing purposes?
Walther@60485
    13
    How can Scan.* be traced?
Walther@60485
    14
    (Tracing should help understanding Problem.parse_cas, Problem.parse_model_input which involve Scan.*)
Walther@60485
    15
wenzelm@60234
    16
* MW: check uses of Unsynchronized.ref vs. Synchronized.var;
wenzelm@60234
    17
wenzelm@60216
    18
* MW: clarify/eliminate Isabelle/Scala add-ons (presently unused)
wenzelm@60216
    19
wenzelm@60216
    20
    diff -r /home/makarius/isabelle/repos-Isabelle2021/src/Pure/build-jars ./src/Pure/build-jars
wenzelm@60216
    21
    11a12
wenzelm@60216
    22
    >   src/Tools/isac/BridgeJEdit/isac.scala
wenzelm@60216
    23
wenzelm@60216
    24
    diff -r /home/makarius/isabelle/repos-Isabelle2021/src/Pure/Tools/scala_project.scala ./src/Pure/Tools/scala_project.scala
wenzelm@60216
    25
    76a77
wenzelm@60216
    26
    >       "src/Tools/isac/etc" -> Path.explode("isabelle.isac"),
wenzelm@60225
    27
wenzelm@60316
    28
* Eliminate Thy_Info.get_theory eventually: should take theory from ancestory
walther@60363
    29
  within current context.
walther@60362
    30
    cf. e587c45cae0f note in Build_Thydata.thy
wenzelm@60316
    31
wenzelm@60295
    32
* Clarify symmetric rule: Thm.apply_attribute Calculation.symmetric thm context (!?);
walther@60369
    33
    ??
wenzelm@60295
    34
wenzelm@60316
    35
* KEStore_Elems: Should we eliminate union_overwrite and use standard namespace merge?
wenzelm@60316
    36
  (Exception: rlss with its special cross-theory merge.)
walther@60376
    37
    ? how adapt the different signatures ?
walther@60376
    38
    union_overwrite: ('a * 'a -> bool) -> 'a list -> 'a list -> 'a list
walther@60376
    39
    merge          : ('a * 'a -> bool) -> 'a list * 'a list -> 'a list
wenzelm@60285
    40
wenzelm@60281
    41
* What is the purpose of "#numeral" instead of plain numeral?
walther@60368
    42
    ??
wenzelm@60281
    43
wenzelm@60281
    44
* Check/clarify Context.theory_name vs. Context.theory_long_name.
walther@60369
    45
    present ISAC assumes 2 sessions in the MathEngine, Specify and Interpret, 
walther@60369
    46
    and all Isac_Knowledge is in session Isac.
walther@60369
    47
    So Context.theory_name suffices
wenzelm@60281
    48
wenzelm@60292
    49
* Eliminate mutable Rewrite_Ord.rew_ord' (!?);
walther@60362
    50
    shall be done in connection with cf. e587c45cae0f note in Build_Thydata.thy
wenzelm@60292
    51
wenzelm@60315
    52
* What is the idea behind KEStore_Elems.add_thes? How to do it properly in current Isabelle?
walther@60365
    53
    https://static.miraheze.org/isacwiki/0/04/Isac-docu.pdf distinguishes 
walther@60365
    54
    several kinds of ISAC users, in particular "math author (Mathematik-Autor)" and
walther@60365
    55
    "course designer (Kurs-Designer)". The latter just adds examples which re-use existing
walther@60365
    56
    knowledge designed by the former. KEStore_Elems.add_thes is an interface for the latter.   
wenzelm@60315
    57
wenzelm@60311
    58
* WN: proper ML antiquotations for "Tactical.Try" etc. --- be careful about unclear situations,
wenzelm@60311
    59
  e.g. "Tactical.Try" vs. "Lucas_Interpreter.Try";
wenzelm@60311
    60
walther@60376
    61
* WN: Avoid Thm.get_name_hint and use Global_Theory.get_thm instead, get theory from References.T
walther@60370
    62
    and push theory through as argument of respective functions.
wenzelm@60304
    63
wenzelm@60241
    64
* WN: more direct logical foundations wrt. Isabelle/HOL, eliminate many axiomatizations
wenzelm@60241
    65
    - quite often "axiomatization ..." can be turned into "lemma ... by auto"
wenzelm@60241
    66
      without further ado;
wenzelm@60241
    67
    - sometimes this requires to use more specific types / type classes;
wenzelm@60241
    68
    - sometimes this requires to use proper definitional mechanisms (e.g. 'primrec', 'fun');
wenzelm@60241
    69
    - a few "hard" cases will remain, to be reconsidered eventually (e.g. differentiation);
wenzelm@60234
    70
wenzelm@60247
    71
* WN: "fun pr_ord" is not required if used with @{make_string}, @{print}, @{print tracing};
walther@60375
    72
    takes only static arguments ----------------^^^^^^^^^^^^^^, not value of "hd_ord (f, g)"
walther@60375
    73
    ? are there better approximations to old output of (*1*) than with (*2*)
walther@60375
    74
    (*1*)val _ = tracing ("hd_ord (f, g)      = " ^ ((pr_ord o hd_ord) (f, g)) );
walther@60375
    75
    (*2*)val _ = @{print tracing}{a = "hd_ord (f, g)      = ", z = hd_ord (f, g)}(**)
walther@60317
    76
wenzelm@60379
    77
wenzelm@60379
    78
* WN: eliminate global flags like "trace_on", replace Unsynchronized.ref by
wenzelm@60379
    79
wenzelm@60379
    80
ML \<open>
wenzelm@60379
    81
  val rewrite_trace = Attrib.setup_config_bool \<^binding>\<open>rewrite_trace\<close> (K false);
wenzelm@60379
    82
\<close>
Walther@60434
    83
Walther@60466
    84
* WN: redesign transition from Specification to Solution: how relate 
Walther@60466
    85
    - Formalise.model with variants (e.g. VSCode_Example)
Walther@60466
    86
      reconsider separation of variants F_I, F_II, see MAWEN paper
Walther@60466
    87
    - !?! I_Model of MethodC          (fairly free sequence, dependent on Formalise.model)
Walther@60466
    88
    - !?! formal arguments of program (fixed sequence)
Walther@60437
    89