src/Pure/search.ML
author haftmann
Sun, 13 Mar 2016 10:22:46 +0100
changeset 62608 19f87fa0cfcb
parent 60940 4c108cce6b35
child 62916 621afc4607ec
permissions -rw-r--r--
more theorems on orderings
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
23178
07ba6b58b3d2 simplified/unified list fold;
wenzelm
parents: 22360
diff changeset
     1
(*  Title:      Pure/search.ML
60940
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
     2
    Author:     Lawrence C Paulson
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
     3
    Author:     Norbert Voelker, FernUniversitaet Hagen
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
     4
16179
fa7e70be26b0 header;
wenzelm
parents: 15574
diff changeset
     5
Search tacticals.
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
     6
*)
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
     7
2672
85d7e800d754 Replaced "flat" by the Basis Library function List.concat
paulson
parents: 2143
diff changeset
     8
infix 1 THEN_MAYBE THEN_MAYBE';
85d7e800d754 Replaced "flat" by the Basis Library function List.concat
paulson
parents: 2143
diff changeset
     9
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    10
signature SEARCH =
32940
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
    11
sig
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
    12
  val trace_DEPTH_FIRST: bool Unsynchronized.ref
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
    13
  val DEPTH_FIRST: (thm -> bool) -> tactic -> tactic
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
    14
  val has_fewer_prems: int -> thm -> bool
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
    15
  val IF_UNSOLVED: tactic -> tactic
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
    16
  val SOLVE: tactic -> tactic
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
    17
  val THEN_MAYBE: tactic * tactic -> tactic
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
    18
  val THEN_MAYBE': ('a -> tactic) * ('a -> tactic) -> 'a -> tactic
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
    19
  val DEPTH_SOLVE: tactic -> tactic
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
    20
  val DEPTH_SOLVE_1: tactic -> tactic
38802
a925c0ee42f7 clarified iter_deepen_limit vs meson (cf. 7c5896919eb8) -- eliminated global ref;
wenzelm
parents: 35408
diff changeset
    21
  val THEN_ITER_DEEPEN: int -> tactic -> (thm -> bool) -> (int -> tactic) -> tactic
a925c0ee42f7 clarified iter_deepen_limit vs meson (cf. 7c5896919eb8) -- eliminated global ref;
wenzelm
parents: 35408
diff changeset
    22
  val ITER_DEEPEN: int -> (thm -> bool) -> (int -> tactic) -> tactic
33335
1e189f96c393 DEEPEN: less aggressive tracing, subject to trace_DEEPEN;
wenzelm
parents: 32940
diff changeset
    23
  val trace_DEEPEN: bool Unsynchronized.ref
32940
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
    24
  val DEEPEN: int * int -> (int -> int -> tactic) -> int -> int -> tactic
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
    25
  val trace_BEST_FIRST: bool Unsynchronized.ref
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
    26
  val THEN_BEST_FIRST: tactic -> (thm -> bool) * (thm -> int) -> tactic -> tactic
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
    27
  val BEST_FIRST: (thm -> bool) * (thm -> int) -> tactic -> tactic
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
    28
  val BREADTH_FIRST: (thm -> bool) -> tactic -> tactic
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
    29
  val QUIET_BREADTH_FIRST: (thm -> bool) -> tactic -> tactic
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
    30
  val trace_ASTAR: bool Unsynchronized.ref
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
    31
  val THEN_ASTAR: tactic -> (thm -> bool) * (int -> thm -> int) -> tactic -> tactic
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
    32
  val ASTAR: (thm -> bool) * (int -> thm -> int) -> tactic -> tactic
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
    33
end;
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    34
32940
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
    35
structure Search: SEARCH =
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    36
struct
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    37
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    38
(**** Depth-first search ****)
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    39
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 29269
diff changeset
    40
val trace_DEPTH_FIRST = Unsynchronized.ref false;
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    41
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    42
(*Searches until "satp" reports proof tree as satisfied.
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    43
  Suppresses duplicate solutions to minimize search space.*)
23178
07ba6b58b3d2 simplified/unified list fold;
wenzelm
parents: 22360
diff changeset
    44
fun DEPTH_FIRST satp tac =
60940
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
    45
  let
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
    46
    val tac = tracify trace_DEPTH_FIRST tac
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
    47
    fun depth used [] = NONE
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
    48
      | depth used (q :: qs) =
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
    49
          (case Seq.pull q of
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
    50
            NONE => depth used qs
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
    51
          | SOME (st, stq) =>
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
    52
              if satp st andalso not (member Thm.eq_thm used st) then
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
    53
                SOME (st, Seq.make (fn() => depth (st :: used) (stq :: qs)))
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
    54
              else depth used (tac st :: stq :: qs));
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
    55
  in traced_tac (fn st => depth [] [Seq.single st]) end;
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    56
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    57
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    58
(*Predicate: Does the rule have fewer than n premises?*)
59582
0fbed69ff081 tuned signature -- prefer qualified names;
wenzelm
parents: 59058
diff changeset
    59
fun has_fewer_prems n rule = Thm.nprems_of rule < n;
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    60
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    61
(*Apply a tactic if subgoals remain, else do nothing.*)
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    62
val IF_UNSOLVED = COND (has_fewer_prems 1) all_tac;
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    63
5754
98744e38ded1 added SOLVE tactical
oheimb
parents: 5693
diff changeset
    64
(*Force a tactic to solve its goal completely, otherwise fail *)
98744e38ded1 added SOLVE tactical
oheimb
parents: 5693
diff changeset
    65
fun SOLVE tac = tac THEN COND (has_fewer_prems 1) all_tac no_tac;
98744e38ded1 added SOLVE tactical
oheimb
parents: 5693
diff changeset
    66
2672
85d7e800d754 Replaced "flat" by the Basis Library function List.concat
paulson
parents: 2143
diff changeset
    67
(*Execute tac1, but only execute tac2 if there are at least as many subgoals
85d7e800d754 Replaced "flat" by the Basis Library function List.concat
paulson
parents: 2143
diff changeset
    68
  as before.  This ensures that tac2 is only applied to an outcome of tac1.*)
23178
07ba6b58b3d2 simplified/unified list fold;
wenzelm
parents: 22360
diff changeset
    69
fun (tac1 THEN_MAYBE tac2) st =
59582
0fbed69ff081 tuned signature -- prefer qualified names;
wenzelm
parents: 59058
diff changeset
    70
  (tac1 THEN COND (has_fewer_prems (Thm.nprems_of st)) all_tac tac2) st;
2672
85d7e800d754 Replaced "flat" by the Basis Library function List.concat
paulson
parents: 2143
diff changeset
    71
85d7e800d754 Replaced "flat" by the Basis Library function List.concat
paulson
parents: 2143
diff changeset
    72
fun (tac1 THEN_MAYBE' tac2) x = tac1 x THEN_MAYBE tac2 x;
85d7e800d754 Replaced "flat" by the Basis Library function List.concat
paulson
parents: 2143
diff changeset
    73
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    74
(*Tactical to reduce the number of premises by 1.
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    75
  If no subgoals then it must fail! *)
3538
ed9de44032e0 Removal of the tactical STATE
paulson
parents: 2869
diff changeset
    76
fun DEPTH_SOLVE_1 tac st = st |>
59582
0fbed69ff081 tuned signature -- prefer qualified names;
wenzelm
parents: 59058
diff changeset
    77
  (case Thm.nprems_of st of
0fbed69ff081 tuned signature -- prefer qualified names;
wenzelm
parents: 59058
diff changeset
    78
    0 => no_tac
0fbed69ff081 tuned signature -- prefer qualified names;
wenzelm
parents: 59058
diff changeset
    79
  | n => DEPTH_FIRST (has_fewer_prems n) tac);
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    80
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    81
(*Uses depth-first search to solve ALL subgoals*)
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    82
val DEPTH_SOLVE = DEPTH_FIRST (has_fewer_prems 1);
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    83
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    84
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    85
2869
acee08856cc9 DEEPEN now takes an upper bound for terminating searches
paulson
parents: 2672
diff changeset
    86
(**** Iterative deepening with pruning ****)
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    87
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    88
fun has_vars (Var _) = true
60940
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
    89
  | has_vars (Abs (_, _, t)) = has_vars t
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
    90
  | has_vars (f $ t) = has_vars f orelse has_vars t
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    91
  | has_vars _ = false;
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    92
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    93
(*Counting of primitive inferences is APPROXIMATE, as the step tactic
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    94
  may perform >1 inference*)
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    95
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
    96
(*Pruning of rigid ancestor to prevent backtracking*)
23178
07ba6b58b3d2 simplified/unified list fold;
wenzelm
parents: 22360
diff changeset
    97
fun prune (new as (k', np':int, rgd', stq), qs) =
60940
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
    98
  let
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
    99
    fun prune_aux (qs, []) = new :: qs
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   100
      | prune_aux (qs, (k, np, rgd, q) :: rqs) =
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   101
          if np' + 1 = np andalso rgd then
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   102
            (if !trace_DEPTH_FIRST then
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   103
                 tracing ("Pruning " ^
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   104
                          string_of_int (1+length rqs) ^ " levels")
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   105
             else ();
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   106
             (*Use OLD k: zero-cost solution; see Stickel, p 365*)
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   107
             (k, np', rgd', stq) :: qs)
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   108
          else prune_aux ((k, np, rgd, q) :: qs, rqs)
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   109
      fun take ([], rqs) = ([], rqs)
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   110
        | take (arg as ((k, np, rgd, stq) :: qs, rqs)) =
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   111
            if np' < np then take (qs, (k, np, rgd, stq) :: rqs) else arg;
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   112
  in prune_aux (take (qs, [])) end;
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   113
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   114
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   115
(*Depth-first iterative deepening search for a state that satisfies satp
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   116
  tactic tac0 sets up the initial goal queue, while tac1 searches it.
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   117
  The solution sequence is redundant: the cutoff heuristic makes it impossible
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   118
  to suppress solutions arising from earlier searches, as the accumulated cost
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   119
  (k) can be wrong.*)
38802
a925c0ee42f7 clarified iter_deepen_limit vs meson (cf. 7c5896919eb8) -- eliminated global ref;
wenzelm
parents: 35408
diff changeset
   120
fun THEN_ITER_DEEPEN lim tac0 satp tac1 = traced_tac (fn st =>
60940
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   121
  let
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   122
    val countr = Unsynchronized.ref 0
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   123
    and tf = tracify trace_DEPTH_FIRST (tac1 1)
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   124
    and qs0 = tac0 st
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   125
     (*bnd = depth bound; inc = estimate of increment required next*)
60940
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   126
    fun depth (bnd, inc) [] =
38802
a925c0ee42f7 clarified iter_deepen_limit vs meson (cf. 7c5896919eb8) -- eliminated global ref;
wenzelm
parents: 35408
diff changeset
   127
          if bnd > lim then
60940
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   128
           (if !trace_DEPTH_FIRST then
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   129
             tracing (string_of_int (! countr) ^
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   130
              " inferences so far.  Giving up at " ^ string_of_int bnd)
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   131
            else ();
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   132
            NONE)
22025
7c5896919eb8 Introduction of a bound on DEPTH_ITER, to prevent the meson method from running forever
paulson
parents: 20852
diff changeset
   133
          else
60940
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   134
           (if !trace_DEPTH_FIRST then
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   135
              tracing (string_of_int (!countr) ^
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   136
                " inferences so far.  Searching to depth " ^ string_of_int bnd)
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   137
            else ();
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   138
            (*larger increments make it run slower for the hard problems*)
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   139
            depth (bnd + inc, 10)) [(0, 1, false, qs0)]
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   140
      | depth (bnd, inc) ((k, np, rgd, q) :: qs) =
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   141
          if k >= bnd then depth (bnd, inc) qs
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   142
          else
60940
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   143
           (case
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   144
             (Unsynchronized.inc countr;
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   145
              if !trace_DEPTH_FIRST then
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   146
                tracing (string_of_int np ^ implode (map (fn _ => "*") qs))
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   147
              else ();
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   148
              Seq.pull q) of
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   149
             NONE => depth (bnd, inc) qs
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   150
           | SOME (st, stq) =>
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   151
              if satp st then (*solution!*)
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   152
                SOME(st, Seq.make (fn() => depth (bnd, inc) ((k, np, rgd, stq) :: qs)))
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   153
              else
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   154
                let
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   155
                  val np' = Thm.nprems_of st;
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   156
                  (*rgd' calculation assumes tactic operates on subgoal 1*)
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   157
                  val rgd' = not (has_vars (hd (Thm.prems_of st)));
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   158
                  val k' = k + np' - np + 1;  (*difference in # of subgoals, +1*)
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   159
                in
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   160
                  if k' + np' >= bnd then depth (bnd, Int.min (inc, k' + np' + 1 - bnd)) qs
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   161
                  else if np' < np (*solved a subgoal; prune rigid ancestors*)
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   162
                  then depth (bnd, inc) (prune ((k', np', rgd', tf st), (k, np, rgd, stq) :: qs))
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   163
                  else depth (bnd, inc) ((k', np', rgd', tf st) :: (k, np, rgd, stq) :: qs)
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   164
                end)
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   165
  in depth (0, 5) [] end);
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   166
38802
a925c0ee42f7 clarified iter_deepen_limit vs meson (cf. 7c5896919eb8) -- eliminated global ref;
wenzelm
parents: 35408
diff changeset
   167
fun ITER_DEEPEN lim = THEN_ITER_DEEPEN lim all_tac;
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   168
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   169
2869
acee08856cc9 DEEPEN now takes an upper bound for terminating searches
paulson
parents: 2672
diff changeset
   170
(*Simple iterative deepening tactical.  It merely "deepens" any search tactic
acee08856cc9 DEEPEN now takes an upper bound for terminating searches
paulson
parents: 2672
diff changeset
   171
  using increment "inc" up to limit "lim". *)
33335
1e189f96c393 DEEPEN: less aggressive tracing, subject to trace_DEEPEN;
wenzelm
parents: 32940
diff changeset
   172
val trace_DEEPEN = Unsynchronized.ref false;
1e189f96c393 DEEPEN: less aggressive tracing, subject to trace_DEEPEN;
wenzelm
parents: 32940
diff changeset
   173
38802
a925c0ee42f7 clarified iter_deepen_limit vs meson (cf. 7c5896919eb8) -- eliminated global ref;
wenzelm
parents: 35408
diff changeset
   174
fun DEEPEN (inc, lim) tacf m i =
33380
cd6023a9a922 DEEPEN: all tracing is subject to trace_DEEPEN (NB: Proof General tends to "popup" tracing output);
wenzelm
parents: 33335
diff changeset
   175
  let
cd6023a9a922 DEEPEN: all tracing is subject to trace_DEEPEN (NB: Proof General tends to "popup" tracing output);
wenzelm
parents: 33335
diff changeset
   176
    fun dpn m st =
cd6023a9a922 DEEPEN: all tracing is subject to trace_DEEPEN (NB: Proof General tends to "popup" tracing output);
wenzelm
parents: 33335
diff changeset
   177
      st |>
cd6023a9a922 DEEPEN: all tracing is subject to trace_DEEPEN (NB: Proof General tends to "popup" tracing output);
wenzelm
parents: 33335
diff changeset
   178
       (if has_fewer_prems i st then no_tac
38802
a925c0ee42f7 clarified iter_deepen_limit vs meson (cf. 7c5896919eb8) -- eliminated global ref;
wenzelm
parents: 35408
diff changeset
   179
        else if m > lim then
33380
cd6023a9a922 DEEPEN: all tracing is subject to trace_DEEPEN (NB: Proof General tends to "popup" tracing output);
wenzelm
parents: 33335
diff changeset
   180
          (if !trace_DEEPEN then tracing "Search depth limit exceeded: giving up" else ();
cd6023a9a922 DEEPEN: all tracing is subject to trace_DEEPEN (NB: Proof General tends to "popup" tracing output);
wenzelm
parents: 33335
diff changeset
   181
            no_tac)
cd6023a9a922 DEEPEN: all tracing is subject to trace_DEEPEN (NB: Proof General tends to "popup" tracing output);
wenzelm
parents: 33335
diff changeset
   182
        else
cd6023a9a922 DEEPEN: all tracing is subject to trace_DEEPEN (NB: Proof General tends to "popup" tracing output);
wenzelm
parents: 33335
diff changeset
   183
          (if !trace_DEEPEN then tracing ("Search depth = " ^ string_of_int m) else ();
cd6023a9a922 DEEPEN: all tracing is subject to trace_DEEPEN (NB: Proof General tends to "popup" tracing output);
wenzelm
parents: 33335
diff changeset
   184
            tacf m i  ORELSE  dpn (m+inc)))
2869
acee08856cc9 DEEPEN now takes an upper bound for terminating searches
paulson
parents: 2672
diff changeset
   185
  in  dpn m  end;
23178
07ba6b58b3d2 simplified/unified list fold;
wenzelm
parents: 22360
diff changeset
   186
32940
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
   187
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   188
(*** Best-first search ***)
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   189
32940
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
   190
(*total ordering on theorems, allowing duplicates to be found*)
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
   191
structure Thm_Heap = Heap
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
   192
(
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
   193
  type elem = int * thm;
59058
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 55171
diff changeset
   194
  val ord = prod_ord int_ord (Term_Ord.term_ord o apply2 Thm.prop_of);
32940
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
   195
);
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
   196
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 29269
diff changeset
   197
val trace_BEST_FIRST = Unsynchronized.ref false;
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   198
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   199
(*For creating output sequence*)
60940
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   200
fun some_of_list [] = NONE
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   201
  | some_of_list (x :: l) = SOME (x, Seq.make (fn () => some_of_list l));
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   202
9094
530e7a33b3dd now uses the heap data structure for BEST_FIRST
paulson
parents: 8149
diff changeset
   203
(*Check for and delete duplicate proof states*)
32940
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
   204
fun delete_all_min prf heap =
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
   205
  if Thm_Heap.is_empty heap then heap
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
   206
  else if Thm.eq_thm (prf, #2 (Thm_Heap.min heap))
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
   207
  then delete_all_min prf (Thm_Heap.delete_min heap)
51d450f278ce tuned signature;
wenzelm
parents: 32939
diff changeset
   208
  else heap;
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   209
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   210
(*Best-first search for a state that satisfies satp (incl initial state)
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   211
  Function sizef estimates size of problem remaining (smaller means better).
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   212
  tactic tac0 sets up the initial priority queue, while tac1 searches it. *)
23178
07ba6b58b3d2 simplified/unified list fold;
wenzelm
parents: 22360
diff changeset
   213
fun THEN_BEST_FIRST tac0 (satp, sizef) tac1 =
60940
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   214
  let
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   215
    val tac = tracify trace_BEST_FIRST tac1;
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   216
    fun pairsize th = (sizef th, th);
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   217
    fun bfs (news, nprf_heap) =
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   218
      (case List.partition satp news of
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   219
        ([], nonsats) => next (fold_rev Thm_Heap.insert (map pairsize nonsats) nprf_heap)
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   220
      | (sats, _)  => some_of_list sats)
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   221
    and next nprf_heap =
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   222
      if Thm_Heap.is_empty nprf_heap then NONE
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   223
      else
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   224
        let
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   225
          val (n, prf) = Thm_Heap.min nprf_heap;
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   226
          val _ =
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   227
            if !trace_BEST_FIRST
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   228
            then tracing("state size = " ^ string_of_int n)
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   229
            else ();
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   230
        in
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   231
          bfs (Seq.list_of (tac prf), delete_all_min prf (Thm_Heap.delete_min nprf_heap))
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   232
        end;
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   233
    fun btac st = bfs (Seq.list_of (tac0 st), Thm_Heap.empty)
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   234
  in traced_tac btac end;
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   235
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   236
(*Ordinary best-first search, with no initial tactic*)
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   237
val BEST_FIRST = THEN_BEST_FIRST all_tac;
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   238
23178
07ba6b58b3d2 simplified/unified list fold;
wenzelm
parents: 22360
diff changeset
   239
(*Breadth-first search to satisfy satpred (including initial state)
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   240
  SLOW -- SHOULD NOT USE APPEND!*)
60940
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   241
fun gen_BREADTH_FIRST message satpred (tac: tactic) =
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   242
  let
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   243
    val tacf = Seq.list_of o tac;
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   244
    fun bfs prfs =
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   245
      (case List.partition satpred prfs of
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   246
        ([], []) => []
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   247
      | ([], nonsats) =>
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   248
          (message ("breadth=" ^ string_of_int (length nonsats));
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   249
           bfs (maps tacf nonsats))
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   250
      | (sats, _)  => sats);
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   251
  in fn st => Seq.of_list (bfs [st]) end;
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   252
12262
11ff5f47df6e use tracing function for trace output;
wenzelm
parents: 9411
diff changeset
   253
val BREADTH_FIRST = gen_BREADTH_FIRST tracing;
5693
998af7667fa3 QUIET_BREADTH_FIRST;
wenzelm
parents: 4270
diff changeset
   254
val QUIET_BREADTH_FIRST = gen_BREADTH_FIRST (K ());
998af7667fa3 QUIET_BREADTH_FIRST;
wenzelm
parents: 4270
diff changeset
   255
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   256
60940
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   257
(*
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   258
  Implementation of A*-like proof procedure by modification
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   259
  of the existing code for BEST_FIRST and best_tac so that the
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   260
  current level of search is taken into account.
23178
07ba6b58b3d2 simplified/unified list fold;
wenzelm
parents: 22360
diff changeset
   261
*)
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   262
60940
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   263
(*Insertion into priority queue of states, marked with level*)
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   264
fun insert_with_level (lnth: int * int * thm) [] = [lnth]
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   265
  | insert_with_level (l, m, th) ((l', n, th') :: nths) =
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   266
      if  n < m then (l', n, th') :: insert_with_level (l, m, th) nths
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   267
      else if n = m andalso Thm.eq_thm (th, th') then (l', n, th') :: nths
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   268
      else (l, m, th) :: (l', n, th') :: nths;
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   269
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   270
(*For creating output sequence*)
60940
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   271
fun some_of_list [] = NONE
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   272
  | some_of_list (x :: xs) = SOME (x, Seq.make (fn () => some_of_list xs));
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   273
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 29269
diff changeset
   274
val trace_ASTAR = Unsynchronized.ref false;
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   275
23178
07ba6b58b3d2 simplified/unified list fold;
wenzelm
parents: 22360
diff changeset
   276
fun THEN_ASTAR tac0 (satp, costf) tac1 =
60940
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   277
  let
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   278
    val tf = tracify trace_ASTAR tac1;
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   279
    fun bfs (news, nprfs, level) =
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   280
      let fun cost thm = (level, costf level thm, thm) in
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   281
        (case List.partition satp news of
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   282
          ([], nonsats) => next (fold_rev (insert_with_level o cost) nonsats nprfs)
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   283
        | (sats, _) => some_of_list sats)
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   284
      end
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   285
    and next [] = NONE
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   286
      | next ((level, n, prf) :: nprfs) =
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   287
         (if !trace_ASTAR then
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   288
          tracing ("level = " ^ string_of_int level ^
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   289
                   "  cost = " ^ string_of_int n ^
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   290
                   "  queue length =" ^ string_of_int (length nprfs))
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   291
          else ();
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   292
          bfs (Seq.list_of (tf prf), nprfs, level + 1))
4c108cce6b35 tuned whitespace;
wenzelm
parents: 59582
diff changeset
   293
    fun tf st = bfs (Seq.list_of (tac0 st), [], 0);
1588
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   294
  in traced_tac tf end;
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   295
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   296
(*Ordinary ASTAR, with no initial tactic*)
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   297
val ASTAR = THEN_ASTAR all_tac;
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   298
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   299
end;
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   300
fff3738830f5 New file containing search tacticals
paulson
parents:
diff changeset
   301
open Search;