test/Tools/isac/Knowledge/eqsystem-1.sml
author wneuper <Walther.Neuper@jku.at>
Fri, 05 Aug 2022 08:45:37 +0200
changeset 60516 795d1352493a
parent 60509 2e0b7ca391dc
child 60556 486223010ea8
permissions -rw-r--r--
finish Calc_Binop, add signature EXAMPLE
walther@60347
     1
(* Title: Knowledge/eqsystem-1.sml
walther@60347
     2
   author: Walther Neuper 050826,
walther@60347
     3
   (c) due to copyright terms
walther@60347
     4
*)
walther@60347
     5
walther@60347
     6
"-----------------------------------------------------------------";
walther@60347
     7
"table of contents -----------------------------------------------";
walther@60347
     8
"-----------------------------------------------------------------";
walther@60347
     9
"----------- occur_exactly_in ------------------------------------";
walther@60347
    10
"----------- problems --------------------------------------------";
walther@60347
    11
"----------- rewrite-order ord_simplify_System -------------------";
walther@60347
    12
"----------- rewrite in [EqSystem,normalise,2x2] -----------------";
walther@60347
    13
"----------- rewrite example from 2nd [EqSystem,normalise,2x2] ---";
walther@60347
    14
"----------- rewrite in [EqSystem,top_down_substitution,2x2] -----";
walther@60347
    15
"----------- rewrite in [EqSystem,normalise,4x4] -----------------";
walther@60347
    16
"----------- script [EqSystem,top_down_substitution,2x2] Vers.1 --";
walther@60347
    17
"----------- refine [linear,system]-------------------------------";
walther@60347
    18
"----------- refine [2x2,linear,system] search error--------------";
walther@60347
    19
"----------- me [EqSystem,normalise,2x2] -------------------------";
walther@60347
    20
(*^^^--- eqsystem-1.sml #####################################################################
walther@60347
    21
  vvv--- eqsystem-2.sml #####################################################################*)
walther@60347
    22
"----------- me [linear,system] ..normalise..top_down_sub..-------";
walther@60347
    23
"----------- all systems from Biegelinie -------------------------";
walther@60347
    24
"----------- 4x4 systems from Biegelinie -------------------------";
walther@60347
    25
"-----------------------------------------------------------------";
walther@60347
    26
"-----------------------------------------------------------------";
walther@60347
    27
"-----------------------------------------------------------------";
walther@60347
    28
walther@60347
    29
val thy = @{theory "EqSystem"};
walther@60347
    30
val ctxt = Proof_Context.init_global thy;
walther@60347
    31
walther@60347
    32
"----------- occur_exactly_in ------------------------------------";
walther@60347
    33
"----------- occur_exactly_in ------------------------------------";
walther@60347
    34
"----------- occur_exactly_in ------------------------------------";
walther@60347
    35
val all = [TermC.str2term"c", TermC.str2term"c_2", TermC.str2term"c_3"];
walther@60347
    36
val t = TermC.str2term"0 = - 1 * q_0 * L \<up> 2 / 2 + L * c + c_2";
walther@60347
    37
walther@60347
    38
if occur_exactly_in [TermC.str2term"c", TermC.str2term"c_2"] all t
walther@60347
    39
then () else error "eqsystem.sml occur_exactly_in 1";
walther@60347
    40
walther@60347
    41
if not (occur_exactly_in [TermC.str2term"c", TermC.str2term"c_2", TermC.str2term"c_3"] all t)
walther@60347
    42
then () else error "eqsystem.sml occur_exactly_in 2";
walther@60347
    43
walther@60347
    44
if not (occur_exactly_in [TermC.str2term"c_2"] all t)
walther@60347
    45
then () else error "eqsystem.sml occur_exactly_in 3";
walther@60347
    46
walther@60347
    47
val t = TermC.str2term"[c,c_2] from [c,c_2,c_3] occur_exactly_in - 1 * q_0 * L \<up> 2 / 2 + L * c + c_2";
walther@60347
    48
eval_occur_exactly_in 0 "EqSystem.occur_exactly_in" t 0;
walther@60347
    49
val SOME (str, t') = eval_occur_exactly_in 0 "EqSystem.occur_exactly_in" t 0;
walther@60347
    50
if str = "[c, c_2] from [c, c_2,\n" ^
walther@60347
    51
  "               c_3] occur_exactly_in - 1 * q_0 * L \<up> 2 / 2 + L * c + c_2 = True"
walther@60347
    52
then () else error "eval_occur_exactly_in [c, c_2]";
walther@60347
    53
walther@60347
    54
val t = TermC.str2term ("[c,c_2,c_3] from [c,c_2,c_3] occur_exactly_in " ^
walther@60347
    55
		  "- 1 * q_0 * L \<up> 2 / 2 + L * c + c_2");
walther@60347
    56
val SOME (str, t') = eval_occur_exactly_in 0 "EqSystem.occur_exactly_in" t 0;
walther@60347
    57
if str = "[c, c_2,\n c_3] from [c, c_2,\n" ^
walther@60347
    58
"            c_3] occur_exactly_in - 1 * q_0 * L \<up> 2 / 2 + L * c + c_2 = False"
walther@60347
    59
then () else error "eval_occur_exactly_in [c, c_2, c_3]";
walther@60347
    60
walther@60347
    61
val t = TermC.str2term"[c_2] from [c,c_2,c_3] occur_exactly_in \
walther@60347
    62
		\- 1 * q_0 * L \<up> 2 / 2 + L * c + c_2";
walther@60347
    63
val SOME (str, t') = eval_occur_exactly_in 0 "EqSystem.occur_exactly_in" t 0;
walther@60347
    64
if str = "[c_2] from [c, c_2,\n" ^
walther@60347
    65
  "            c_3] occur_exactly_in - 1 * q_0 * L \<up> 2 / 2 + L * c + c_2 = False"
walther@60347
    66
then () else error "eval_occur_exactly_in [c, c_2, c_3]";
walther@60347
    67
walther@60347
    68
val t = TermC.str2term"[] from [c,c_2,c_3] occur_exactly_in 0";
walther@60347
    69
val SOME (str, t') = eval_occur_exactly_in 0 "EqSystem.occur_exactly_in" t 0;
walther@60347
    70
if str = "[] from [c, c_2, c_3] occur_exactly_in 0 = True" then ()
walther@60347
    71
else error "eval_occur_exactly_in [c, c_2, c_3]";
walther@60347
    72
walther@60347
    73
val t = 
walther@60347
    74
    TermC.str2term
walther@60347
    75
	"[] from [c, c_2, c_3, c_4] occur_exactly_in - 1 * (q_0 * L \<up> 2) /2";
walther@60347
    76
val SOME (str, t') = eval_occur_exactly_in 0 "EqSystem.occur_exactly_in" t 0;
walther@60347
    77
if str = "[] from [c, c_2, c_3, c_4] occur_exactly_in \
walther@60347
    78
	 \- 1 * (q_0 * L \<up> 2) / 2 = True" then ()
walther@60347
    79
else error "eval_occur_exactly_in [c, c_2, c_3, c_4]";
walther@60347
    80
walther@60347
    81
"----------- problems --------------------------------------------";
walther@60347
    82
"----------- problems --------------------------------------------";
walther@60347
    83
"----------- problems --------------------------------------------";
walther@60347
    84
val t = TermC.str2term "Length [x+y=1,y=2] = 2";
walther@60347
    85
TermC.atomty t;
walther@60347
    86
val testrls = Rule_Set.append_rules "testrls" Rule_Set.empty 
walther@60347
    87
			 [(Thm ("LENGTH_NIL", @{thm LENGTH_NIL})),
walther@60347
    88
			  (Thm ("LENGTH_CONS", @{thm LENGTH_CONS})),
Walther@60516
    89
			  Eval (\<^const_name>\<open>plus\<close>, Calc_Binop.numeric "#add_"),
walther@60347
    90
			  Eval (\<^const_name>\<open>HOL.eq\<close>,eval_equal "#equal_")
walther@60347
    91
			  ];
Walther@60500
    92
val SOME (t',_) = rewrite_set_ ctxt false testrls t;
walther@60347
    93
if UnparseC.term t' = "True" then () 
walther@60347
    94
else error "eqsystem.sml: length_ [x+y=1,y=2] = 2";
walther@60347
    95
Walther@60424
    96
val SOME t = TermC.parseNEW ctxt "solution LL";
Walther@60424
    97
TermC.atomty t;
Walther@60424
    98
val SOME t = TermC.parseNEW ctxt "solution LL";
Walther@60424
    99
TermC.atomty t;
walther@60347
   100
walther@60347
   101
val t = TermC.str2term 
walther@60347
   102
"(tl (tl (tl v_s))) from v_s occur_exactly_in (NTH 1 (e_s::bool list))";
walther@60347
   103
TermC.atomty t;
walther@60347
   104
val t = TermC.str2term ("(tl (tl (tl [c, c_2, c_3, c_4]))) from [c, c_2, c_3, c_4] occur_exactly_in " ^
walther@60347
   105
  "(NTH 1 [c_4 = 1, 2 = 2, 3 = 3, 4 = 4])");
walther@60347
   106
(*----- broken in child of.1790e1073acc : eliminate "handle _ => ..." from Rewrite.rewrite -----\\
walther@60347
   107
        assume flawed test setup hidden by "handle _ => ..."
walther@60347
   108
        ERROR rewrite__set_ called with 'Erls' for '1 < 1'
walther@60347
   109
val SOME (t,_) = 
Walther@60500
   110
    rewrite_set_ ctxt true 
walther@60347
   111
		 (Rule_Set.append_rules "prls_" Rule_Set.empty 
walther@60347
   112
			     [Thm ("NTH_CONS",ThmC.numerals_to_Free @{thm NTH_CONS}),
walther@60347
   113
			      Thm ("NTH_NIL",ThmC.numerals_to_Free @{thm NTH_NIL}),
walther@60347
   114
			      Thm ("TL_CONS",ThmC.numerals_to_Free @{thm tl_Cons}),
walther@60347
   115
			      Thm ("TL_NIL",ThmC.numerals_to_Free @{thm tl_Nil}),
walther@60347
   116
			      Eval ("EqSystem.occur_exactly_in", eval_occur_exactly_in "#eval_occur_exactly_in_")
walther@60347
   117
			      ]) t;
walther@60347
   118
if t = @{term True} then () 
walther@60347
   119
else error "eqsystem.sml ..occur_exactly_in (nth_ 1 [c_4..";
walther@60347
   120
        broken in child of.1790e1073acc : eliminate "handle _ => ..." from Rewrite.rewrite ---//*)
walther@60347
   121
walther@60347
   122
walther@60347
   123
"----------- rewrite-order ord_simplify_System -------------------";
walther@60347
   124
"----------- rewrite-order ord_simplify_System -------------------";
walther@60347
   125
"----------- rewrite-order ord_simplify_System -------------------";
walther@60347
   126
"M_b x = c * x + - 1 * q_0 * (x \<up> 2 / 2) + c_2";
walther@60347
   127
"--- add.commute ---"; (* ... add.commute cf. b42e334c97ee *)
walther@60347
   128
if ord_simplify_System false thy [] (TermC.str2term"- 1 * q_0 * (x \<up> 2 / 2)", 
walther@60347
   129
				       TermC.str2term"c * x") then ()
walther@60347
   130
else error "integrate.sml, (- 1 * q_0 * (x \<up> 2 / 2)) < (c * x) not#1";
walther@60347
   131
walther@60347
   132
if ord_simplify_System false thy [] (TermC.str2term"- 1 * q_0 * (x \<up> 2 / 2)", 
walther@60347
   133
				       TermC.str2term"c_2") then ()
walther@60347
   134
else error "integrate.sml, (- 1 * q_0 * (x \<up> 2 / 2)) < (c_2) not#2";
walther@60347
   135
walther@60347
   136
if ord_simplify_System false thy [] (TermC.str2term"c * x", 
walther@60347
   137
				       TermC.str2term"c_2") then ()
walther@60347
   138
else error "integrate.sml, (c * x) < (c_2) not#3";
walther@60347
   139
walther@60347
   140
"--- mult.commute ---";
walther@60347
   141
if ord_simplify_System false thy [] (TermC.str2term"x * c", 
walther@60347
   142
				       TermC.str2term"c * x") then ()
walther@60347
   143
else error "integrate.sml, (x * c) < (c * x) not#4";
walther@60347
   144
walther@60347
   145
if ord_simplify_System false thy [] (TermC.str2term"- 1 * q_0 * (x \<up> 2 / 2) * c", 
walther@60347
   146
				       TermC.str2term"- 1 * q_0 * c * (x \<up> 2 / 2)") 
walther@60347
   147
then () else error "integrate.sml, (. * .) < (. * .) not#5";
walther@60347
   148
walther@60347
   149
if ord_simplify_System false thy [] (TermC.str2term"- 1 * q_0 * (x \<up> 2 / 2) * c", 
walther@60347
   150
				       TermC.str2term"c * - 1 * q_0 * (x \<up> 2 / 2)") 
walther@60347
   151
then () else error "integrate.sml, (. * .) < (. * .) not#6";
walther@60347
   152
walther@60347
   153
walther@60347
   154
"----------- rewrite in [EqSystem,normalise,2x2] -----------------";
walther@60347
   155
"----------- rewrite in [EqSystem,normalise,2x2] -----------------";
walther@60347
   156
"----------- rewrite in [EqSystem,normalise,2x2] -----------------";
walther@60347
   157
val t = TermC.str2term"[0 = - 1 * q_0 * L \<up> 2 / 2 + L * c + c_2,\
walther@60347
   158
	        \0 = - 1 * q_0 * 0 \<up> 2 / 2 + 0 * c + c_2]";
walther@60347
   159
val bdvs = [(TermC.str2term"bdv_1",TermC.str2term"c"),
walther@60347
   160
	    (TermC.str2term"bdv_2",TermC.str2term"c_2")];
Walther@60500
   161
val SOME(t,_)= rewrite_set_inst_ ctxt true bdvs simplify_System_parenthesized t;
walther@60347
   162
if UnparseC.term t = "[0 = - 1 * q_0 * L \<up> 2 / 2 + (L * c + c_2), 0 = c_2]"
walther@60347
   163
then () else error "eqsystem.sml rewrite in 2x2 simplify_System_par.1";
walther@60347
   164
Walther@60500
   165
val SOME (t,_) = rewrite_set_inst_ ctxt true bdvs isolate_bdvs t;
walther@60347
   166
if UnparseC.term t = "[L * c + c_2 = 0 + - 1 * (- 1 * q_0 * L \<up> 2 / 2), c_2 = 0]"
walther@60347
   167
then () else error "eqsystem.sml rewrite in 2x2 isolate_bdvs";
walther@60347
   168
Walther@60500
   169
val SOME(t,_)= rewrite_set_inst_ ctxt true bdvs simplify_System t;
walther@60347
   170
if UnparseC.term t = "[L * c + c_2 = q_0 * L \<up> 2 / 2, c_2 = 0]"
walther@60347
   171
then () else error "eqsystem.sml rewrite in 2x2 simplify_System_par.2";
walther@60347
   172
walther@60347
   173
"--- 3--- see EqSystem.thy (*..if replaced by 'and' ...*)";
Walther@60500
   174
val SOME (t,_) = rewrite_set_ ctxt true order_system t;
walther@60347
   175
if UnparseC.term t = "[c_2 = 0, L * c + c_2 = q_0 * L \<up> 2 / 2]"
walther@60347
   176
then () else error "eqsystem.sml rewrite in 2x2 simplify_System_par.3";
walther@60347
   177
walther@60347
   178
"----------- rewrite example from 2nd [EqSystem,normalise,2x2] ---";
walther@60347
   179
"----------- rewrite example from 2nd [EqSystem,normalise,2x2] ---";
walther@60347
   180
"----------- rewrite example from 2nd [EqSystem,normalise,2x2] ---";
walther@60347
   181
val thy = @{theory "Isac_Knowledge"} (*because of Undeclared constant "Biegelinie.EI*);
Walther@60500
   182
val ctxt = Proof_Context.init_global thy;
walther@60347
   183
val t = 
walther@60347
   184
    TermC.str2term"[0 = c_2 + c * 0 + 1 / EI * (L * q_0 / 12 * 0 \<up> 3 +         \
walther@60347
   185
	    \                                     - 1 * q_0 / 24 * 0 \<up> 4),\
walther@60347
   186
	    \ 0 = c_2 + c * L + 1 / EI * (L * q_0 / 12 * L \<up> 3 +         \
walther@60347
   187
	    \                                     - 1 * q_0 / 24 * L \<up> 4)]";
Walther@60500
   188
val SOME (t, _) = rewrite_set_ ctxt true norm_Rational t;
walther@60347
   189
if UnparseC.term t = (*BEFORE "eliminate ThmC.numerals_to_Free"..
walther@60347
   190
                      "[c_2 = 0, 0 = q_0 * L \<up> 4 / (24 * EI) + (L * c + c_2)]"*)
walther@60347
   191
                      "[0 = c_2, 0 = (24 * c_2 + 24 * L * c + L \<up> 4 * q_0) / 24]"
walther@60347
   192
then () else error "eqsystem.sml rewrite in 2x2 simplify_System_par.0b";
walther@60347
   193
Walther@60500
   194
val SOME(t, _)= rewrite_set_inst_ ctxt true bdvs simplify_System_parenthesized t;
walther@60347
   195
if UnparseC.term t = (*BEFORE "eliminate ThmC.numerals_to_Free"..
walther@60347
   196
                       "[c_2 = 0, 0 = q_0 * L \<up> 4 / (24 * EI) + (L * c + c_2)]"*)
walther@60347
   197
                       "[0 = c_2, 0 = q_0 * L \<up> 4 / 24 + (L * c + c_2)]"
walther@60347
   198
then () else error "eqsystem.sml rewrite in 2x2 simplify_System_par.1b";
walther@60347
   199
Walther@60500
   200
val SOME (t,_) = rewrite_set_inst_ ctxt true bdvs isolate_bdvs t;
walther@60347
   201
if UnparseC.term t = (*BEFORE "eliminate ThmC.numerals_to_Free"..
walther@60347
   202
                       "[c_2 = 0, L * c + c_2 = 0 + - 1 * (q_0 * L \<up> 4 / (24 * EI))]"*)
walther@60347
   203
                       "[c_2 = 0, L * c + c_2 = 0 + - 1 * (q_0 * L \<up> 4 / 24)]"
walther@60347
   204
then () else error "eqsystem.sml rewrite in 2x2 isolate_bdvs b";
walther@60347
   205
Walther@60500
   206
val SOME(t,_)= rewrite_set_inst_ ctxt true bdvs simplify_System t;
walther@60347
   207
if UnparseC.term t = (*BEFORE "eliminate ThmC.numerals_to_Free"..
walther@60347
   208
                       "[c_2 = 0, L * c + c_2 = - 1 * q_0 * L \<up> 4 / (24 * EI)]"*)
walther@60347
   209
                       "[c_2 = 0, L * c + c_2 = - 1 * q_0 * L \<up> 4 / 24]"
walther@60347
   210
then () else error "eqsystem.sml rewrite in 2x2 simplify_System.2b";
walther@60347
   211
Walther@60500
   212
val xxx = rewrite_set_ ctxt true order_system t;
walther@60347
   213
if is_none xxx
walther@60347
   214
then () else error "eqsystem.sml rewrite in 2x2 simplify_System.3b";
walther@60347
   215
walther@60347
   216
walther@60347
   217
"----------- rewrite in [EqSystem,top_down_substitution,2x2] -----";
walther@60347
   218
"----------- rewrite in [EqSystem,top_down_substitution,2x2] -----";
walther@60347
   219
"----------- rewrite in [EqSystem,top_down_substitution,2x2] -----";
walther@60347
   220
val e1__ = TermC.str2term "c_2 = 77";
walther@60347
   221
val e2__ = TermC.str2term "L * c + c_2 = q_0 * L \<up> 2 / 2";
walther@60347
   222
val bdvs = [(TermC.str2term"bdv_1",TermC.str2term"c"),
walther@60347
   223
	    (TermC.str2term"bdv_2",TermC.str2term"c_2")];
Walther@60509
   224
val SOME (e2__,_) = rewrite_terms_ ctxt Rewrite_Ord.function_empty Rule_Set.Empty [e1__] e2__;
walther@60347
   225
if UnparseC.term e2__ = "L * c + 77 = q_0 * L \<up> 2 / 2" then ()
walther@60347
   226
else error "eqsystem.sml top_down_substitution,2x2] subst";
walther@60347
   227
walther@60347
   228
val SOME (e2__,_) = 
Walther@60500
   229
    rewrite_set_inst_ ctxt true bdvs simplify_System_parenthesized e2__;
walther@60347
   230
if UnparseC.term e2__ = "77 + L * c = q_0 * L \<up> 2 / 2" then ()
walther@60347
   231
else error "eqsystem.sml top_down_substitution,2x2] simpl_par";
walther@60347
   232
Walther@60500
   233
val SOME (e2__,_) = rewrite_set_inst_ ctxt true bdvs isolate_bdvs e2__;
walther@60347
   234
if UnparseC.term e2__ = "c = (q_0 * L \<up> 2 / 2 + - 1 * 77) / L" then ()
walther@60347
   235
else error "eqsystem.sml top_down_substitution,2x2] isolate";
walther@60347
   236
walther@60347
   237
val t = TermC.str2term "[c_2 = 77, c = (q_0 * L \<up> 2 / 2 + - 1 * 77) / L]";
Walther@60500
   238
val SOME (t,_) = rewrite_set_ ctxt true order_system t;
walther@60347
   239
if UnparseC.term t = "[c = (q_0 * L \<up> 2 / 2 + - 1 * 77) / L, c_2 = 77]" then ()
walther@60347
   240
else error "eqsystem.sml top_down_substitution,2x2] order_system";
walther@60347
   241
walther@60347
   242
if not (ord_simplify_System
walther@60347
   243
	    false thy [] 
walther@60347
   244
	    (TermC.str2term"[c_2 = 77, c = (q_0 * L \<up> 2 / 2 + - 1 * 77) / L]", 
walther@60347
   245
	     TermC.str2term"[c = (q_0 * L \<up> 2 / 2 + - 1 * 77) / L, c_2 = 77]")) 
walther@60347
   246
then () else error "eqsystem.sml, order_result rew_ord";
walther@60347
   247
walther@60347
   248
walther@60347
   249
"----------- rewrite in [EqSystem,normalise,4x4] -----------------";
walther@60347
   250
"----------- rewrite in [EqSystem,normalise,4x4] -----------------";
walther@60347
   251
"----------- rewrite in [EqSystem,normalise,4x4] -----------------";
walther@60347
   252
(*STOPPED.WN06?: revise rewrite in [EqSystem,normalise,4x4] from before 0609*)
walther@60347
   253
val t = TermC.str2term (
walther@60347
   254
  "[(0::real) = - 1 * q_0 * 0 \<up> 2 / 2 + 0 * c_3 + c_4, " ^ 
walther@60347
   255
  "(0::real) = - 1 * q_0 * L \<up> 2 / 2 + L * c_3 + c_4, " ^ 
walther@60347
   256
  "c + c_2 + c_3 + c_4 = 0, " ^ 
walther@60347
   257
  "c_2 + c_3 + c_4 = 0]");
walther@60347
   258
val bdvs = [(TermC.str2term"bdv_1::real",TermC.str2term"c::real"),
walther@60347
   259
	    (TermC.str2term"bdv_2::real",TermC.str2term"c_2::real"),
walther@60347
   260
	    (TermC.str2term"bdv_3::real",TermC.str2term"c_3::real"),
walther@60347
   261
	    (TermC.str2term"bdv_4::real",TermC.str2term"c_4::real")];
walther@60347
   262
val SOME (t, _) = 
Walther@60500
   263
    rewrite_set_inst_ ctxt true bdvs simplify_System_parenthesized t;
walther@60347
   264
if UnparseC.term t = "[0 = c_4, 0 = - 1 * q_0 * L \<up> 2 / 2 + (L * c_3 + c_4),\n c + (c_2 + (c_3 + c_4)) = 0, c_2 + (c_3 + c_4) = 0]"
walther@60347
   265
then () else error "eqsystem.sml rewrite in 4x4 simplify_System_paren";
walther@60347
   266
Walther@60500
   267
val SOME (t, _) = rewrite_set_inst_ ctxt true bdvs isolate_bdvs t;
walther@60347
   268
if UnparseC.term t = "[c_4 = 0, \
walther@60347
   269
	        \L * c_3 + c_4 = 0 + - 1 * (- 1 * q_0 * L \<up> 2 / 2),\n \
walther@60347
   270
		\c + (c_2 + (c_3 + c_4)) = 0, c_2 + (c_3 + c_4) = 0]"
walther@60347
   271
then () else error "eqsystem.sml rewrite in 4x4 isolate_bdvs";
walther@60347
   272
Walther@60500
   273
val SOME(t, _)= rewrite_set_inst_ ctxt true bdvs simplify_System_parenthesized t;
walther@60347
   274
if UnparseC.term t = "[c_4 = 0,\
walther@60347
   275
		\ L * c_3 + c_4 = q_0 * L \<up> 2 / 2,\
walther@60347
   276
		\ c + (c_2 + (c_3 + c_4)) = 0,\n\
walther@60347
   277
		\ c_2 + (c_3 + c_4) = 0]"
walther@60347
   278
then () else error "eqsystem.sml rewrite in 4x4 simplify_System_p..2";
walther@60347
   279
Walther@60500
   280
val SOME (t, _) = rewrite_set_ ctxt true order_system t;
walther@60347
   281
if UnparseC.term t = "[c_4 = 0,\
walther@60347
   282
		\ L * c_3 + c_4 = q_0 * L \<up> 2 / 2,\
walther@60347
   283
		\ c_2 + (c_3 + c_4) = 0,\n\
walther@60347
   284
		\ c + (c_2 + (c_3 + c_4)) = 0]"
walther@60347
   285
then () else error "eqsystem.sml rewrite in 4x4 order_system";
walther@60347
   286
walther@60347
   287
"----------- refine [linear,system]-------------------------------";
walther@60347
   288
"----------- refine [linear,system]-------------------------------";
walther@60347
   289
"----------- refine [linear,system]-------------------------------";
walther@60347
   290
val fmz =
walther@60347
   291
  ["equalities [0 = - 1 * q_0 * 0 \<up> 2 / 2 + 0 * c + c_2," ^
walther@60347
   292
               "0 = - 1 * q_0 * L \<up> 2 / 2 + L * c + (c_2::real)]", 
walther@60347
   293
	   "solveForVars [c, c_2]", "solution LL"];
walther@60347
   294
walther@60347
   295
(*WN120313 in "solution L" above "Refine.refine fmz ["LINEAR", "system"]" caused an error...*)
walther@60347
   296
"~~~~~ fun Refine.refine, args:"; val ((fmz: Formalise.model), (pblID:Problem.id)) = (fmz, ["LINEAR", "system"]);
walther@60347
   297
"~~~~~ fun refin', args:"; val ((pblRD: Problem.id_reverse), fmz, pbls, ((Store.Node (pI, [py], [])): Problem.T Store.node)) =
walther@60347
   298
   ((rev o tl) pblID, fmz, [(*match list*)],
walther@60347
   299
     ((Store.Node ("LINEAR", [Problem.from_store ["LINEAR", "system"]], [])): Problem.T Store.node));
walther@60347
   300
      val {thy, ppc, where_, prls, ...} = py ;
Walther@60469
   301
"~~~~~ fun O_Model.init, args:"; val (thy, fmz, pbt) = (thy, fmz, ppc);
walther@60347
   302
        val ctxt = Proof_Context.init_global thy;
walther@60347
   303
"~~~~~ fun declare_constraints, args:"; val (t, ctxt) = (nth 1 fmz, ctxt);
walther@60347
   304
      fun get_vars ((v,T)::vs) = (case raw_explode v |> Library.read_int of
walther@60347
   305
              (_, _::_) => (Free (v,T)::get_vars vs)
walther@60347
   306
            | (_, []  ) => get_vars vs) (*filter out nums as long as 
walther@60347
   307
                                          we have Free ("123",_)*)
walther@60347
   308
        | get_vars [] = [];
walther@60347
   309
                                        t = "equalities [0 = - 1 * q_0 * 0 \<up> 2 / 2 + 0 * c + c_2,"^
walther@60347
   310
                                            "0 = - 1 * q_0 * L \<up> 2 / 2 + L * c + (c_2::real)]";
walther@60347
   311
      val ts = Term.add_frees (Syntax.read_term ctxt t) [] |> get_vars;
walther@60347
   312
val ctxt = Variable.declare_constraints (nth 1 ts) ctxt;
walther@60347
   313
val ctxt = Variable.declare_constraints (nth 2 ts) ctxt;
walther@60347
   314
val ctxt = Variable.declare_constraints (nth 3 ts) ctxt;
walther@60347
   315
val ctxt = Variable.declare_constraints (nth 4 ts) ctxt;
walther@60347
   316
                                        val t = nth 2 fmz; t = "solveForVars [c, c_2]";
walther@60347
   317
      val ts = Term.add_frees (Syntax.read_term ctxt t) [] |> get_vars;
walther@60347
   318
val ctxt = Variable.declare_constraints (nth 1 ts) ctxt;
walther@60347
   319
                                        val t = nth 3 fmz; t = "solution LL";
walther@60347
   320
      (*(Syntax.read_term ctxt t); 
walther@60347
   321
Type unification failed: Clash of types "real" and "_ list"
walther@60347
   322
Type error in application: incompatible operand type
walther@60347
   323
walther@60347
   324
Operator:  solution :: bool list \<Rightarrow> toreall
walther@60347
   325
Operand:   L :: real                 ========== L was already present in equalities ========== *)
walther@60347
   326
walther@60347
   327
"===== case 1 =====";
walther@60347
   328
val matches = Refine.refine fmz ["LINEAR", "system"];
walther@60347
   329
case matches of 
walther@60347
   330
 [M_Match.Matches (["LINEAR", "system"], _),
walther@60347
   331
  M_Match.Matches (["2x2", "LINEAR", "system"], _),
walther@60347
   332
  M_Match.NoMatch (["triangular", "2x2", "LINEAR", "system"], _),
walther@60347
   333
		  M_Match.Matches (["normalise", "2x2", "LINEAR", "system"],
walther@60347
   334
			    {Find = [Correct "solution LL"],
walther@60347
   335
			     With = [],
walther@60347
   336
			     Given =
walther@60347
   337
			       [Correct
walther@60347
   338
				"equalities\n [0 = - 1 * q_0 * 0 \<up> 2 / 2 + 0 * c + c_2,\n  0 = - 1 * q_0 * L \<up> 2 / 2 + L * c + c_2]",
walther@60347
   339
				        Correct "solveForVars [c, c_2]"],
walther@60347
   340
				     Where = [],
walther@60347
   341
				     Relate = []})] => ()
walther@60347
   342
| _ => error "eqsystem.sml Refine.refine ['normalise','2x2'...]";
walther@60347
   343
walther@60347
   344
"===== case 2 =====";
walther@60347
   345
val fmz = ["equalities [c_2 = 0, L * c + c_2 = q_0 * L \<up> 2 / 2]", 
walther@60347
   346
	   "solveForVars [c, c_2]", "solution LL"];
walther@60347
   347
val matches = Refine.refine fmz ["LINEAR", "system"];
walther@60347
   348
case matches of [_,_,
walther@60347
   349
		  M_Match.Matches
walther@60347
   350
		    (["triangular", "2x2", "LINEAR", "system"],
walther@60347
   351
		      {Find = [Correct "solution LL"],
walther@60347
   352
		       With = [],
walther@60347
   353
		       Given =
walther@60347
   354
		        [Correct "equalities [c_2 = 0, L * c + c_2 = q_0 * L \<up> 2 / 2]",
walther@60347
   355
		         Correct "solveForVars [c, c_2]"],
walther@60347
   356
		       Where = [Correct
walther@60347
   357
			"tl [c, c_2] from [c, c_2] occur_exactly_in NTH 1\n      [c_2 = 0, L * c + c_2 = q_0 * L \<up> 2 / 2]",
walther@60347
   358
			                Correct
walther@60347
   359
				"[c, c_2] from [c, c_2] occur_exactly_in NTH 2\n   [c_2 = 0, L * c + c_2 = q_0 * L \<up> 2 / 2]"],
walther@60347
   360
		       Relate = []})] => ()
walther@60347
   361
| _ => error "eqsystem.sml Refine.refine ['triangular','2x2'...]";
walther@60347
   362
walther@60347
   363
(*WN051014-----------------------------------------------------------------------------------\\
walther@60347
   364
  the above 'val matches = Refine.refine fmz ["LINEAR", "system"]'
walther@60347
   365
  didn't work anymore; we investigated in these steps:*)
walther@60347
   366
val fmz = ["equalities [c_2 = 0, L * c + c_2 = q_0 * L \<up> 2 / 2]", 
walther@60347
   367
	  "solveForVars [c, c_2]", "solution LL"];
walther@60347
   368
val matches = Refine.refine fmz ["triangular", "2x2", "LINEAR", "system"];
walther@60347
   369
(*... resulted in 
walther@60347
   370
   False "[c, c_2] from_ [c, c_2] occur_exactly_in nth_ 2\n    
walther@60347
   371
          [c_2 = 0, L * c + c_2 = q_0 * L \<up> 2 / 2]"]*)
walther@60347
   372
val t = TermC.str2term ("[c, c_2] from [c, c_2] occur_exactly_in NTH 2" ^   
walther@60347
   373
		  "[c_2 = 0, L * c + c_2 = q_0 * L \<up> 2 / 2]");
Walther@60500
   374
Walther@60500
   375
val SOME (t', _) = rewrite_set_ ctxt false prls_triangular t;
walther@60347
   376
(*found:...
walther@60347
   377
##  try thm: NTH_CONS
walther@60347
   378
###  eval asms: 1 < 2 + - 1
walther@60347
   379
==> nth_ (2 + - 1) [L * c + c_2 = q_0 * L \<up> 2 / 2] =
walther@60347
   380
    nth_ (2 + - 1 + - 1) []
walther@60347
   381
####  rls: erls_prls_triangular on: 1 < 2 + - 1
walther@60347
   382
#####  try calc: op <'
walther@60347
   383
###  asms accepted: ["1 < 2 + - 1"]   stored: ["1 < 2 + - 1"]
walther@60347
   384
Walther@60516
   385
... i.e Eval ("Groups.plus_class.plus", Calc_Binop.numeric "#add_") was missing in erls_prls_triangular*)
walther@60347
   386
(*--------------------------------------------------------------------------------------------//*)
walther@60347
   387
walther@60347
   388
walther@60347
   389
"===== case 3: relaxed preconditions for triangular system =====";
walther@60347
   390
val fmz = ["equalities [L * q_0 = c,                               \
walther@60347
   391
	   \            0 = (2 * c_2 + 2 * L * c + - 1 * L \<up> 2 * q_0) / 2,\
walther@60347
   392
	   \            0 = c_4,                                           \
walther@60347
   393
	   \            0 = c_3]", 
walther@60347
   394
	   "solveForVars [c, c_2, c_3, c_4]", "solution LL"];
walther@60347
   395
(*============ inhibit exn WN120314 TODO: investigate type error (same) in these 2 cases:
walther@60347
   396
probably exn thrown by fun declare_constraints
walther@60347
   397
/-------------------------------------------------------\
walther@60347
   398
Type unification failed
walther@60347
   399
Type error in application: incompatible operand type
walther@60347
   400
walther@60347
   401
Operator:  op # c_3 :: 'a list \<Rightarrow> 'a list
walther@60347
   402
Operand:   [c_4] :: 'b list
walther@60347
   403
\-------------------------------------------------------/
walther@60347
   404
val TermC.matches = Refine.refine fmz ["LINEAR", "system"];
walther@60347
   405
case TermC.matches of 
walther@60347
   406
    [M_Match.Matches (["LINEAR", "system"], _),
walther@60347
   407
     M_Match.NoMatch (["2x2", "LINEAR", "system"], _),
walther@60347
   408
     M_Match.NoMatch (["3x3", "LINEAR", "system"], _),
walther@60347
   409
     M_Match.Matches (["4x4", "LINEAR", "system"], _),
walther@60347
   410
     M_Match.NoMatch (["triangular", "4x4", "LINEAR", "system"], _),
walther@60347
   411
     M_Match.Matches (["normalise", "4x4", "LINEAR", "system"], _)] => ()
walther@60347
   412
  | _ => error "eqsystem.sml: Refine.refine relaxed triangular sys M_Match.NoMatch";
walther@60347
   413
(*WN060914 does NOT match, because 3rd and 4th equ are not ordered*)
walther@60347
   414
walther@60347
   415
"===== case 4 =====";
walther@60347
   416
val fmz = ["equalities [L * q_0 = c,                                       \
walther@60347
   417
	   \            0 = (2 * c_2 + 2 * L * c + - 1 * L \<up> 2 * q_0) / 2,\
walther@60347
   418
	   \            0 = c_3,                           \
walther@60347
   419
	   \            0 = c_4]", 
walther@60347
   420
	   "solveForVars [c, c_2, c_3, c_4]", "solution LL"];
walther@60347
   421
val TermC.matches = Refine.refine fmz ["triangular", "4x4", "LINEAR", "system"];
walther@60347
   422
case TermC.matches of 
walther@60347
   423
    [M_Match.Matches (["triangular", "4x4", "LINEAR", "system"], _)] => ()
walther@60347
   424
  | _ => error "eqsystem.sml: Refine.refine relaxed triangular sys M_Match.NoMatch";
walther@60347
   425
val TermC.matches = Refine.refine fmz ["LINEAR", "system"];
walther@60347
   426
============ inhibit exn WN120314 ==============================================*)
walther@60347
   427
walther@60347
   428
"----------- Refine.refine [2x2,linear,system] search error--------------";
walther@60347
   429
"----------- Refine.refine [2x2,linear,system] search error--------------";
walther@60347
   430
"----------- Refine.refine [2x2,linear,system] search error--------------";
walther@60347
   431
(*didn't go into ["2x2", "LINEAR", "system"]; 
walther@60347
   432
  we investigated in these steps:*)
walther@60347
   433
val fmz = ["equalities [0 = - 1 * q_0 * 0 \<up> 2 / 2 + 0 * c + c_2,\
walther@60347
   434
	               \0 = - 1 * q_0 * L \<up> 2 / 2 + L * c + c_2]", 
walther@60347
   435
	   "solveForVars [c, c_2]", "solution LL"];
walther@60347
   436
val matches = Refine.refine fmz ["2x2", "LINEAR", "system"];
walther@60347
   437
(*default_print_depth 11;*) TermC.matches; (*default_print_depth 3;*)
walther@60347
   438
(*brought: 'False "length_ es_ = 2"'*)
walther@60347
   439
walther@60347
   440
(*-----fun refin' (pblRD:Problem.id_reverse) fmz pbls ((Store.Node (pI,[py],[])):pbt Store.store) =
walther@60347
   441
(* val ((pblRD:Problem.id_reverse), fmz, pbls, ((Store.Node (pI,[py],[])):pbt Store.store)) =
walther@60347
   442
       (rev ["LINEAR", "system"], fmz, [(*match list*)],
walther@60347
   443
	((Store.Node ("2x2",[Problem.from_store ["2x2", "LINEAR", "system"]],[])):pbt Store.store));
walther@60347
   444
   *)
walther@60347
   445
> show_types:=true; UnparseC.term (hd where_); show_types:=false;
walther@60347
   446
val it = "length_ (es_::real list) = (2::real)" : string
walther@60347
   447
walther@60347
   448
=========================================================================\
walther@60347
   449
-------fun Problem.prep_input
walther@60347
   450
(* val (thy, (pblID, dsc_dats: (string * (string list)) list, 
walther@60347
   451
		  ev:rls, ca: string option, metIDs:metID list)) =
walther@60347
   452
       (EqSystem.thy, (["system"],
walther@60347
   453
		       [("#Given" ,["equalities es_", "solveForVars v_s"]),
walther@60347
   454
			("#Find"  ,["solution ss___"](*___ is copy-named*))
walther@60347
   455
			],
walther@60347
   456
		       Rule_Set.append_rules "empty" Rule_Set.empty [(*for preds in where_*)], 
walther@60347
   457
		       SOME "solveSystem es_ v_s", 
walther@60347
   458
		       []));
walther@60347
   459
   *)
walther@60347
   460
> val [("#Given", [equalities_es_, "solveForVars v_s"])] = gi;
walther@60347
   461
val equalities_es_ = "equalities es_" : string
walther@60347
   462
> val (dd, ii) = (split_did o Thm.term_of o the o (TermC.parse thy)) equalities_es_;
walther@60347
   463
> show_types:=true; UnparseC.term ii; show_types:=false;
walther@60347
   464
val it = "es_::bool list" : string
walther@60347
   465
~~~~~~~~~~~~~~~ \<up> \<up> \<up>  OK~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
walther@60347
   466
walther@60347
   467
> val {where_,...} = Problem.from_store ["2x2", "LINEAR", "system"];
walther@60347
   468
> show_types:=true; UnparseC.term (hd where_); show_types:=false;
walther@60347
   469
walther@60347
   470
=========================================================================/
walther@60347
   471
walther@60347
   472
-----fun refin' ff:
walther@60360
   473
> (writeln o (I_Model.to_string (Proof_Context.init_global @{theory Isac_Knowledge}))) itms;
walther@60347
   474
[
walther@60347
   475
(1 ,[1] ,true ,#Given ,Cor equalities
walther@60347
   476
 [0 = - 1 * q_0 * 0 \<up> 2 / 2 + 0 * c + c_2,
walther@60347
   477
  0 = - 1 * q_0 * L \<up> 2 / 2 + L * c + c_2] ,(es_, [[0 = - 1 * q_0 * 0 \<up> 2 / 2 + 0 * c + c_2,
walther@60347
   478
 0 = - 1 * q_0 * L \<up> 2 / 2 + L * c + c_2]])),
walther@60347
   479
(2 ,[1] ,true ,#Given ,Cor solveForVars [c, c_2] ,(v_s, [[c, c_2]])),
walther@60347
   480
(3 ,[1] ,true ,#Find ,Cor solution L ,(ss___, [L]))]
walther@60347
   481
walther@60347
   482
> (writeln o pres2str) pre';
walther@60347
   483
[
walther@60347
   484
(false, length_ es_ = 2),
walther@60347
   485
(true, length_ [c, c_2] = 2)]
walther@60347
   486
walther@60347
   487
----- fun match_oris':
walther@60360
   488
> (writeln o (I_Model.to_string (Proof_Context.init_global @{theory Isac_Knowledge}))) itms;
walther@60347
   489
> (writeln o pres2str) pre';
walther@60347
   490
..as in refin'
walther@60347
   491
walther@60347
   492
----- fun check in Pre_Conds.
walther@60347
   493
> (writeln o env2str) env;
walther@60347
   494
["
walther@60347
   495
(es_, [0 = - 1 * q_0 * 0 \<up> 2 / 2 + 0 * c + c_2,
walther@60347
   496
 0 = - 1 * q_0 * L \<up> 2 / 2 + L * c + c_2])", "
walther@60347
   497
(v_s, [c, c_2])", "
walther@60347
   498
(ss___, L)"]
walther@60347
   499
walther@60347
   500
> val es_ = (fst o hd) env;
walther@60347
   501
val es_ = Free ("es_", "bool List.list") : Term.term
walther@60347
   502
walther@60347
   503
> val pre1 = hd pres;
walther@60347
   504
TermC.atomty pre1;
walther@60347
   505
***
walther@60347
   506
*** Const (op =, [real, real] => bool)
walther@60347
   507
*** . Const (ListG.length_, real list => real)
walther@60347
   508
*** . . Free (es_, real list)
walther@60347
   509
~~~~~~~~~~~~~~~~~~~ \<up> \<up> \<up>  should be bool list~~~~~~~~~~~~~~~~~~~
walther@60347
   510
*** . Free (2, real)
walther@60347
   511
***
walther@60347
   512
walther@60347
   513
THE REASON WAS A non-type-constrained variable IN #WHERE OF PROBLEM
walther@60347
   514
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
walther@60347
   515
*)
walther@60347
   516
walther@60347
   517
"----------- me [EqSystem,normalise,2x2] -------------------------";
walther@60347
   518
"----------- me [EqSystem,normalise,2x2] -------------------------";
walther@60347
   519
"----------- me [EqSystem,normalise,2x2] -------------------------";
walther@60347
   520
val fmz = ["equalities [0 = - 1 * q_0 * 0 \<up> 2 / 2 + 0 * c + c_2,\
walther@60347
   521
	               \0 = - 1 * q_0 * L \<up> 2 / 2 + L * c + c_2]", 
walther@60347
   522
	   "solveForVars [c, c_2]", "solution LL"];
walther@60347
   523
val (dI',pI',mI') =
walther@60347
   524
  ("Biegelinie",["normalise", "2x2", "LINEAR", "system"],
walther@60347
   525
   ["EqSystem", "normalise", "2x2"]);
walther@60347
   526
val p = e_pos'; val c = []; 
walther@60347
   527
val (p,_,f,nxt,_,pt) = CalcTreeTEST [(fmz, (dI',pI',mI'))];
walther@60347
   528
val (p,_,f,nxt,_,pt) = me nxt p c pt;val (p,_,f,nxt,_,pt) = me nxt p c pt;
walther@60347
   529
val (p,_,f,nxt,_,pt) = me nxt p c pt;val (p,_,f,nxt,_,pt) = me nxt p c pt;
walther@60347
   530
val (p,_,f,nxt,_,pt) = me nxt p c pt;val (p,_,f,nxt,_,pt) = me nxt p c pt;
walther@60347
   531
val (p,_,f,nxt,_,pt) = me nxt p c pt;
walther@60347
   532
case nxt of Specify_Method ["EqSystem", "normalise", "2x2"] => ()
walther@60347
   533
	  | _ => error "eqsystem.sml [EqSystem,normalise,2x2] specify";
walther@60347
   534
walther@60347
   535
val (p,_,f,nxt,_,pt) = me nxt p c pt;
walther@60347
   536
val (p,_,f,nxt,_,pt) = me nxt p c pt;f2str f;
walther@60347
   537
val (p,_,f,nxt,_,pt) = me nxt p c pt;f2str f(*["(bdv_1, c)", "(bdv_2, hd (tl [c, c_2] ... corrected srls; ran only AFTER use"RCODE-root.sml", store_met was NOT SUFFICIENT*);
walther@60347
   538
val (p,_,f,nxt,_,pt) = me nxt p c pt;f2str f;
walther@60347
   539
val (p,_,f,nxt,_,pt) = me nxt p c pt;f2str f;
walther@60347
   540
val (p,_,f,nxt,_,pt) = me nxt p c pt;f2str f;
walther@60347
   541
case nxt of
walther@60347
   542
    (Subproblem ("Biegelinie", ["triangular", "2x2", "LINEAR",_])) => ()
walther@60347
   543
  | _ => error "eqsystem.sml me [EqSystem,normalise,2x2] SubProblem";
walther@60347
   544
walther@60347
   545
val (p,_,f,nxt,_,pt) = me nxt p c pt;val (p,_,f,nxt,_,pt) = me nxt p c pt;
walther@60347
   546
val (p,_,f,nxt,_,pt) = me nxt p c pt;val (p,_,f,nxt,_,pt) = me nxt p c pt;
walther@60347
   547
val (p,_,f,nxt,_,pt) = me nxt p c pt;val (p,_,f,nxt,_,pt) = me nxt p c pt;
walther@60347
   548
val (p,_,f,nxt,_,pt) = me nxt p c pt;val (p,_,f,nxt,_,pt) = me nxt p c pt;
walther@60347
   549
case nxt of
walther@60347
   550
    (Specify_Method ["EqSystem", "top_down_substitution", "2x2"]) => ()
walther@60347
   551
  | _ => error "eqsystem.sml me [EqSys...2x2] top_down_substitution";
walther@60347
   552
walther@60347
   553
val (p,_,f,nxt,_,pt) = me nxt p c pt;
walther@60347
   554
val PblObj {probl,...} = get_obj I pt [5];
walther@60360
   555
    (writeln o (I_Model.to_string (Proof_Context.init_global @{theory Isac_Knowledge}))) probl;
walther@60347
   556
(*[
walther@60347
   557
(1 ,[1] ,true ,#Given ,Cor equalities [c_2 = 0, L * c + c_2 = q_0 * L \<up> 2 / 2] ,(es_, [[c_2 = 0, L * c + c_2 = q_0 * L \<up> 2 / 2]])),
walther@60347
   558
(2 ,[1] ,true ,#Given ,Cor solveForVars [c, c_2] ,(v_s, [[c, c_2]])),
walther@60347
   559
(3 ,[1] ,true ,#Find ,Cor solution ss___ ,(ss___, [ss___]))]
walther@60347
   560
*)
walther@60347
   561
val (p,_,f,nxt,_,pt) = me nxt p c pt;f2str f;
walther@60347
   562
val (p,_,f,nxt,_,pt) = me nxt p c pt;f2str f;
walther@60347
   563
val (p,_,f,nxt,_,pt) = me nxt p c pt;f2str f;
walther@60347
   564
val (p,_,f,nxt,_,pt) = me nxt p c pt;f2str f;
walther@60347
   565
val (p,_,f,nxt,_,pt) = me nxt p c pt;f2str f;
walther@60347
   566
val (p,_,f,nxt,_,pt) = me nxt p c pt;f2str f;
walther@60347
   567
val (p,_,f,nxt,_,pt) = me nxt p c pt;f2str f;
walther@60347
   568
val (p,_,f,nxt,_,pt) = me nxt p c pt;f2str f;
walther@60347
   569
case nxt of
walther@60347
   570
    (Check_Postcond ["triangular", "2x2", "LINEAR", "system"]) => ()
walther@60347
   571
  | _ => error "eqsystem.sml me Subpbl .[EqSys...2x2] finished";
walther@60347
   572
val (p,_,f,nxt,_,pt) = me nxt p c pt;f2str f;
walther@60347
   573
val (p,_,f,nxt,_,pt) = me nxt p c pt;f2str f;
walther@60347
   574
if f2str f = "[c = L * q_0 / 2, c_2 = 0]" then ()
walther@60347
   575
else error "eqsystem.sml me [EqSys...2x2] finished f2str f";
walther@60347
   576
case nxt of
walther@60347
   577
    (End_Proof') => ()
walther@60347
   578
  | _ => error "eqsystem.sml me [EqSys...2x2] finished End_Proof'";