src/Tools/isac/Interpret/inform.sml
author Walther Neuper <wneuper@ist.tugraz.at>
Sun, 18 Dec 2016 16:27:41 +0100
changeset 59269 1da53d1540fe
parent 59266 56762e8a672e
child 59271 7a02202e4577
permissions -rw-r--r--
added structure Specify : MODEL_SPECIFY
neuper@37906
     1
(* Handle user-input during the specify- and the solve-phase. 
neuper@37906
     2
   author: Walther Neuper
neuper@37906
     3
   0603
neuper@37906
     4
   (c) due to copyright terms
neuper@37906
     5
*)
neuper@37906
     6
wneuper@59262
     7
signature INPUT_FORMULAS =
wneuper@59262
     8
sig
wneuper@59262
     9
  datatype iitem = Find of cterm' list | Given of cterm' list | Relate of cterm' list
wneuper@59262
    10
  type imodel = iitem list
wneuper@59262
    11
  type icalhd = pos' * cterm' * imodel * pos_ * spec
wneuper@59262
    12
  val fetchErrorpatterns : tac -> errpatID list
wneuper@59262
    13
  val input_icalhd : ptree -> icalhd -> ptree * ocalhd
wneuper@59265
    14
  val inform : Chead.calcstate' -> string -> string * Chead.calcstate'
wneuper@59262
    15
  val find_fillpatterns : ptree * pos' -> errpatID -> (fillpatID * term * thm * subs option) list
wneuper@59262
    16
  val is_exactly_equal : ptree * (pos * pos_) -> string -> string * tac
neuper@37906
    17
wneuper@59262
    18
(*/-------------------------------------------------------- ! aktivate for Test_Isac BEGIN ---\* )
wneuper@59262
    19
  val dropwhile' : ('a -> 'b -> bool) -> 'a list -> 'b list -> 'a list * 'b list
wneuper@59262
    20
  val cas_input : term -> (ptree * ocalhd) option
wneuper@59262
    21
  val rev_deriv' : 'a * rule * ('b * 'c) -> 'b * rule * ('a * 'c)
wneuper@59266
    22
  val compare_step : Ctree.taci list * pos' list * (ptree * pos') -> term -> string * Chead.calcstate'
wneuper@59262
    23
  val check_err_patt : term * term -> subst -> errpatID * term -> rls -> errpatID option
wneuper@59262
    24
  val concat_deriv : 'a * ((term * term) list -> term * term -> bool) ->
wneuper@59262
    25
    rls -> rule list -> term -> term -> bool * (term * rule * (term * term list)) list
wneuper@59262
    26
  val check_error_patterns :
wneuper@59262
    27
    term * term ->
wneuper@59262
    28
    term * (term * term) list -> (errpatID * term list * 'a list) list * rls -> errpatID option
wneuper@59262
    29
  val get_fillform :
wneuper@59262
    30
     'a * (term * term) list -> 'b * term -> errpatID -> fillpat -> (fillpatID * term * 'b * 'a) option
wneuper@59262
    31
  val get_fillpats :
wneuper@59262
    32
     'a * (term * term) list -> term -> errpatID -> thm -> (fillpatID * term * thm * 'a) list
wneuper@59262
    33
( *\--- ! aktivate for Test_Isac END ----------------------------------------------------------/*)
wneuper@59262
    34
end
neuper@37906
    35
wneuper@59262
    36
(**)
wneuper@59262
    37
structure Inform(**): INPUT_FORMULAS(**) =
wneuper@59262
    38
struct
wneuper@59262
    39
(**)
neuper@37906
    40
wneuper@59262
    41
(*** handle an input calc-head ***)
neuper@37906
    42
neuper@37906
    43
datatype iitem = 
neuper@37906
    44
  Given of cterm' list
neuper@37906
    45
(*Where is never input*) 
neuper@37906
    46
| Find  of cterm' list
wneuper@59262
    47
| Relate  of cterm' list
neuper@37906
    48
wneuper@59262
    49
type imodel = iitem list
neuper@37906
    50
neuper@37906
    51
(*calc-head as input*)
neuper@37906
    52
type icalhd =
wneuper@59262
    53
  pos' *     (*the position of the calc-head in the calc-tree*) 
wneuper@59262
    54
  cterm' *   (*the headline*)
wneuper@59262
    55
  imodel *   (*the model (without Find) of the calc-head*)
wneuper@59262
    56
  pos_ *     (*model belongs to Pbl or Met*)
wneuper@59262
    57
  spec;      (*specification: domID, pblID, metID*)
wneuper@59262
    58
val e_icalhd = (e_pos', "", [Given [""]], Pbl, e_spec) : icalhd
neuper@37906
    59
wneuper@59262
    60
fun is_casinput (hdf : cterm') ((fmz_, spec) : fmz) =
wneuper@59262
    61
  hdf <> "" andalso fmz_ = [] andalso spec = e_spec
neuper@37906
    62
neuper@37906
    63
(*.handle an input as into an algebra system.*)
neuper@37906
    64
fun dtss2itm_ ppc (d, ts) =
wneuper@59264
    65
  let
wneuper@59264
    66
    val (f, (d, id)) = the (find_first ((curry op= d) o 
wneuper@59264
    67
  		(#1: (term * term) -> term) o
wneuper@59264
    68
  		(#2: pbt_ -> (term * term))) ppc)
wneuper@59264
    69
  in
wneuper@59264
    70
    ([1], true, f, Cor ((d, ts), (id, ts)))
wneuper@59264
    71
  end
neuper@37906
    72
wneuper@59262
    73
fun flattup2 (a, (b ,c, d, e)) = (a, b, c, d, e)
neuper@37906
    74
wneuper@59262
    75
fun cas_input_ ((dI, pI, mI): spec) dtss = (*WN110515 reconsider thy..ctxt*)
neuper@41995
    76
  let
neuper@41995
    77
    val thy = assoc_thy dI
wneuper@59269
    78
	  val {ppc, ...} = Specify.get_pbt pI
neuper@41995
    79
	  val its_ = map (dtss2itm_ ppc) dtss (*([1],true,"#Given",Cor (...))*)
wneuper@59269
    80
	  val its = Specify.add_id its_
neuper@41995
    81
	  val pits = map flattup2 its
neuper@41995
    82
	  val (pI, mI) =
neuper@41995
    83
      if mI <> ["no_met"]
neuper@41995
    84
      then (pI, mI)
neuper@41995
    85
		  else
wneuper@59269
    86
        case Specify.refine_pbl thy pI pits of
wneuper@59269
    87
			    SOME (pI,_) => (pI, (hd o #met o Specify.get_pbt) pI)
wneuper@59269
    88
			  | NONE => (pI, (hd o #met o Specify.get_pbt) pI)
wneuper@59269
    89
	  val {ppc, pre, prls, ...} = Specify.get_met mI
neuper@41995
    90
	  val its_ = map (dtss2itm_ ppc) dtss (*([1],true,"#Given",Cor (...))*)
wneuper@59269
    91
	  val its = Specify.add_id its_
neuper@41995
    92
	  val mits = map flattup2 its
neuper@41995
    93
	  val pre = check_preconds thy prls pre mits
neuper@41995
    94
    val ctxt = e_ctxt (*WN110515 cas_input_ DOESNT WORK*)
neuper@41995
    95
  in (pI, pits: itm list, mI, mits: itm list, pre, ctxt) end;
neuper@37906
    96
neuper@37906
    97
neuper@41995
    98
(* check if the input term is a CAScmd and return a ptree with a _complete_ calchead *)
neuper@37906
    99
fun cas_input hdt =
wneuper@59262
   100
  let
wneuper@59262
   101
    val (h, argl) = strip_comb hdt
neuper@41995
   102
  in
s1210629013@55443
   103
    case assoc_cas (assoc_thy "Isac") h of
wneuper@59262
   104
      NONE => NONE
wneuper@59262
   105
    | SOME (spec as (dI,_,_), argl2dtss) =>
neuper@41995
   106
	      let
neuper@41995
   107
          val dtss = argl2dtss argl
neuper@41995
   108
	        val (pI, pits, mI, mits, pre, ctxt) = cas_input_ spec dtss
neuper@41995
   109
	        val spec = (dI, pI, mI)
neuper@41995
   110
	        val (pt,_) = 
neuper@41995
   111
		        cappend_problem e_ptree [] (e_istate, e_ctxt) ([], e_spec) ([], e_spec, hdt)
neuper@41995
   112
	        val pt = update_spec pt [] spec
neuper@41995
   113
	        val pt = update_pbl pt [] pits
neuper@41995
   114
	        val pt = update_met pt [] mits
neuper@41995
   115
	        val pt = update_ctxt pt [] ctxt
wneuper@59262
   116
	      in
wneuper@59262
   117
	        SOME (pt, (true, Met, hdt, mits, pre, spec) : ocalhd)
wneuper@59262
   118
	      end
wneuper@59262
   119
  end
neuper@37906
   120
neuper@40836
   121
(*lazy evaluation for (Thy_Info.get_theory "Isac")*)
neuper@38050
   122
fun Isac _  = assoc_thy "Isac";
neuper@37906
   123
wneuper@59262
   124
(* re-parse itms with a new thy and prepare for checking with ori list *)
wneuper@59262
   125
fun parsitm dI (itm as (i, v, _, f, Cor ((d, ts), _)) : itm) =
wneuper@59262
   126
    (let val t = comp_dts (d, ts)
wneuper@59262
   127
     val _ = (term_to_string''' dI t)
wneuper@59262
   128
     (*t his ^^^^^^^^^^^^ should raise the exn on unability of re-parsing dts *)
neuper@52070
   129
    in itm end
wneuper@59262
   130
    handle _ => ((i, v, false, f, Syn (term2str t)) : itm))
wneuper@59262
   131
  | parsitm dI (i, v, b, f, Syn str) =
wneuper@59262
   132
    (let val _ = (Thm.term_of o the o (parse dI)) str
wneuper@59262
   133
    in (i, v, b ,f, Par str) end
wneuper@59262
   134
    handle _ => (i, v, b, f, Syn str))
wneuper@59262
   135
  | parsitm dI (i, v, b, f, Typ str) =
wneuper@59262
   136
    (let val _ = (Thm.term_of o the o (parse dI)) str
wneuper@59262
   137
     in (i, v, b, f, Par str) end
wneuper@59262
   138
     handle _ => (i, v, b, f, Syn str))
wneuper@59262
   139
  | parsitm dI (itm as (i, v, _, f, Inc ((d, ts), _))) =
bonzai@41949
   140
    (let val t = comp_dts (d,ts);
wneuper@59262
   141
	       val _ = term_to_string''' dI t;
neuper@37906
   142
     (*this    ^ should raise the exn on unability of re-parsing dts*)
neuper@52070
   143
     in itm end
wneuper@59262
   144
     handle _ => (i, v, false, f, Syn (term2str t)))
wneuper@59262
   145
  | parsitm dI (itm as (i, v, _, f, Sup (d, ts))) =
bonzai@41949
   146
    (let val t = comp_dts (d,ts);
wneuper@59262
   147
	       val _ = term_to_string''' dI t;
neuper@37906
   148
     (*this    ^ should raise the exn on unability of re-parsing dts*)
neuper@52070
   149
    in itm end
wneuper@59262
   150
    handle _ => (i, v, false, f, Syn (term2str t)))
wneuper@59262
   151
  | parsitm dI (itm as (i, v, _, f, Mis (d, t'))) =
neuper@37906
   152
    (let val t = d $ t';
wneuper@59262
   153
	       val _ = term_to_string''' dI t;
neuper@37906
   154
     (*this    ^ should raise the exn on unability of re-parsing dts*)
neuper@52070
   155
    in itm end
wneuper@59262
   156
    handle _ => (i, v, false, f, Syn (term2str t)))
wneuper@59262
   157
  | parsitm dI (itm as (_, _, _, _, Par _)) = 
neuper@52070
   158
    error ("parsitm (" ^ itm2str_ (thy2ctxt dI) itm ^ "): Par should be internal");
neuper@37906
   159
neuper@37906
   160
(*separate a list to a pair of elements that do NOT satisfy the predicate,
neuper@37906
   161
 and of elements that satisfy the predicate, i.e. (false, true)*)
neuper@37906
   162
fun filter_sep pred xs =
wneuper@59262
   163
  let
wneuper@59262
   164
    fun filt ab [] = ab
wneuper@59262
   165
      | filt (a, b) (x :: xs) =
wneuper@59262
   166
        if pred x 
wneuper@59262
   167
			  then filt (a, b @ [x]) xs 
wneuper@59262
   168
			  else filt (a @ [x], b) xs
wneuper@59262
   169
  in filt ([], []) xs end;
wneuper@59262
   170
fun is_Par ((_, _, _, _,Par _) : itm) = true
neuper@37906
   171
  | is_Par _ = false;
neuper@37906
   172
neuper@37906
   173
fun is_e_ts [] = true
neuper@37906
   174
  | is_e_ts [Const ("List.list.Nil", _)] = true
neuper@37906
   175
  | is_e_ts _ = false;
neuper@37906
   176
wneuper@59262
   177
(* WN.9.11.03 copied from fun appl_add *)
neuper@37906
   178
fun appl_add' dI oris ppc pbt (sel, ct) = 
wneuper@59262
   179
  let 
wneuper@59262
   180
     val ctxt = assoc_thy dI |> thy2ctxt;
wneuper@59262
   181
  in
wneuper@59262
   182
    case parseNEW ctxt ct of
wneuper@59262
   183
	    NONE => (0,[],false,sel, Syn ct):itm
wneuper@59262
   184
	  | SOME t =>
wneuper@59265
   185
	    (case Chead.is_known ctxt sel oris t of
wneuper@59262
   186
        ("", ori', all) =>
wneuper@59265
   187
          (case Chead.is_notyet_input ctxt ppc all ori' pbt of
wneuper@59262
   188
            ("",itm)  => itm
wneuper@59262
   189
          | (msg,_) => error ("appl_add': " ^ msg))
wneuper@59262
   190
      | (_, (i, v, _, d, ts), _) =>
wneuper@59262
   191
        if is_e_ts ts
wneuper@59262
   192
        then (i, v, false, sel, Inc ((d, ts), (e_term, [])))
wneuper@59262
   193
        else (i, v, false, sel, Sup (d, ts)))
wneuper@59262
   194
   end
neuper@37906
   195
wneuper@59262
   196
(* generate preliminary itm_ from a strin (with field "#Given" etc.) *)
wneuper@59262
   197
fun eq7 (f, d) (f', (d', _)) = f = f' andalso d = d';
neuper@37906
   198
fun fstr2itm_ thy pbt (f, str) =
wneuper@59262
   199
  let
wneuper@59262
   200
    val topt = parse thy str
wneuper@59262
   201
  in
wneuper@59262
   202
    case topt of
wneuper@59262
   203
      NONE => ([], false, f, Syn str)
wneuper@59262
   204
    | SOME ct => 
wneuper@59262
   205
	    let
wneuper@59262
   206
	      val (d, ts) = (split_dts o Thm.term_of) ct
wneuper@59262
   207
	      val popt = find_first (eq7 (f, d)) pbt
wneuper@59262
   208
	    in
wneuper@59262
   209
	      case popt of
wneuper@59262
   210
	        NONE => ([1](*??*), true(*??*), f, Sup (d, ts))
wneuper@59262
   211
	      | SOME (f, (d, id)) => ([1], true, f, Cor ((d, ts), (id, ts))) 
wneuper@59262
   212
	    end
wneuper@59262
   213
  end
neuper@37906
   214
neuper@37906
   215
(*.input into empty PblObj, i.e. empty fmz+origin (unknown example).*)
neuper@37906
   216
fun unknown_expl dI pbt selcts =
neuper@37906
   217
  let
neuper@37906
   218
    val thy = assoc_thy dI
neuper@37906
   219
    val its_ = map (fstr2itm_ thy pbt) selcts (*([1],true,"#Given",Cor (...))*)
wneuper@59269
   220
    val its = Specify.add_id its_ 
wneuper@59262
   221
  in
wneuper@59262
   222
    (map flattup2 its): itm list
wneuper@59262
   223
  end
neuper@37906
   224
wneuper@59262
   225
(* WN.11.03 for input_icalhd, ~ specify_additem for Add_Given/_Find/_Relation
wneuper@59262
   226
   appl_add': generate 1 item 
wneuper@59262
   227
   appl_add' . is_known: parse, get data from oris (vats, all (elems if list)..)
wneuper@59262
   228
   appl_add' . is_notyet_input: compare with items in model already input
wneuper@59262
   229
   insert_ppc': insert this 1 item*)
wneuper@59262
   230
fun appl_adds dI [] _ pbt selcts = unknown_expl dI pbt selcts
wneuper@59262
   231
    (*already present itms in model are being overwritten*)
wneuper@59262
   232
  | appl_adds _ _ ppc _ [] = ppc
wneuper@59262
   233
  | appl_adds dI oris ppc pbt (selct :: ss) =
wneuper@59262
   234
    let val itm = appl_add' dI oris ppc pbt selct;
wneuper@59265
   235
    in appl_adds dI oris (Chead.insert_ppc' itm ppc) pbt ss end
neuper@37906
   236
wneuper@59264
   237
fun oris2itms _  _ [] = ([] : itm list) (* WN161130: similar in ptyps ?!? *)
wneuper@59262
   238
  | oris2itms pbt vat ((i, v, f, d, ts) :: (os: ori list)) =
neuper@37930
   239
    if member op = vat v 
wneuper@59262
   240
    then (i, v, true, f, Cor ((d, ts), (e_term, []))) :: (oris2itms pbt vat os)
wneuper@59262
   241
    else oris2itms pbt vat os
neuper@37906
   242
wneuper@59262
   243
fun par2fstr ((_, _, _, f, Par s) : itm) = (f, s)
wneuper@59262
   244
  | par2fstr itm = error ("par2fstr: called with " ^ itm2str_ (thy2ctxt' "Isac") itm)
wneuper@59262
   245
fun itms2fstr ((_, _, _, f, Cor ((d, ts), _)) : itm) = (f, comp_dts'' (d, ts))
wneuper@59262
   246
  | itms2fstr (_, _, _, f, Syn str) = (f, str)
wneuper@59262
   247
  | itms2fstr (_, _, _, f, Typ str) = (f, str)
wneuper@59262
   248
  | itms2fstr (_, _, _, f, Inc ((d, ts), _)) = (f, comp_dts'' (d,ts))
wneuper@59262
   249
  | itms2fstr (_, _, _, f, Sup (d, ts)) = (f, comp_dts'' (d, ts))
wneuper@59262
   250
  | itms2fstr (_, _, _, f, Mis (d, t)) = (f, term2str (d $ t))
wneuper@59262
   251
  | itms2fstr (itm as (_, _, _, _, Par _)) = 
wneuper@59262
   252
    error ("parsitm ("^itm2str_ (thy2ctxt' "Isac") itm ^ "): Par should be internal");
neuper@37906
   253
neuper@37906
   254
fun imodel2fstr iitems = 
neuper@41976
   255
  let 
neuper@41976
   256
    fun xxx is [] = is
neuper@41976
   257
	    | xxx is ((Given strs)::iis) = xxx (is @ (map (pair "#Given") strs)) iis
neuper@41976
   258
	    | xxx is ((Find strs)::iis) = xxx (is @ (map (pair "#Find") strs)) iis
neuper@41976
   259
	    | xxx is ((Relate strs)::iis) = xxx (is @ (map (pair "#Relate") strs)) iis
neuper@41976
   260
  in xxx [] iitems end;
neuper@37906
   261
neuper@41976
   262
(* input a calchead, WN110505 "prep_oris -> (_, ctxt)" not handled properly *)
wneuper@59264
   263
fun input_icalhd pt (((p, _), hdf, imodel, Pbl, spec as (dI, pI, mI)) : icalhd) =
wneuper@59264
   264
    let
wneuper@59264
   265
		  val (fmz, fmz_, oris, ospec, hdf', sspec, sdI, spI, smI, probl, meth) = case get_obj I pt p of
wneuper@59264
   266
		    PblObj {fmz = fmz as (fmz_,_), origin = (oris, ospec, hdf'), 
wneuper@59264
   267
		      spec = sspec as (sdI, spI, smI), probl, meth, ...}
wneuper@59264
   268
        => (fmz, fmz_, oris, ospec, hdf', sspec, sdI, spI, smI, probl, meth)
wneuper@59264
   269
      | _ => error "input_icalhd: uncovered case of get_obj I pt p"
neuper@37906
   270
    in if is_casinput hdf fmz then the (cas_input (str2term hdf)) 
neuper@37906
   271
       else        (*hacked WN0602 ~~~            ~~~~~~~~~,   ..dropped !*)
neuper@41976
   272
         let val (pos_, pits, mits) = 
neuper@41976
   273
	         if dI <> sdI
neuper@41976
   274
	         then let val its = map (parsitm (assoc_thy dI)) probl;
neuper@41976
   275
			            val (its, trms) = filter_sep is_Par its;
wneuper@59269
   276
			            val pbt = (#ppc o Specify.get_pbt) (#2 (Chead.some_spec ospec sspec))
neuper@41976
   277
		            in (Pbl, appl_adds dI oris its pbt  (map par2fstr trms), meth) end 
wneuper@59264
   278
           else
wneuper@59264
   279
             if pI <> spI 
wneuper@59264
   280
	           then if pI = snd3 ospec then (Pbl, probl, meth) 
wneuper@59264
   281
                  else
wneuper@59269
   282
		                let val pbt = (#ppc o Specify.get_pbt) pI
wneuper@59265
   283
			                val dI' = #1 (Chead.some_spec ospec spec)
wneuper@59264
   284
			                val oris = if pI = #2 ospec then oris 
wneuper@59269
   285
				                         else Specify.prep_ori fmz_(assoc_thy"Isac") pbt |> #1;
wneuper@59264
   286
		                in (Pbl, appl_adds dI' oris probl pbt 
wneuper@59264
   287
				              (map itms2fstr probl), meth) end 
wneuper@59264
   288
             else if mI <> smI (*FIXME.WN0311: what if probl is incomplete?!*)
wneuper@59269
   289
	                then let val met = (#ppc o Specify.get_met) mI
wneuper@59265
   290
		                     val mits = Chead.complete_metitms oris probl meth met
wneuper@59264
   291
		                   in if foldl and_ (true, map #3 mits)
wneuper@59264
   292
		                      then (Pbl, probl, mits) else (Met, probl, mits) 
wneuper@59264
   293
		                   end 
wneuper@59265
   294
                  else (Pbl, appl_adds (#1 (Chead.some_spec ospec spec)) oris [(*!!!*)]
wneuper@59269
   295
			                  ((#ppc o Specify.get_pbt) (#2 (Chead.some_spec ospec spec)))
wneuper@59264
   296
			                  (imodel2fstr imodel), meth)
neuper@41976
   297
	         val pt = update_spec pt p spec;
neuper@41976
   298
         in if pos_ = Pbl
wneuper@59269
   299
	          then let val {prls,where_,...} = Specify.get_pbt (#2 (Chead.some_spec ospec spec))
neuper@41976
   300
		               val pre =check_preconds(assoc_thy"Isac")prls where_ pits
neuper@41976
   301
	               in (update_pbl pt p pits,
wneuper@59265
   302
		                 (Chead.ocalhd_complete pits pre spec, Pbl, hdf', pits, pre, spec):ocalhd) 
neuper@41976
   303
                 end
wneuper@59269
   304
	           else let val {prls,pre,...} = Specify.get_met (#3 (Chead.some_spec ospec spec))
neuper@41976
   305
		                val pre = check_preconds (assoc_thy"Isac") prls pre mits
neuper@41976
   306
	                in (update_met pt p mits,
wneuper@59265
   307
		                  (Chead.ocalhd_complete mits pre spec, Met, hdf', mits, pre, spec) : ocalhd)
neuper@41976
   308
                  end
neuper@41976
   309
         end 
neuper@41976
   310
    end
wneuper@59264
   311
  | input_icalhd _ (_, _, _, _(*Met*), _) = error "input_icalhd Met not impl."
neuper@37906
   312
neuper@37906
   313
neuper@37906
   314
(***. handle an input formula .***)
neuper@37906
   315
wneuper@59264
   316
fun equal a b = a = b
neuper@37906
   317
neuper@37906
   318
(*the lists contain eq-al elem-pairs at the beginning;
neuper@37906
   319
  return first list reverted (again) - ie. in order as required subsequently*)
neuper@37906
   320
fun dropwhile' equal (f1::f2::fs) (i1::i2::is) =
wneuper@59264
   321
    if equal f1 i1
wneuper@59264
   322
    then
wneuper@59264
   323
      if equal f2 i2 then dropwhile' equal (f2 :: fs) (i2 :: is)
wneuper@59264
   324
      else (rev (f1 :: f2 :: fs), i1 :: i2 :: is)
neuper@38031
   325
    else error "dropwhile': did not start with equal elements"
neuper@37906
   326
  | dropwhile' equal (f::fs) [i] =
wneuper@59264
   327
    if equal f i
wneuper@59264
   328
    then (rev (f::fs), [i])
neuper@38031
   329
    else error "dropwhile': did not start with equal elements"
neuper@37906
   330
  | dropwhile' equal [f] (i::is) =
wneuper@59264
   331
    if equal f i
wneuper@59264
   332
    then ([f], i::is)
wneuper@59264
   333
    else error "dropwhile': did not start with equal elements"
wneuper@59264
   334
  | dropwhile' _ _ _ = error "dropwhile': uncovered case"
neuper@37906
   335
wneuper@59264
   336
(* 040214: version for concat_deriv *)
wneuper@59263
   337
fun rev_deriv' (t, r, (t', a)) = (t', Rtools.sym_rule r, (t, a));
neuper@37906
   338
wneuper@59250
   339
fun mk_tacis ro erls (t, r as Thm (id, thm), (t', a)) = 
wneuper@59253
   340
      (Rewrite (id, thm), 
wneuper@59257
   341
         Rewrite' ("Isac", fst ro, erls, false, Lucin.rule2thm'' r, t, (t', a)),
neuper@41995
   342
       (e_pos'(*to be updated before generate tacis!!!*), (Uistate, e_ctxt)))
wneuper@59253
   343
  | mk_tacis _ _ (t, r as Rls_ rls, (t', a)) = 
wneuper@59257
   344
      (Rewrite_Set (Lucin.rule2rls' r), 
neuper@41995
   345
         Rewrite_Set' ("Isac", false, rls, t, (t', a)),
wneuper@59253
   346
       (e_pos'(*to be updated before generate tacis!!!*), (Uistate, e_ctxt)))
wneuper@59264
   347
  | mk_tacis _ _ (t, r, _) = error ("mk_tacis: not impl. for " ^ rule2str r ^ " at " ^ term2str t)
neuper@37906
   348
wneuper@59264
   349
(* fo = ifo excluded already in inform *)
neuper@37906
   350
fun concat_deriv rew_ord erls rules fo ifo =
neuper@55487
   351
  let 
neuper@55487
   352
    fun derivat ([]:(term * rule * (term * term list)) list) = e_term
neuper@55487
   353
      | derivat dt = (#1 o #3 o last_elem) dt
neuper@55487
   354
    fun equal (_,_,(t1, _)) (_,_,(t2, _)) = t1=t2
wneuper@59263
   355
    val  fod = Rtools.make_deriv (Isac"") erls rules (snd rew_ord) NONE  fo
wneuper@59263
   356
    val ifod = Rtools.make_deriv (Isac"") erls rules (snd rew_ord) NONE ifo
neuper@55487
   357
  in 
neuper@55487
   358
    case (fod, ifod) of
neuper@55487
   359
      ([], []) => if fo = ifo then (true, []) else (false, [])
neuper@55487
   360
    | (fod, []) => if derivat fod = ifo then (true, fod) (*ifo is normal form*) else (false, [])
neuper@55487
   361
    | ([], ifod) => if fo = derivat ifod then (true, ((map rev_deriv') o rev) ifod) else (false, [])
neuper@55487
   362
    | (fod, ifod) =>
neuper@55487
   363
      if derivat fod = derivat ifod (*common normal form found*)
neuper@55487
   364
      then
neuper@55487
   365
        let 
neuper@55487
   366
          val (fod', rifod') = dropwhile' equal (rev fod) (rev ifod)
neuper@55487
   367
        in (true, fod' @ (map rev_deriv' rifod')) end
neuper@55487
   368
      else (false, [])
wneuper@59264
   369
  end
neuper@37906
   370
neuper@41995
   371
(* compare inform with ctree.form at current pos by nrls;
neuper@37906
   372
   if found, embed the derivation generated during comparison
neuper@41995
   373
   if not, let the mat-engine compute the next ctree.form *)
wneuper@59264
   374
(* structure copied from complete_solve
wneuper@59264
   375
   CAUTION: tacis in returned calcstate' do NOT construct resulting ptp --
wneuper@59264
   376
            all_modspec etc. has to be inserted at Subproblem'*)
wneuper@59265
   377
fun compare_step ((tacis, c, ptp as (pt, pos as (p,p_))): Chead.calcstate') ifo =
neuper@41995
   378
  let
neuper@41995
   379
    val fo =
neuper@41995
   380
      case p_ of
neuper@41995
   381
        Frm => get_obj g_form pt p
neuper@41995
   382
			| Res => (fst o (get_obj g_result pt)) p
neuper@41995
   383
			| _ => e_term (*on PblObj is fo <> ifo*);
wneuper@59269
   384
	  val {nrls, ...} = Specify.get_met (get_obj g_metID pt (par_pblobj pt p))
neuper@41995
   385
	  val {rew_ord, erls, rules, ...} = rep_rls nrls
neuper@42423
   386
	  val (found, der) = concat_deriv rew_ord erls rules fo ifo; (*<---------------*)
neuper@41995
   387
  in
neuper@41995
   388
    if found
neuper@41995
   389
    then
neuper@41995
   390
       let
neuper@41995
   391
         val tacis' = map (mk_tacis rew_ord erls) der;
wneuper@59266
   392
		     val (c', ptp) = Ctree.embed_deriv tacis' ptp;
neuper@41995
   393
	     in ("ok", (tacis (*@ tacis'?WN050408*), c @ c', ptp)) end
neuper@41995
   394
     else 
neuper@55487
   395
	     if pos = ([], Res) (*TODO: we should stop earlier with trying subproblems *)
wneuper@59265
   396
	     then ("no derivation found", (tacis, c, ptp): Chead.calcstate') 
neuper@41995
   397
	     else
neuper@41995
   398
         let
neuper@42423
   399
           val cs' as (tacis, c', ptp) = nxt_solve_ ptp; (*<---------------------*)
wneuper@59264
   400
		       val (tacis, c'', ptp) = case tacis of
wneuper@59264
   401
			       ((Subproblem _, _, _)::_) => 
wneuper@59264
   402
			         let
wneuper@59265
   403
                 val ptp as (pt, (p,_)) = Chead.all_modspec ptp (*<--------------------*)
wneuper@59264
   404
				         val mI = get_obj g_metID pt p
wneuper@59264
   405
			         in
wneuper@59264
   406
			           nxt_solv (Apply_Method' (mI, NONE, e_istate, e_ctxt)) (e_istate, e_ctxt) ptp
wneuper@59264
   407
               end
wneuper@59264
   408
			     | _ => cs';
neuper@41995
   409
		     in compare_step (tacis, c @ c' @ c'', ptp) ifo end
wneuper@59265
   410
  end
neuper@37906
   411
neuper@42428
   412
(* check if (agreed result, input formula) matches the error pattern "pat" modulo simplifier rls *)
neuper@42426
   413
fun check_err_patt (res, inf) (subst: subst) (errpatID: errpatID, pat) rls =
neuper@42423
   414
  let 
neuper@42423
   415
    val (res', _, _, rewritten) =
neuper@42426
   416
      rew_sub (Isac()) 1 subst e_rew_ord e_rls false [] (Trueprop $ pat) res;
neuper@42423
   417
  in
neuper@42423
   418
    if rewritten
neuper@42423
   419
    then 
neuper@42423
   420
      let
neuper@42426
   421
        val norm_res = case rewrite_set_inst_ (Isac()) false subst rls  res' of
neuper@42423
   422
          NONE => res'
neuper@42423
   423
        | SOME (norm_res, _) => norm_res
neuper@42426
   424
        val norm_inf = case rewrite_set_inst_ (Isac()) false subst rls inf of
neuper@42423
   425
          NONE => inf
neuper@42423
   426
        | SOME (norm_inf, _) => norm_inf
neuper@42423
   427
      in if norm_res = norm_inf then SOME errpatID else NONE
neuper@42423
   428
      end
neuper@42423
   429
    else NONE
neuper@42423
   430
  end;
neuper@42423
   431
neuper@42428
   432
(* check if (agreed result, input formula) matches SOME error pattern modulo simplifier rls;
neuper@42428
   433
   (prog, env) for retrieval of casual substitution for bdv in the pattern. *)
neuper@42428
   434
fun check_error_patterns (res, inf) (prog, env) (errpats, rls) =
neuper@42428
   435
  let
wneuper@59263
   436
    val (_, subst) = Rtools.get_bdv_subst prog env
neuper@42428
   437
    fun scan (_, [], _) = NONE
neuper@42428
   438
      | scan (errpatID, errpat :: errpats, _) =
neuper@42428
   439
          case check_err_patt (res, inf) (subst: subst) (errpatID, errpat) rls of
neuper@42428
   440
            NONE => scan (errpatID, errpats, [])
neuper@42428
   441
          | SOME errpatID => SOME errpatID
neuper@42428
   442
    fun scans [] = NONE
neuper@42428
   443
      | scans (group :: groups) =
neuper@42428
   444
          case scan group of
neuper@42428
   445
            NONE => scans groups
neuper@42428
   446
          | SOME errpatID => SOME errpatID
neuper@42428
   447
  in scans errpats end;
neuper@42428
   448
neuper@37906
   449
(*.handle a user-input formula, which may be a CAS-command, too.
neuper@37906
   450
CAS-command:
neuper@37906
   451
   create a calchead, and do 1 step
neuper@37906
   452
   TOOODO.WN0602 works only for the root-problem !!!
neuper@37906
   453
formula, which is no CAS-command:
neuper@37906
   454
   compare iform with calc-tree.form at pos by equ_nrls and all subsequent pos;
neuper@42423
   455
   collect all the tacs applied by the way;
neuper@42426
   456
   if "no derivation found" then check_error_patterns.
neuper@42427
   457
   ALTERNATIVE: check_error_patterns _within_ compare_step seems too expensive.*)
wneuper@59265
   458
fun inform (cs as (_, _, (pt, pos as (p, _))): Chead.calcstate') istr =
neuper@42423
   459
  case parse (assoc_thy "Isac") istr of
neuper@42427
   460
	  SOME f_in =>
neuper@42423
   461
	    let
wneuper@59186
   462
	      val f_in = Thm.term_of f_in
neuper@42431
   463
	      val f_succ = get_curr_formula (pt, pos);
neuper@42423
   464
			in
neuper@42427
   465
			  if f_succ = f_in
neuper@42423
   466
			  then ("same-formula", cs) (* ctree not cut with replaceFormula *)
neuper@42423
   467
			  else
neuper@42427
   468
			    case cas_input f_in of
neuper@42423
   469
			      SOME (pt, _) => ("ok",([], [], (pt, (p, Met))))
neuper@42423
   470
			    | NONE =>
neuper@42428
   471
			        let
wneuper@59264
   472
			          val pos_pred = lev_back' pos (*f_pred ---"step pos cs"---> f_succ in appendFormula*)
neuper@42431
   473
			          val f_pred = get_curr_formula (pt, pos_pred)
neuper@42430
   474
			          val msg_calcstate' = compare_step ([], [], (pt, pos_pred)) f_in (*<<=====*)
neuper@42426
   475
			          (*last step re-calc in compare_step TODO before WN09*)
neuper@42423
   476
			        in
neuper@42423
   477
			          case msg_calcstate' of
neuper@42426
   478
			            ("no derivation found", calcstate') => 
neuper@42426
   479
			               let
neuper@42426
   480
			                 val pp = par_pblobj pt p
wneuper@59269
   481
			                 val (errpats, nrls, prog) = case Specify.get_met (get_obj g_metID pt pp) of
wneuper@59264
   482
			                   {errpats, nrls, scr = Prog prog, ...} => (errpats, nrls, prog)
wneuper@59264
   483
			                 | _ => error "inform: uncovered case of get_met"
wneuper@59264
   484
			                 val env = case get_istate pt pos of
wneuper@59264
   485
			                   ScrState (env, _, _, _, _, _) => env
wneuper@59264
   486
			                 | _ => error "inform: uncovered case of get_istate"
neuper@42426
   487
			               in
neuper@42428
   488
			                 case check_error_patterns (f_pred, f_in) (prog, env) (errpats, nrls) of
neuper@42426
   489
			                   SOME errpatID => ("error pattern #" ^ errpatID ^ "#", calcstate')
neuper@42426
   490
			                 | NONE => msg_calcstate'
neuper@42426
   491
			               end
neuper@42423
   492
			          | _ => msg_calcstate'
neuper@42423
   493
			        end
neuper@42423
   494
			end
wneuper@59265
   495
    | NONE => ("syntax error in '" ^ istr ^ "'", Chead.e_calcstate')
neuper@37906
   496
neuper@42433
   497
(* fill-in patterns an forms.
neuper@42433
   498
  returns thm required by "fun in_fillform *)
neuper@42433
   499
fun get_fillform (subs_opt, subst) (thm, form) errpatID ((fillpatID, pat, erpaID): fillpat) =
neuper@42430
   500
  let
neuper@42430
   501
    val (form', _, _, rewritten) =
neuper@42430
   502
      rew_sub (Isac()) 1 subst e_rew_ord e_rls false [] (Trueprop $ pat) form;
neuper@42430
   503
  in (*the fillpat of the thm must be dedicated to errpatID*)
neuper@42430
   504
    if errpatID = erpaID andalso rewritten
wneuper@59264
   505
    then SOME (fillpatID, HOLogic.mk_eq (form, form'), thm, subs_opt) 
wneuper@59264
   506
    else NONE
wneuper@59264
   507
  end
neuper@42430
   508
neuper@42430
   509
fun get_fillpats subst form errpatID thm =
wneuper@59264
   510
  let
wneuper@59264
   511
    val thmDeriv = Thm.get_name_hint thm
wneuper@59264
   512
    val (part, thyID) = Rtools.thy_containing_thm thmDeriv
wneuper@59264
   513
    val theID = [part, thyID, "Theorems", thmID_of_derivation_name thmDeriv]
wneuper@59269
   514
    val fillpats = case Specify.get_the theID of
wneuper@59264
   515
      Hthm {fillpats, ...} => fillpats
wneuper@59264
   516
    | _ => error "get_fillpats: uncovered case of get_the"
wneuper@59264
   517
    val some = map (get_fillform subst (thm, form) errpatID) fillpats
wneuper@59264
   518
  in some |> filter is_some |> map the end
neuper@42430
   519
neuper@42430
   520
fun find_fillpatterns (pt, pos as (p, _): pos') errpatID =
neuper@42430
   521
  let 
neuper@42436
   522
    val f_curr = get_curr_formula (pt, pos);
neuper@42430
   523
    val pp = par_pblobj pt p
wneuper@59269
   524
    val (errpats, prog) = case Specify.get_met (get_obj g_metID pt pp) of
wneuper@59264
   525
      {errpats, scr = Prog prog, ...} => (errpats, prog)
wneuper@59264
   526
    | _ => error "find_fillpatterns: uncovered case of get_met"
wneuper@59264
   527
    val env = case get_istate pt pos of
wneuper@59264
   528
		  ScrState (env, _, _, _, _, _) => env
wneuper@59264
   529
		| _ => error "inform: uncovered case of get_istate"
wneuper@59263
   530
    val subst = Rtools.get_bdv_subst prog env
neuper@42430
   531
    val errpatthms = errpats
neuper@42430
   532
      |> filter ((curry op = errpatID) o (#1: errpat -> errpatID))
neuper@42430
   533
      |> map (#3: errpat -> thm list)
neuper@42430
   534
      |> flat
wneuper@59264
   535
  in map (get_fillpats subst f_curr errpatID) errpatthms |> flat end
neuper@37906
   536
neuper@42437
   537
(* check if an input formula is exactly equal the rewrite from a rule
neuper@42437
   538
   which is stored at the pos where the input is stored of "ok". *)
neuper@42437
   539
fun is_exactly_equal (pt, pos as (p, _)) istr =
neuper@42437
   540
  case parseNEW (assoc_thy "Isac" |> thy2ctxt) istr of
neuper@42437
   541
    NONE => ("syntax error in '" ^ istr ^ "'", Tac "")
neuper@42437
   542
  | SOME ifo => 
neuper@42437
   543
      let
neuper@42437
   544
        val p' = lev_on p;
neuper@42437
   545
        val tac = get_obj g_tac pt p';
neuper@42437
   546
      in 
neuper@42437
   547
        case applicable_in pos pt tac of
wneuper@59265
   548
          Chead.Notappl msg => (msg, Tac "")
wneuper@59265
   549
        | Chead.Appl rew =>
neuper@42437
   550
            let
neuper@42437
   551
              val res = case rew of
wneuper@59264
   552
                Rewrite_Inst' (_, _, _, _, _, _, _, (res, _)) => res
wneuper@59264
   553
              | Rewrite' (_, _, _, _, _, _, (res, _)) => res
wneuper@59264
   554
              | t => error ("is_exactly_equal: uncovered case for " ^ tac_2str t)
neuper@42437
   555
            in 
neuper@42437
   556
              if not (ifo = res)
neuper@42437
   557
              then ("input does not exactly fill the gaps", Tac "")
neuper@42437
   558
              else ("ok", tac)
neuper@42437
   559
            end
neuper@42437
   560
      end
neuper@42437
   561
neuper@42458
   562
(* fetch errpatIDs from an arbitrary tactic *)
neuper@42458
   563
fun fetchErrorpatterns tac =
neuper@42458
   564
  let
neuper@42458
   565
    val rlsID =
neuper@42458
   566
      case tac of
neuper@42458
   567
        Rewrite_Set rlsID => rlsID
neuper@42458
   568
      | Rewrite_Set_Inst (_, rlsID) => rlsID
neuper@55415
   569
      | _ => "e_rls"
wneuper@59263
   570
    val (part, thyID) = Rtools.thy_containing_rls "Isac" rlsID;
wneuper@59269
   571
    val rls = case Specify.get_the [part, thyID, "Rulesets", rlsID] of
wneuper@59264
   572
      Hrls {thy_rls = (_, rls), ...} => rls
wneuper@59264
   573
    | _ => error "fetchErrorpatterns: uncovered case of get_the"
neuper@42458
   574
  in case rls of
wneuper@59264
   575
    Rls {errpatts, ...} => errpatts
wneuper@59264
   576
  | Seq {errpatts, ...} => errpatts
wneuper@59264
   577
  | Rrls {errpatts, ...} => errpatts
wneuper@59264
   578
  | Erls => []
neuper@42458
   579
  end
wneuper@59264
   580
wneuper@59262
   581
(**)
neuper@37906
   582
end
wneuper@59262
   583
(**)