src/Tools/isac/MathEngBasic/tactic.sml
author Walther Neuper <walther.neuper@jku.at>
Mon, 04 May 2020 09:25:51 +0200
changeset 59932 87336f3b021f
parent 59928 7601a1fa20b9
child 59937 c3f3123e8fbc
permissions -rw-r--r--
separate Solve_Step.add, rearrange code, prep. Specify_Step
wneuper@59571
     1
(* Title:  Tactics; tac_ for interaction with frontend, input for internal use.
wneuper@59304
     2
   Author: Walther Neuper 170121
wneuper@59304
     3
   (c) due to copyright terms
wneuper@59304
     4
wneuper@59304
     5
regular expression for search:
wneuper@59304
     6
walther@59928
     7
Add_Find|Add_Given|Add_Relation|Apply_Method|Begin_Sequ|Begin_Trans|Split_And|Split_Or|Split_Intersect|Conclude_And|Conclude_Or|End_Sequ|End_Trans|End_Ruleset|End_Subproblem|End_Intersect|End_Proof|Calculate|Check_Postcond|Check_elementwise|Del_Find|Del_Given|Del_Relation|Derive|Detail_Set|Detail_Set_Inst|End_Detail|Empty_Tac|Free_Solve|Init_Proof|Model_Problem Or_to_List|Refine_Problem|Refine_Tacitly| Rewrite|Rewrite_Inst|Rewrite_Set|Rewrite_Set_Inst|Specify_Method|Specify_Problem|Specify_Theory|Subproblem|Substitute|Tac|Take|Take_Inst
wneuper@59304
     8
wneuper@59304
     9
*)
wneuper@59298
    10
signature TACTIC =
wneuper@59298
    11
sig
walther@59846
    12
  datatype T =
walther@59865
    13
    Add_Find' of TermC.as_string * Model.itm list | Add_Given' of TermC.as_string * Model.itm list 
walther@59865
    14
  | Add_Relation' of TermC.as_string * Model.itm list
walther@59924
    15
(*RM*)| Del_Find' of TermC.as_string | Del_Given' of TermC.as_string | Del_Relation' of TermC.as_string
walther@59923
    16
  | Model_Problem' of Problem.id * Model.itm list * Model.itm list
walther@59923
    17
  | Refine_Problem' of Problem.id * (Model.itm list * (bool * term) list)
walther@59923
    18
  | Refine_Tacitly' of Problem.id * Problem.id * ThyC.id * Method.id * Model.itm list
walther@59923
    19
  | Specify_Method' of Method.id * Model.ori list * Model.itm list
walther@59923
    20
  | Specify_Problem' of Problem.id * (bool * (Model.itm list * (bool * term) list))
walther@59923
    21
  | Specify_Theory' of ThyC.id
walther@59923
    22
  (* ^^^^^--------------------- for specify-phase, for solve-phase ---------------------vvvvv*)
walther@59932
    23
  | Apply_Method' of Method.id * term option * Istate_Def.T * Proof.context
walther@59879
    24
  | Calculate' of ThyC.id * string * term * (term * ThmC.T)
walther@59903
    25
  | Check_Postcond' of Problem.id * term
walther@59865
    26
  | Check_elementwise' of term * TermC.as_string * Selem.result
walther@59927
    27
  | Derive' of Rule_Set.T    
walther@59846
    28
  | Empty_Tac_
walther@59846
    29
  | Free_Solve'
walther@59846
    30
  | Or_to_List' of term * term
walther@59879
    31
  | Rewrite' of ThyC.id * Rewrite_Ord.rew_ord' * Rule_Set.T * bool * ThmC.T * term * Selem.result
walther@59910
    32
  | Rewrite_Inst' of ThyC.id * Rewrite_Ord.rew_ord' * Rule_Set.T * bool * subst * ThmC.T * term * Selem.result
walther@59879
    33
  | Rewrite_Set' of ThyC.id * bool * Rule_Set.T * term * Selem.result
walther@59910
    34
  | Rewrite_Set_Inst' of ThyC.id * bool * subst * Rule_Set.T * term * Selem.result
walther@59924
    35
  | Subproblem' of Spec.T * Model.ori list * term * Selem.fmz_ * Proof.context * term
walther@59912
    36
  | Substitute' of Rule_Def.rew_ord_ * Rule_Set.T * Subst.as_eqs * term * term
walther@59923
    37
(*RM*)| Tac_ of theory * string * string * string
walther@59846
    38
  | Take' of term
walther@59925
    39
  | End_Detail' of Selem.result
walther@59925
    40
  | Begin_Trans' of term | End_Trans' of Selem.result
walther@59925
    41
  | End_Proof''
walther@59923
    42
walther@59812
    43
  val string_of: T -> string
walther@59741
    44
walther@59846
    45
  datatype input =
walther@59923
    46
    Add_Find of TermC.as_string | Add_Given of TermC.as_string
walther@59923
    47
  | Add_Relation of TermC.as_string
walther@59923
    48
  | Del_Find of TermC.as_string | Del_Given of TermC.as_string | Del_Relation of TermC.as_string
walther@59923
    49
  | Model_Problem
walther@59923
    50
  | Refine_Problem of Problem.id
walther@59923
    51
  | Refine_Tacitly of Problem.id
walther@59923
    52
  | Specify_Method of Method.id
walther@59923
    53
  | Specify_Problem of Problem.id
walther@59923
    54
  | Specify_Theory of ThyC.id
walther@59923
    55
  (* ^^^^^--------------------- for specify-phase, for solve-phase ---------------------vvvvv*)
walther@59932
    56
  | Apply_Method of Method.id
walther@59846
    57
  | Calculate of string
walther@59903
    58
  | Check_Postcond of Problem.id
walther@59865
    59
  | Check_elementwise of TermC.as_string
walther@59927
    60
  | Derive of Rule_Set.id
walther@59846
    61
  | Empty_Tac
walther@59927
    62
  | Free_Solve
walther@59846
    63
  | Or_to_List
walther@59874
    64
  | Rewrite of ThmC.T
walther@59911
    65
  | Rewrite_Inst of Subst.input * ThmC.T
walther@59867
    66
  | Rewrite_Set of Rule_Set.id
walther@59911
    67
  | Rewrite_Set_Inst of Subst.input * Rule_Set.id
walther@59923
    68
  | Subproblem of ThyC.id * Problem.id
walther@59923
    69
  | Substitute of Subst.input
walther@59923
    70
(*RM*)| Tac of string
walther@59923
    71
  | Take of TermC.as_string
walther@59925
    72
  | End_Detail
walther@59925
    73
  | Begin_Trans | End_Trans
walther@59923
    74
  | End_Proof';
walther@59846
    75
walther@59846
    76
  val input_to_string : input -> string
walther@59812
    77
  val tac2IDstr : input -> string
walther@59844
    78
  val is_empty : input -> bool
wneuper@59302
    79
walther@59728
    80
  val eq_tac : input * input -> bool
walther@59728
    81
  val is_rewtac : input -> bool
walther@59728
    82
  val is_rewset : input -> bool
walther@59867
    83
  val rls_of : input -> Rule_Set.id
walther@59728
    84
  val rule2tac : theory -> (term * term) list ->  Rule.rule -> input
walther@59914
    85
  val applicable : theory -> string -> Rule_Set.T -> term -> input ->input list
walther@59914
    86
  val for_specify: input -> bool
walther@59914
    87
walther@59704
    88
  val input_from_T : T -> input
walther@59728
    89
  val result : T -> term
walther@59728
    90
  val creates_assms: T -> term list
walther@59728
    91
  val insert_assumptions: T -> Proof.context -> Proof.context
walther@59749
    92
  val for_specify': T -> bool
walther@59735
    93
wneuper@59310
    94
(* ---- for tests only: shifted from below to remove the Warning "unused" at fun.def. --------- *)
wneuper@59310
    95
  (* NONE *)
walther@59886
    96
(*/-------------------------------------------------------- ! aktivate for Test_Isac BEGIN ---\* )
wneuper@59310
    97
  (* NONE *)
walther@59886
    98
( *\--- ! aktivate for Test_Isac END ----------------------------------------------------------/*)
wneuper@59298
    99
wneuper@59310
   100
(*----- unused code, kept as hints to design ideas ---------------------------------------------*)
wneuper@59310
   101
  (* NONE *)
wneuper@59298
   102
end
wneuper@59298
   103
walther@59728
   104
(**)
wneuper@59571
   105
structure Tactic(**): TACTIC(**) =
wneuper@59298
   106
struct
walther@59728
   107
(**)
wneuper@59298
   108
walther@59914
   109
(** tactics for user at front-end **)
walther@59914
   110
walther@59846
   111
datatype input =
walther@59865
   112
    Add_Find of TermC.as_string | Add_Given of TermC.as_string | Add_Relation of TermC.as_string
walther@59924
   113
  | Del_Find of TermC.as_string | Del_Given of TermC.as_string | Del_Relation of TermC.as_string
walther@59924
   114
  | Model_Problem
walther@59924
   115
  | Refine_Problem of Problem.id
walther@59924
   116
  | Refine_Tacitly of Problem.id
walther@59924
   117
  | Specify_Method of Method.id
walther@59924
   118
  | Specify_Problem of Problem.id
walther@59924
   119
  | Specify_Theory of ThyC.id
walther@59924
   120
  (* ^^^^^--------------------- for specify-phase, for solve-phase ---------------------vvvvv*)
walther@59932
   121
  | Apply_Method of Method.id
walther@59846
   122
  | Calculate of string
walther@59903
   123
  | Check_Postcond of Problem.id
walther@59865
   124
  | Check_elementwise of TermC.as_string
walther@59927
   125
  | Derive of Rule_Set.id
walther@59846
   126
  | Empty_Tac
walther@59927
   127
  | Free_Solve
walther@59846
   128
  | Or_to_List
walther@59874
   129
  | Rewrite of ThmC.T
walther@59911
   130
  | Rewrite_Inst of Subst.input * ThmC.T
walther@59867
   131
  | Rewrite_Set of Rule_Set.id
walther@59911
   132
  | Rewrite_Set_Inst of Subst.input * Rule_Set.id
walther@59924
   133
  | Subproblem of ThyC.id * Problem.id
walther@59912
   134
  | Substitute of Subst.input
walther@59924
   135
(*RM*)| Tac of string
walther@59924
   136
  | Take of TermC.as_string
walther@59925
   137
  | End_Detail
walther@59925
   138
  | Begin_Trans | End_Trans
walther@59924
   139
  | End_Proof';
walther@59846
   140
walther@59846
   141
fun input_to_string ma = case ma of
walther@59926
   142
    Model_Problem           => "Model_Problem "
walther@59846
   143
  | Refine_Tacitly pblID    => "Refine_Tacitly " ^ strs2str pblID 
walther@59846
   144
  | Refine_Problem pblID    => "Refine_Problem " ^ strs2str pblID 
walther@59846
   145
  | Add_Given cterm'        => "Add_Given " ^ cterm'
walther@59846
   146
  | Del_Given cterm'        => "Del_Given " ^ cterm'
walther@59846
   147
  | Add_Find cterm'         => "Add_Find " ^ cterm'
walther@59846
   148
  | Del_Find cterm'         => "Del_Find " ^ cterm'
walther@59846
   149
  | Add_Relation cterm'     => "Add_Relation " ^ cterm'
walther@59846
   150
  | Del_Relation cterm'     => "Del_Relation " ^ cterm'
walther@59846
   151
walther@59846
   152
  | Specify_Theory domID    => "Specify_Theory " ^ quote domID
walther@59846
   153
  | Specify_Problem pblID   => "Specify_Problem " ^ strs2str pblID
walther@59846
   154
  | Specify_Method metID    => "Specify_Method " ^ strs2str metID
walther@59846
   155
  | Apply_Method metID      => "Apply_Method " ^ strs2str metID
walther@59846
   156
  | Check_Postcond pblID    => "Check_Postcond " ^ strs2str pblID
walther@59846
   157
  | Free_Solve              => "Free_Solve"
walther@59846
   158
walther@59846
   159
  | Rewrite_Inst (subs, (id, thm)) =>
walther@59868
   160
    "Rewrite_Inst " ^ (pair2str (subs2str subs, spair2str (id, thm |> Thm.prop_of |> UnparseC.term)))
walther@59868
   161
  | Rewrite (id, thm) => "Rewrite " ^ spair2str (id, thm |> Thm.prop_of |> UnparseC.term)
walther@59846
   162
  | Rewrite_Set_Inst (subs, rls) => 
walther@59846
   163
    "Rewrite_Set_Inst " ^ pair2str (subs2str subs, quote rls)
walther@59846
   164
  | Rewrite_Set rls         => "Rewrite_Set " ^ quote rls
walther@59932
   165
  | Begin_Trans              => "Begin_Trans"
walther@59932
   166
  | End_Trans              => "End_Trans"
walther@59846
   167
  | End_Detail              => "End_Detail"
walther@59927
   168
  | Derive rls'             => "Derive " ^ rls'
walther@59911
   169
  | Calculate op_           => "Calculate " ^ op_
walther@59912
   170
  | Substitute sube         => "Substitute " ^ Subst.string_eqs_to_string sube	     
walther@59846
   171
walther@59846
   172
  | Take cterm'             => "Take " ^ quote cterm'
walther@59846
   173
  | Subproblem (domID, pblID) => "Subproblem " ^ pair2str (domID, strs2str pblID)
walther@59846
   174
walther@59846
   175
  | Check_elementwise cterm'=> "Check_elementwise " ^ quote cterm'
walther@59846
   176
  | Or_to_List              => "Or_to_List "
walther@59846
   177
walther@59846
   178
  | Empty_Tac               => "Empty_Tac"
walther@59927
   179
(*RM*)| Tac string              => "Tac " ^ string(*RM*)
walther@59846
   180
  | End_Proof'              => "input End_Proof'"
walther@59846
   181
  | _                       => "input_to_string not impl. for ?!";
walther@59846
   182
walther@59846
   183
fun tac2IDstr ma = case ma of
walther@59846
   184
    Model_Problem => "Model_Problem"
walther@59846
   185
  | Refine_Tacitly _ => "Refine_Tacitly"
walther@59846
   186
  | Refine_Problem _ => "Refine_Problem"
walther@59846
   187
  | Add_Given _ => "Add_Given"
walther@59846
   188
  | Del_Given _ => "Del_Given"
walther@59846
   189
  | Add_Find _ => "Add_Find"
walther@59846
   190
  | Del_Find _ => "Del_Find"
walther@59846
   191
  | Add_Relation _ => "Add_Relation"
walther@59846
   192
  | Del_Relation _ => "Del_Relation"
walther@59846
   193
walther@59846
   194
  | Specify_Theory _ => "Specify_Theory"
walther@59846
   195
  | Specify_Problem _ => "Specify_Problem"
walther@59846
   196
  | Specify_Method _ => "Specify_Method"
walther@59846
   197
  | Apply_Method _ => "Apply_Method"
walther@59846
   198
  | Check_Postcond _ => "Check_Postcond"
walther@59846
   199
  | Free_Solve => "Free_Solve"
walther@59846
   200
walther@59846
   201
  | Rewrite_Inst _ => "Rewrite_Inst"
walther@59846
   202
  | Rewrite _ => "Rewrite"
walther@59846
   203
  | Rewrite_Set_Inst _ => "Rewrite_Set_Inst"
walther@59846
   204
  | Rewrite_Set _ => "Rewrite_Set"
walther@59846
   205
  | Derive _ => "Derive "
walther@59846
   206
  | Calculate _ => "Calculate "
walther@59846
   207
  | Substitute _ => "Substitute" 
walther@59846
   208
walther@59846
   209
  | Take _ => "Take"
walther@59846
   210
  | Subproblem _ => "Subproblem"
walther@59846
   211
walther@59846
   212
  | Check_elementwise _ => "Check_elementwise"
walther@59846
   213
  | Or_to_List => "Or_to_List "
walther@59846
   214
walther@59846
   215
  | Empty_Tac => "Empty_Tac"
walther@59846
   216
  | Tac _ => "Tac "
walther@59846
   217
  | End_Proof' => "End_Proof'"
walther@59846
   218
  | _ => "input_to_string not impl. for ?!";
walther@59846
   219
walther@59846
   220
fun is_empty input = case input of Empty_Tac => true | _ => false
wneuper@59302
   221
wneuper@59302
   222
fun eq_tac (Rewrite (id1, _), Rewrite (id2, _)) = id1 = id2
wneuper@59302
   223
  | eq_tac (Rewrite_Inst (_, (id1, _)), Rewrite_Inst (_, (id2, _))) = id1 = id2
wneuper@59302
   224
  | eq_tac (Rewrite_Set id1, Rewrite_Set id2) = id1 = id2
wneuper@59302
   225
  | eq_tac (Rewrite_Set_Inst (_, id1), Rewrite_Set_Inst (_, id2)) = id1 = id2
wneuper@59302
   226
  | eq_tac (Calculate id1, Calculate id2) = id1 = id2
wneuper@59302
   227
  | eq_tac _ = false
wneuper@59302
   228
wneuper@59302
   229
fun is_rewset (Rewrite_Set_Inst _) = true
wneuper@59302
   230
  | is_rewset (Rewrite_Set _) = true 
wneuper@59302
   231
  | is_rewset _ = false;
wneuper@59302
   232
fun is_rewtac (Rewrite _) = true
wneuper@59302
   233
  | is_rewtac (Rewrite_Inst _) = true
wneuper@59571
   234
  | is_rewtac input = is_rewset input;
wneuper@59302
   235
wneuper@59302
   236
wneuper@59302
   237
fun rls_of (Rewrite_Set_Inst (_, rls)) = rls
wneuper@59302
   238
  | rls_of (Rewrite_Set rls) = rls
walther@59846
   239
  | rls_of input = error ("rls_of: called with input \"" ^ tac2IDstr input ^ "\"");
wneuper@59302
   240
walther@59878
   241
fun rule2tac thy _ (Rule.Eval (opID, _)) = Calculate (assoc_calc thy opID)
wneuper@59416
   242
  | rule2tac _ [] (Rule.Thm thm'') = Rewrite thm''
wneuper@59416
   243
  | rule2tac _ subst (Rule.Thm thm'') = 
walther@59911
   244
    Rewrite_Inst (Subst.T_to_input subst, thm'')
walther@59867
   245
  | rule2tac _ [] (Rule.Rls_ rls) = Rewrite_Set (Rule_Set.id rls)
wneuper@59416
   246
  | rule2tac _ subst (Rule.Rls_ rls) = 
walther@59911
   247
    Rewrite_Set_Inst (Subst.T_to_input subst, (Rule_Set.id rls))
wneuper@59302
   248
  | rule2tac _ _ rule = 
walther@59867
   249
    error ("rule2tac: called with \"" ^ Rule.to_string rule ^ "\"");
wneuper@59302
   250
walther@59914
   251
(* try if a rewrite-rule is applicable to a given formula; 
walther@59914
   252
   in case of rule-sets (recursivley) collect all _atomic_ rewrites *) 
walther@59914
   253
fun try_rew thy ((_, ro) : Rewrite_Ord.rew_ord) erls (subst : subst) f (thm' as Rule.Thm (_, thm)) =
walther@59914
   254
    if Auto_Prog.contains_bdv thm
walther@59914
   255
    then case Rewrite.rewrite_inst_ thy ro erls false subst thm f of
walther@59914
   256
	    SOME _ => [rule2tac thy subst thm']
walther@59914
   257
	  | NONE => []
walther@59914
   258
    else (case Rewrite.rewrite_ thy ro erls false thm f of
walther@59914
   259
	    SOME _ => [rule2tac thy [] thm']
walther@59914
   260
	  | NONE => [])
walther@59914
   261
  | try_rew thy _ _ _ f (cal as Rule.Eval c) = 
walther@59914
   262
    (case Eval.adhoc_thm thy c f of
walther@59914
   263
	    SOME _ => [rule2tac thy [] cal]
walther@59914
   264
    | NONE => [])
walther@59914
   265
  | try_rew thy _ _ _ f (cal as Rule.Cal1 c) = 
walther@59914
   266
    (case Eval.adhoc_thm thy c f of
walther@59914
   267
	      SOME _ => [rule2tac thy [] cal]
walther@59914
   268
      | NONE => [])
walther@59914
   269
  | try_rew thy _ _ subst f (Rule.Rls_ rls) = filter_appl_rews thy subst f rls
walther@59914
   270
  | try_rew _ _ _ _ _ _ = error "try_rew: uncovered case"
walther@59914
   271
and filter_appl_rews thy subst f (Rule_Def.Repeat {rew_ord = ro, erls, rules, ...}) = 
walther@59914
   272
    gen_distinct eq_tac (flat (map (try_rew thy ro erls subst f) rules))
walther@59914
   273
  | filter_appl_rews thy subst f (Rule_Set.Sequence {rew_ord = ro, erls, rules,...}) = 
walther@59914
   274
    gen_distinct eq_tac (flat (map (try_rew thy ro erls subst f) rules))
walther@59914
   275
  | filter_appl_rews _ _ _ (Rule_Set.Rrls _) = []
walther@59914
   276
  | filter_appl_rews _ _ _ _ = error "filter_appl_rews: uncovered case"
walther@59914
   277
walther@59914
   278
(* decide if a tactic is applicable to a given formula; 
walther@59914
   279
   in case of Rewrite_Set* go down to _atomic_ rewrite-tactics *)
walther@59914
   280
fun applicable thy _ _ f (Calculate scrID) =
walther@59914
   281
    try_rew thy Rewrite_Ord.e_rew_ordX Rule_Set.empty [] f (Rule.Eval (assoc_calc' thy scrID |> snd))
walther@59914
   282
  | applicable thy ro erls f (Rewrite thm'') =
walther@59914
   283
    try_rew thy (ro, Rewrite_Ord.assoc_rew_ord ro) erls [] f (Rule.Thm thm'')
walther@59914
   284
  | applicable thy ro erls f (Rewrite_Inst (subs, thm'')) =
walther@59914
   285
    try_rew thy (ro, Rewrite_Ord.assoc_rew_ord ro) erls (Subst.T_from_input thy subs) f (Rule.Thm thm'')
walther@59914
   286
walther@59914
   287
  | applicable thy _ _ f (Rewrite_Set rls') =
walther@59914
   288
    filter_appl_rews thy [] f (assoc_rls rls')
walther@59914
   289
  | applicable thy _ _ f (Rewrite_Set_Inst (subs, rls')) =
walther@59914
   290
    filter_appl_rews thy (Subst.T_from_input thy subs) f (assoc_rls rls')
walther@59914
   291
  | applicable _ _ _ _ tac = 
walther@59914
   292
    (tracing ("### applicable: not impl. for tac = '" ^ input_to_string tac ^ "'"); []);
walther@59914
   293
walther@59914
   294
walther@59914
   295
(** tactics for internal use **)
walther@59914
   296
walther@59846
   297
  datatype T =
walther@59865
   298
    Add_Find' of TermC.as_string * Model.itm list | Add_Given' of TermC.as_string * Model.itm list 
walther@59924
   299
  | Add_Relation' of TermC.as_string * Model.itm list (* for Step.do_next    *)
walther@59924
   300
(*RM*)| Del_Find' of TermC.as_string | Del_Given' of TermC.as_string | Del_Relation' of TermC.as_string
walther@59924
   301
  | Model_Problem' of  (* first step in specify-phase                        *)
walther@59924
   302
      Problem.id *     (* id in the Know_Store                               *)
walther@59924
   303
      Model.itm list * (* the model for the Problem                          *)
walther@59924
   304
      Model.itm list   (* the model for the method                           *)
walther@59924
   305
  | Refine_Problem' of Problem.id * (Model.itm list * (bool * term) list)
walther@59924
   306
  | Refine_Tacitly' of                                                      
walther@59924
   307
      Problem.id *       (* the original id in the Know_Store                *)
walther@59924
   308
      Problem.id *       (* the id of the refined Problem                    *)
walther@59924
   309
      ThyC.id *          (* the id of the refined theory                     *)
walther@59924
   310
      Method.id *        (* the id of the refined Method                     *)
walther@59924
   311
      Model.itm list     (* RM 9.03: remains [] for Model_Problem recognizing its activation *)
walther@59924
   312
  | Specify_Method' of Method.id * Model.ori list * Model.itm list
walther@59924
   313
  | Specify_Problem' of Problem.id * 
walther@59924
   314
      (bool *                  (* all preconditions evaluate to True         *)
walther@59924
   315
        (Model.itm list *      (* the model checked for the input id         *)
walther@59924
   316
          (bool * term) list)) (* individual preconditions marked true/false *)
walther@59924
   317
  | Specify_Theory' of ThyC.id
walther@59924
   318
  (* ^^^^^--------------------- for specify-phase, for solve-phase ---------------------vvvvv*)
walther@59932
   319
  | Apply_Method' of   (* last step in specifu-phse, switch to solve-phase   *)
walther@59932
   320
      Method.id *      (* id in the Know_Store                               *)
walther@59932
   321
      term option *    (* first formula in the (sub-)Problem TODO: rm option *)           
walther@59932
   322
      Istate_Def.T *   (* for starting the Program                           *)
walther@59932
   323
      Proof.context    (* for starting the Program                           *)
walther@59879
   324
  | Calculate' of ThyC.id * string * term * (term * ThmC.T)
walther@59924
   325
  | Check_Postcond' of   (* last step in solving a (sub-)Problem             *)
walther@59924
   326
      Problem.id *       (* id of the Problem to be checked                  *)
walther@59924
   327
      term               (* return value of the program                      *)
walther@59924
   328
  | Check_elementwise' of(* DEPRECATED, made idle for Calc.T in df00a2b5c4cc *)
walther@59924
   329
      term *             (* the current formula: [x=1,x=...]                 *)
walther@59924
   330
      string *           (* the pred from Check_elementwise                  *)
walther@59924
   331
      Selem.result       (* composed from (1) and (2): {x. pred}             *)
walther@59927
   332
  | Derive' of Rule_Set.T(* for Generate.embed_deriv                         *)
walther@59846
   333
  | Empty_Tac_
walther@59846
   334
  | Free_Solve'
walther@59846
   335
  | Or_to_List' of term * term
walther@59879
   336
  | Rewrite' of ThyC.id * Rewrite_Ord.rew_ord' * Rule_Set.T * bool * ThmC.T * term * Selem.result
walther@59910
   337
  | Rewrite_Inst' of ThyC.id * Rewrite_Ord.rew_ord' * Rule_Set.T * bool * subst * ThmC.T * term * Selem.result
walther@59879
   338
  | Rewrite_Set' of ThyC.id * bool * Rule_Set.T * term * Selem.result
walther@59910
   339
  | Rewrite_Set_Inst' of ThyC.id * bool * subst * Rule_Set.T * term * Selem.result
walther@59924
   340
  | Subproblem' of       (* switch from solve-phase to specify-phase         *)
walther@59924
   341
      Spec.T *           (* specification of the SubProblem                  *)
walther@59924
   342
  		(Model.ori list) * (* original model, filled in associate Subproblem'  *)
walther@59924
   343
  		term *             (* headline of calc-head, filled -"-                *)
walther@59924
   344
  		Selem.fmz_ *       (* string list from arguments of the calling Program*)
walther@59924
   345
      Proof.context *    (* for the specify-phase                            *)
walther@59924
   346
  		term               (* Subproblem (thyID, pbl) OR CAS_Cmd               *)  
walther@59924
   347
  | Substitute' of       (* substitute variables (TODO: from the context)    *)    
walther@59924
   348
      Rule_Def.rew_ord_ *(* for re-calculation                               *)
walther@59924
   349
      Rule_Set.T *       (* for re-calculation                               *)
walther@59924
   350
      Subst.as_eqs *     (* the substitution: terms of type bool             *)
walther@59924
   351
      term *             (* to be substituted into                           *)
walther@59924
   352
      term               (* resulting from the substitution                  *)
walther@59924
   353
(*RM*)| Tac_ of theory * string * string * string
walther@59846
   354
  | Take' of term
walther@59927
   355
  | End_Detail' of Selem.result (* for intermediate steps into Rewrite_Set   *)
walther@59927
   356
  | Begin_Trans' of term        (* for intermediate steps into Rewrite_Set   *)
walther@59927
   357
  | End_Trans' of Selem.result  (* for intermediate steps into Rewrite_Set   *)
walther@59925
   358
  | End_Proof''
walther@59846
   359
walther@59846
   360
fun string_of ma = case ma of
walther@59926
   361
    Model_Problem' (pblID, _, _) => "Model_Problem' " ^ strs2str pblID
walther@59846
   362
  | Refine_Tacitly'(p, prefin, domID, metID, _) => "Refine_Tacitly' (" ^ strs2str p ^ ", " ^
walther@59846
   363
    strs2str prefin ^ ", " ^ domID ^ ", " ^ strs2str metID ^ ", pbl-itms)"
walther@59846
   364
  | Refine_Problem' _ => "Refine_Problem' (" ^ (*matchs2str ms*)"..." ^ ")"
walther@59846
   365
  | Add_Given' _ => "Add_Given' "(*^cterm'*)
walther@59846
   366
  | Del_Given' _ => "Del_Given' "(*^cterm'*)
walther@59846
   367
  | Add_Find' _ => "Add_Find' "(*^cterm'*)
walther@59846
   368
  | Del_Find' _ => "Del_Find' "(*^cterm'*)
walther@59846
   369
  | Add_Relation' _ => "Add_Relation' "(*^cterm'*)
walther@59846
   370
  | Del_Relation' _ => "Del_Relation' "(*^cterm'*)
walther@59846
   371
walther@59846
   372
  | Specify_Theory' domID => "Specify_Theory' " ^ quote domID
walther@59846
   373
  | Specify_Problem' (pI, (ok, _)) =>  "Specify_Problem' " ^ 
walther@59846
   374
    spair2str (strs2str pI, spair2str (bool2str ok, spair2str ("itms2str_ itms", "items2str pre")))
walther@59846
   375
  | Specify_Method' (pI, oris, _) => "Specify_Method' (" ^ 
walther@59903
   376
    Method.id_to_string pI ^ ", " ^ Model.oris2str oris ^ ", )"
walther@59846
   377
walther@59846
   378
  | Apply_Method' (metID, _, _, _) => "Apply_Method' " ^ strs2str metID
walther@59846
   379
  | Check_Postcond' (pblID, scval) => "Check_Postcond' " ^
walther@59868
   380
      (spair2str (strs2str pblID, UnparseC.term scval))
walther@59846
   381
walther@59846
   382
  | Free_Solve' => "Free_Solve'"
walther@59846
   383
walther@59846
   384
  | Rewrite_Inst' (*subs,thm'*) _ => "Rewrite_Inst' "(*^(pair2str (subs2str subs, spair2str thm'))*)
walther@59846
   385
  | Rewrite' _(*thm'*) => "Rewrite' "(*^(spair2str thm')*)
walther@59846
   386
  | Rewrite_Set_Inst' _(*subs,thm'*) => "Rewrite_Set_Inst' "(*^(pair2str (subs2str subs, quote rls))*)
walther@59846
   387
  | Rewrite_Set' (thy', pasm, rls', f, (f', asm)) => "Rewrite_Set' (" ^ thy' ^ "," ^ bool2str pasm ^
walther@59868
   388
    "," ^ Rule_Set.id rls' ^ "," ^ UnparseC.term f ^ ",(" ^ UnparseC.term f' ^ "," ^ UnparseC.terms asm ^ "))"
walther@59846
   389
  | End_Detail' _ => "End_Detail' xxx"
walther@59846
   390
walther@59867
   391
  | Derive' rls => "Derive' " ^ Rule_Set.id rls
walther@59846
   392
  | Calculate'  _ => "Calculate' "
walther@59846
   393
  | Substitute' _ => "Substitute' "(*^(subs2str subs)*)    
walther@59846
   394
walther@59846
   395
  | Take' _(*cterm'*) => "Take' "(*^(quote cterm'	)*)
walther@59846
   396
  | Subproblem' _(*(spec, oris, _, _, _, pbl_form)*) => 
walther@59846
   397
    "Subproblem' "(*^(pair2str (domID, strs2str ,))*)
walther@59846
   398
walther@59846
   399
  | Empty_Tac_ => "Empty_Tac_"
walther@59846
   400
  | Tac_ (_, form, id, result) => "Tac_ (thy," ^ form ^ "," ^ id ^ "," ^ result ^ ")"
walther@59925
   401
walther@59925
   402
  | Begin_Trans' _ => "Begin_Trans' xxx"
walther@59925
   403
  | End_Trans' _ => "End_Trans' xxx"
walther@59925
   404
  | End_Proof'' => "End_Trans' xxx"
walther@59846
   405
  | _  => "string_of not impl. for arg";
wneuper@59302
   406
walther@59704
   407
fun input_from_T (Refine_Tacitly' (pI, _, _, _, _)) = Refine_Tacitly pI
walther@59704
   408
  | input_from_T (Model_Problem' (_, _, _)) = Model_Problem
walther@59704
   409
  | input_from_T (Add_Given' (t, _)) = Add_Given t
walther@59704
   410
  | input_from_T (Add_Find' (t, _)) = Add_Find t
walther@59704
   411
  | input_from_T (Add_Relation' (t, _)) = Add_Relation t
walther@59704
   412
 
walther@59704
   413
  | input_from_T (Specify_Theory' dI) = Specify_Theory dI
walther@59704
   414
  | input_from_T (Specify_Problem' (dI, _)) = Specify_Problem dI
walther@59704
   415
  | input_from_T (Specify_Method' (dI, _, _)) = Specify_Method dI
walther@59704
   416
  
walther@59704
   417
  | input_from_T (Rewrite' (_, _, _, _, thm, _, _)) = Rewrite thm
walther@59911
   418
  | input_from_T (Rewrite_Inst' (_, _, _, _, sub, thm, _, _)) = Rewrite_Inst (Subst.T_to_input sub, thm)
walther@59704
   419
walther@59867
   420
  | input_from_T (Rewrite_Set' (_, _, rls, _, _)) = Rewrite_Set (Rule_Set.id rls)
walther@59704
   421
  | input_from_T (Rewrite_Set_Inst' (_, _, sub, rls, _, _)) = 
walther@59911
   422
    Rewrite_Set_Inst (Subst.T_to_input sub, Rule_Set.id rls)
walther@59704
   423
walther@59704
   424
  | input_from_T (Calculate' (_, op_, _, _)) = Calculate (op_)
walther@59704
   425
  | input_from_T (Check_elementwise' (_, pred, _)) = Check_elementwise pred
walther@59704
   426
walther@59704
   427
  | input_from_T (Or_to_List' _) = Or_to_List
walther@59868
   428
  | input_from_T (Take' term) = Take (UnparseC.term term)
walther@59912
   429
  | input_from_T (Substitute' (_, _, subte, _, _)) = Substitute (Subst.eqs_to_input subte) 
walther@59704
   430
  | input_from_T (Tac_ (_, _, id, _)) = Tac id
walther@59704
   431
walther@59704
   432
  | input_from_T (Subproblem' ((domID, pblID, _), _, _, _,_ ,_)) = Subproblem (domID, pblID)
walther@59704
   433
  | input_from_T (Check_Postcond' (pblID, _)) = Check_Postcond pblID
walther@59704
   434
  | input_from_T Empty_Tac_ = Empty_Tac
walther@59846
   435
  | input_from_T m = raise ERROR (": not impl. for "^(string_of m));
walther@59704
   436
walther@59728
   437
fun res (Rewrite_Inst' (_ , _, _, _, _, _, _, res)) = res
walther@59728
   438
  | res (Rewrite' (_, _, _, _, _, _, res)) = res
walther@59728
   439
  | res (Rewrite_Set_Inst' (_, _, _, _, _, res)) = res
walther@59728
   440
  | res (Rewrite_Set' (_, _, _, _, res)) = res
walther@59728
   441
  | res (Calculate' (_, _, _, (t, _))) = (t, [])
walther@59728
   442
  | res (Check_elementwise' (_, _, res)) = res
walther@59728
   443
  | res (Subproblem' (_, _, _, _, _, t)) = (t, [])
walther@59728
   444
  | res (Take' t) = (t, [])
walther@59728
   445
  | res (Substitute' (_, _, _, _, t)) = (t, [])
walther@59728
   446
  | res (Or_to_List' (_,  t)) = (t, [])
walther@59846
   447
  | res m = raise ERROR ("result: not impl.for " ^ string_of m)
walther@59728
   448
walther@59728
   449
(*fun result m = (fst o res) m; TODO*)
walther@59728
   450
fun result tac = (fst o res) tac;
walther@59728
   451
fun creates_assms tac = (snd o res) tac;
walther@59728
   452
walther@59728
   453
fun insert_assumptions tac ctxt  = ContextC.insert_assumptions (creates_assms tac) ctxt
walther@59728
   454
walther@59932
   455
fun for_specify (Add_Find _) = true
walther@59932
   456
  | for_specify (Add_Given _) = true
walther@59932
   457
  | for_specify (Add_Relation _) = true
walther@59932
   458
  | for_specify (Del_Find _) = true
walther@59932
   459
  | for_specify (Del_Given _) = true
walther@59932
   460
  | for_specify (Del_Relation _) = true
walther@59932
   461
  | for_specify Model_Problem  = true
walther@59932
   462
  | for_specify (Refine_Problem _) = true
walther@59749
   463
  | for_specify (Refine_Tacitly _) = true
walther@59932
   464
  | for_specify (Specify_Method _) = true
walther@59932
   465
  | for_specify (Specify_Problem _) = true
walther@59749
   466
  | for_specify (Specify_Theory _) = true
walther@59749
   467
  | for_specify _ = false
walther@59932
   468
walther@59932
   469
fun for_specify' (Add_Find' _) = true
walther@59932
   470
  | for_specify' (Add_Given' _) = true
walther@59932
   471
  | for_specify' (Add_Relation' _) = true
walther@59932
   472
  | for_specify' (Del_Find' _) = true
walther@59932
   473
  | for_specify' (Del_Given' _) = true
walther@59932
   474
  | for_specify' (Del_Relation' _) = true
walther@59932
   475
  | for_specify' (Model_Problem' _) = true
walther@59932
   476
  | for_specify' (Refine_Problem' _) = true
walther@59749
   477
  | for_specify' (Refine_Tacitly' _) = true
walther@59932
   478
  | for_specify' (Specify_Method' _) = true
walther@59932
   479
  | for_specify' (Specify_Problem' _) = true
walther@59749
   480
  | for_specify' (Specify_Theory' _) = true
walther@59749
   481
  | for_specify' _ = false
walther@59749
   482
walther@59728
   483
(**)end(**)