src/Pure/Tools/find_theorems.ML
author krauss
Mon, 30 May 2011 17:07:48 +0200
changeset 43067 76e1d25c6357
parent 42669 04dfffda5671
child 43068 ac769b5edd1d
permissions -rw-r--r--
separate query parsing from actual search
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
30143
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
     1
(*  Title:      Pure/Tools/find_theorems.ML
26283
e19a5a7e83f1 more precise Author line;
wenzelm
parents: 25992
diff changeset
     2
    Author:     Rafal Kolanski and Gerwin Klein, NICTA
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
     3
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
     4
Retrieve theorems from proof context.
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
     5
*)
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
     6
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
     7
signature FIND_THEOREMS =
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
     8
sig
16036
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
     9
  datatype 'term criterion =
31042
d452117ba564 Prototype introiff option for find_theorems.
Timothy Bourke
parents: 30822
diff changeset
    10
    Name of string | Intro | IntroIff | Elim | Dest | Solves | Simp of 'term |
29857
2cc976ed8a3c FindTheorems: add solves feature; tidy up const name subsettin; patch by Timothy Bourke
kleing
parents: 29848
diff changeset
    11
    Pattern of 'term
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
    12
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
    13
  datatype theorem =
41845
6611b9cef38b reactivate time measurement (partly reverting c27b0b37041a);
krauss
parents: 41844
diff changeset
    14
    Internal of Facts.ref * thm | External of Facts.ref * term
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
    15
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32149
diff changeset
    16
  val tac_limit: int Unsynchronized.ref
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32149
diff changeset
    17
  val limit: int Unsynchronized.ref
43067
76e1d25c6357 separate query parsing from actual search
krauss
parents: 42669
diff changeset
    18
76e1d25c6357 separate query parsing from actual search
krauss
parents: 42669
diff changeset
    19
  val read_criterion: Proof.context -> string criterion -> term criterion
76e1d25c6357 separate query parsing from actual search
krauss
parents: 42669
diff changeset
    20
30785
15f64e05e703 Limit the number of results returned by auto_solves.
Timothy Bourke
parents: 30693
diff changeset
    21
  val find_theorems: Proof.context -> thm option -> int option -> bool ->
43067
76e1d25c6357 separate query parsing from actual search
krauss
parents: 42669
diff changeset
    22
    (bool * term criterion) list -> int option * (Facts.ref * thm) list
76e1d25c6357 separate query parsing from actual search
krauss
parents: 42669
diff changeset
    23
  val find_theorems_cmd: Proof.context -> thm option -> int option -> bool ->
30785
15f64e05e703 Limit the number of results returned by auto_solves.
Timothy Bourke
parents: 30693
diff changeset
    24
    (bool * string criterion) list -> int option * (Facts.ref * thm) list
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
    25
  val filter_theorems: Proof.context -> theorem list -> thm option ->
43067
76e1d25c6357 separate query parsing from actual search
krauss
parents: 42669
diff changeset
    26
    int option -> bool -> (bool * term criterion) list ->
76e1d25c6357 separate query parsing from actual search
krauss
parents: 42669
diff changeset
    27
    int option * theorem list
76e1d25c6357 separate query parsing from actual search
krauss
parents: 42669
diff changeset
    28
  val filter_theorems_cmd: Proof.context -> theorem list -> thm option ->
41841
c27b0b37041a Refactor find_theorems to provide a more general filter_facts method
noschinl
parents: 41835
diff changeset
    29
    int option -> bool -> (bool * string criterion) list ->
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
    30
    int option * theorem list
41841
c27b0b37041a Refactor find_theorems to provide a more general filter_facts method
noschinl
parents: 41835
diff changeset
    31
41845
6611b9cef38b reactivate time measurement (partly reverting c27b0b37041a);
krauss
parents: 41844
diff changeset
    32
  val pretty_theorem: Proof.context -> theorem -> Pretty.T
30186
1f836e949ac2 replaced archaic Display.pretty_fact by FindTheorems.pretty_thm, which observes the context properly (as did the former prt_fact already);
wenzelm
parents: 30143
diff changeset
    33
  val pretty_thm: Proof.context -> Facts.ref * thm -> Pretty.T
41845
6611b9cef38b reactivate time measurement (partly reverting c27b0b37041a);
krauss
parents: 41844
diff changeset
    34
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
    35
end;
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
    36
33301
1fe9fc908ec3 less hermetic ML;
wenzelm
parents: 33290
diff changeset
    37
structure Find_Theorems: FIND_THEOREMS =
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
    38
struct
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
    39
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
    40
(** search criteria **)
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
    41
16036
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
    42
datatype 'term criterion =
31042
d452117ba564 Prototype introiff option for find_theorems.
Timothy Bourke
parents: 30822
diff changeset
    43
  Name of string | Intro | IntroIff | Elim | Dest | Solves | Simp of 'term |
29857
2cc976ed8a3c FindTheorems: add solves feature; tidy up const name subsettin; patch by Timothy Bourke
kleing
parents: 29848
diff changeset
    44
  Pattern of 'term;
16036
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
    45
33036
c61fe520602b find_theorems: better handling of abbreviations (by Timothy Bourke)
kleing
parents: 33029
diff changeset
    46
fun apply_dummies tm =
33301
1fe9fc908ec3 less hermetic ML;
wenzelm
parents: 33290
diff changeset
    47
  let
1fe9fc908ec3 less hermetic ML;
wenzelm
parents: 33290
diff changeset
    48
    val (xs, _) = Term.strip_abs tm;
1fe9fc908ec3 less hermetic ML;
wenzelm
parents: 33290
diff changeset
    49
    val tm' = Term.betapplys (tm, map (Term.dummy_pattern o #2) xs);
1fe9fc908ec3 less hermetic ML;
wenzelm
parents: 33290
diff changeset
    50
  in #1 (Term.replace_dummy_patterns tm' 1) end;
33036
c61fe520602b find_theorems: better handling of abbreviations (by Timothy Bourke)
kleing
parents: 33029
diff changeset
    51
c61fe520602b find_theorems: better handling of abbreviations (by Timothy Bourke)
kleing
parents: 33029
diff changeset
    52
fun parse_pattern ctxt nm =
c61fe520602b find_theorems: better handling of abbreviations (by Timothy Bourke)
kleing
parents: 33029
diff changeset
    53
  let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
    54
    val consts = Proof_Context.consts_of ctxt;
33301
1fe9fc908ec3 less hermetic ML;
wenzelm
parents: 33290
diff changeset
    55
    val nm' =
1fe9fc908ec3 less hermetic ML;
wenzelm
parents: 33290
diff changeset
    56
      (case Syntax.parse_term ctxt nm of
1fe9fc908ec3 less hermetic ML;
wenzelm
parents: 33290
diff changeset
    57
        Const (c, _) => c
1fe9fc908ec3 less hermetic ML;
wenzelm
parents: 33290
diff changeset
    58
      | _ => Consts.intern consts nm);
33036
c61fe520602b find_theorems: better handling of abbreviations (by Timothy Bourke)
kleing
parents: 33029
diff changeset
    59
  in
33301
1fe9fc908ec3 less hermetic ML;
wenzelm
parents: 33290
diff changeset
    60
    (case try (Consts.the_abbreviation consts) nm' of
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
    61
      SOME (_, rhs) => apply_dummies (Proof_Context.expand_abbrevs ctxt rhs)
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
    62
    | NONE => Proof_Context.read_term_pattern ctxt nm)
33036
c61fe520602b find_theorems: better handling of abbreviations (by Timothy Bourke)
kleing
parents: 33029
diff changeset
    63
  end;
c61fe520602b find_theorems: better handling of abbreviations (by Timothy Bourke)
kleing
parents: 33029
diff changeset
    64
16036
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
    65
fun read_criterion _ (Name name) = Name name
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
    66
  | read_criterion _ Intro = Intro
31042
d452117ba564 Prototype introiff option for find_theorems.
Timothy Bourke
parents: 30822
diff changeset
    67
  | read_criterion _ IntroIff = IntroIff
16036
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
    68
  | read_criterion _ Elim = Elim
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
    69
  | read_criterion _ Dest = Dest
29857
2cc976ed8a3c FindTheorems: add solves feature; tidy up const name subsettin; patch by Timothy Bourke
kleing
parents: 29848
diff changeset
    70
  | read_criterion _ Solves = Solves
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
    71
  | read_criterion ctxt (Simp str) = Simp (Proof_Context.read_term_pattern ctxt str)
33036
c61fe520602b find_theorems: better handling of abbreviations (by Timothy Bourke)
kleing
parents: 33029
diff changeset
    72
  | read_criterion ctxt (Pattern str) = Pattern (parse_pattern ctxt str);
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
    73
16036
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
    74
fun pretty_criterion ctxt (b, c) =
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
    75
  let
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
    76
    fun prfx s = if b then s else "-" ^ s;
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
    77
  in
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
    78
    (case c of
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
    79
      Name name => Pretty.str (prfx "name: " ^ quote name)
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
    80
    | Intro => Pretty.str (prfx "intro")
31042
d452117ba564 Prototype introiff option for find_theorems.
Timothy Bourke
parents: 30822
diff changeset
    81
    | IntroIff => Pretty.str (prfx "introiff")
16036
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
    82
    | Elim => Pretty.str (prfx "elim")
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
    83
    | Dest => Pretty.str (prfx "dest")
29857
2cc976ed8a3c FindTheorems: add solves feature; tidy up const name subsettin; patch by Timothy Bourke
kleing
parents: 29848
diff changeset
    84
    | Solves => Pretty.str (prfx "solves")
16088
f084ba24de29 cleaned up select_match
kleing
parents: 16077
diff changeset
    85
    | Simp pat => Pretty.block [Pretty.str (prfx "simp:"), Pretty.brk 1,
24920
2a45e400fdad generic Syntax.pretty/string_of operations;
wenzelm
parents: 24683
diff changeset
    86
        Pretty.quote (Syntax.pretty_term ctxt (Term.show_dummy_patterns pat))]
16036
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
    87
    | Pattern pat => Pretty.enclose (prfx " \"") "\""
24920
2a45e400fdad generic Syntax.pretty/string_of operations;
wenzelm
parents: 24683
diff changeset
    88
        [Syntax.pretty_term ctxt (Term.show_dummy_patterns pat)])
16036
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
    89
  end;
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
    90
30142
8d6145694bb5 moved find_theorems.ML and find_consts.ML to Pure/Tools, collecting main implementation in one place each;
wenzelm
parents: 29882
diff changeset
    91
41845
6611b9cef38b reactivate time measurement (partly reverting c27b0b37041a);
krauss
parents: 41844
diff changeset
    92
(** theorems, either internal or external (without proof) **)
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
    93
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
    94
datatype theorem =
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
    95
  Internal of Facts.ref * thm |
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
    96
  External of Facts.ref * term;
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
    97
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
    98
fun prop_of (Internal (_, thm)) = Thm.full_prop_of thm
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
    99
  | prop_of (External (_, prop)) = prop;
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   100
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   101
fun nprems_of (Internal (_, thm)) = Thm.nprems_of thm
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   102
  | nprems_of (External (_, prop)) = Logic.count_prems prop;
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   103
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   104
fun major_prem_of (Internal (_, thm)) = Thm.major_prem_of thm
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   105
  | major_prem_of (External (_, prop)) =
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   106
      Logic.strip_assums_concl (hd (Logic.strip_imp_prems prop));
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   107
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   108
fun fact_ref_of (Internal (fact_ref, _)) = fact_ref
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   109
  | fact_ref_of (External (fact_ref, _)) = fact_ref;
30142
8d6145694bb5 moved find_theorems.ML and find_consts.ML to Pure/Tools, collecting main implementation in one place each;
wenzelm
parents: 29882
diff changeset
   110
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   111
(** search criterion filters **)
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   112
16895
df67fc190e06 Sort search results in order of relevance, where relevance =
kleing
parents: 16486
diff changeset
   113
(*generated filters are to be of the form
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   114
  input: theorem
17106
2bd6c20cdda1 use theory instead of obsolete Sign.sg;
wenzelm
parents: 16964
diff changeset
   115
  output: (p:int, s:int) option, where
16895
df67fc190e06 Sort search results in order of relevance, where relevance =
kleing
parents: 16486
diff changeset
   116
    NONE indicates no match
17106
2bd6c20cdda1 use theory instead of obsolete Sign.sg;
wenzelm
parents: 16964
diff changeset
   117
    p is the primary sorting criterion
16895
df67fc190e06 Sort search results in order of relevance, where relevance =
kleing
parents: 16486
diff changeset
   118
      (eg. number of assumptions in the theorem)
df67fc190e06 Sort search results in order of relevance, where relevance =
kleing
parents: 16486
diff changeset
   119
    s is the secondary sorting criterion
df67fc190e06 Sort search results in order of relevance, where relevance =
kleing
parents: 16486
diff changeset
   120
      (eg. size of the substitution for intro, elim and dest)
df67fc190e06 Sort search results in order of relevance, where relevance =
kleing
parents: 16486
diff changeset
   121
  when applying a set of filters to a thm, fold results in:
df67fc190e06 Sort search results in order of relevance, where relevance =
kleing
parents: 16486
diff changeset
   122
    (biggest p, sum of all s)
17106
2bd6c20cdda1 use theory instead of obsolete Sign.sg;
wenzelm
parents: 16964
diff changeset
   123
  currently p and s only matter for intro, elim, dest and simp filters,
2bd6c20cdda1 use theory instead of obsolete Sign.sg;
wenzelm
parents: 16964
diff changeset
   124
  otherwise the default ordering is used.
16895
df67fc190e06 Sort search results in order of relevance, where relevance =
kleing
parents: 16486
diff changeset
   125
*)
df67fc190e06 Sort search results in order of relevance, where relevance =
kleing
parents: 16486
diff changeset
   126
16088
f084ba24de29 cleaned up select_match
kleing
parents: 16077
diff changeset
   127
f084ba24de29 cleaned up select_match
kleing
parents: 16077
diff changeset
   128
(* matching theorems *)
17106
2bd6c20cdda1 use theory instead of obsolete Sign.sg;
wenzelm
parents: 16964
diff changeset
   129
35625
9c818cab0dd0 modernized structure Object_Logic;
wenzelm
parents: 35408
diff changeset
   130
fun is_nontrivial thy = Term.is_Const o Term.head_of o Object_Logic.drop_judgment thy;
16088
f084ba24de29 cleaned up select_match
kleing
parents: 16077
diff changeset
   131
32798
4b85b59a9f66 misc tuning and simplification;
wenzelm
parents: 32738
diff changeset
   132
(*educated guesses on HOL*)  (* FIXME broken *)
4b85b59a9f66 misc tuning and simplification;
wenzelm
parents: 32738
diff changeset
   133
val boolT = Type ("bool", []);
4b85b59a9f66 misc tuning and simplification;
wenzelm
parents: 32738
diff changeset
   134
val iff_const = Const ("op =", boolT --> boolT --> boolT);
31042
d452117ba564 Prototype introiff option for find_theorems.
Timothy Bourke
parents: 30822
diff changeset
   135
16964
6a25e42eaff5 Ordering is now: first by number of assumptions, second by the substitution size.
kleing
parents: 16895
diff changeset
   136
(*extract terms from term_src, refine them to the parts that concern us,
6a25e42eaff5 Ordering is now: first by number of assumptions, second by the substitution size.
kleing
parents: 16895
diff changeset
   137
  if po try match them against obj else vice versa.
6a25e42eaff5 Ordering is now: first by number of assumptions, second by the substitution size.
kleing
parents: 16895
diff changeset
   138
  trivial matches are ignored.
6a25e42eaff5 Ordering is now: first by number of assumptions, second by the substitution size.
kleing
parents: 16895
diff changeset
   139
  returns: smallest substitution size*)
31042
d452117ba564 Prototype introiff option for find_theorems.
Timothy Bourke
parents: 30822
diff changeset
   140
fun is_matching_thm doiff (extract_terms, refine_term) ctxt po obj term_src =
16088
f084ba24de29 cleaned up select_match
kleing
parents: 16077
diff changeset
   141
  let
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
   142
    val thy = Proof_Context.theory_of ctxt;
16088
f084ba24de29 cleaned up select_match
kleing
parents: 16077
diff changeset
   143
32798
4b85b59a9f66 misc tuning and simplification;
wenzelm
parents: 32738
diff changeset
   144
    fun check_match pat = Pattern.matches thy (if po then (pat, obj) else (obj, pat));
16486
1a12cdb6ee6b get_thm(s): Name;
wenzelm
parents: 16088
diff changeset
   145
    fun matches pat =
31042
d452117ba564 Prototype introiff option for find_theorems.
Timothy Bourke
parents: 30822
diff changeset
   146
      let
35625
9c818cab0dd0 modernized structure Object_Logic;
wenzelm
parents: 35408
diff changeset
   147
        val jpat = Object_Logic.drop_judgment thy pat;
31042
d452117ba564 Prototype introiff option for find_theorems.
Timothy Bourke
parents: 30822
diff changeset
   148
        val c = Term.head_of jpat;
d452117ba564 Prototype introiff option for find_theorems.
Timothy Bourke
parents: 30822
diff changeset
   149
        val pats =
d452117ba564 Prototype introiff option for find_theorems.
Timothy Bourke
parents: 30822
diff changeset
   150
          if Term.is_Const c
32798
4b85b59a9f66 misc tuning and simplification;
wenzelm
parents: 32738
diff changeset
   151
          then
4b85b59a9f66 misc tuning and simplification;
wenzelm
parents: 32738
diff changeset
   152
            if doiff andalso c = iff_const then
35625
9c818cab0dd0 modernized structure Object_Logic;
wenzelm
parents: 35408
diff changeset
   153
              (pat :: map (Object_Logic.ensure_propT thy) (snd (strip_comb jpat)))
32798
4b85b59a9f66 misc tuning and simplification;
wenzelm
parents: 32738
diff changeset
   154
                |> filter (is_nontrivial thy)
4b85b59a9f66 misc tuning and simplification;
wenzelm
parents: 32738
diff changeset
   155
            else [pat]
31042
d452117ba564 Prototype introiff option for find_theorems.
Timothy Bourke
parents: 30822
diff changeset
   156
          else [];
32798
4b85b59a9f66 misc tuning and simplification;
wenzelm
parents: 32738
diff changeset
   157
      in filter check_match pats end;
16895
df67fc190e06 Sort search results in order of relevance, where relevance =
kleing
parents: 16486
diff changeset
   158
df67fc190e06 Sort search results in order of relevance, where relevance =
kleing
parents: 16486
diff changeset
   159
    fun substsize pat =
18184
43c4589a9a78 tuned Pattern.match/unify;
wenzelm
parents: 17972
diff changeset
   160
      let val (_, subst) =
43c4589a9a78 tuned Pattern.match/unify;
wenzelm
parents: 17972
diff changeset
   161
        Pattern.match thy (if po then (pat, obj) else (obj, pat)) (Vartab.empty, Vartab.empty)
17205
8994750ae33c refer to theory instead of low-level tsig;
wenzelm
parents: 17106
diff changeset
   162
      in Vartab.fold (fn (_, (_, t)) => fn n => size_of_term t + n) subst 0 end;
16088
f084ba24de29 cleaned up select_match
kleing
parents: 16077
diff changeset
   163
16895
df67fc190e06 Sort search results in order of relevance, where relevance =
kleing
parents: 16486
diff changeset
   164
    fun bestmatch [] = NONE
33029
2fefe039edf1 uniform use of Integer.min/max;
wenzelm
parents: 32859
diff changeset
   165
      | bestmatch xs = SOME (foldl1 Int.min xs);
16895
df67fc190e06 Sort search results in order of relevance, where relevance =
kleing
parents: 16486
diff changeset
   166
16964
6a25e42eaff5 Ordering is now: first by number of assumptions, second by the substitution size.
kleing
parents: 16895
diff changeset
   167
    val match_thm = matches o refine_term;
16486
1a12cdb6ee6b get_thm(s): Name;
wenzelm
parents: 16088
diff changeset
   168
  in
32798
4b85b59a9f66 misc tuning and simplification;
wenzelm
parents: 32738
diff changeset
   169
    maps match_thm (extract_terms term_src)
31042
d452117ba564 Prototype introiff option for find_theorems.
Timothy Bourke
parents: 30822
diff changeset
   170
    |> map substsize
26283
e19a5a7e83f1 more precise Author line;
wenzelm
parents: 25992
diff changeset
   171
    |> bestmatch
16088
f084ba24de29 cleaned up select_match
kleing
parents: 16077
diff changeset
   172
  end;
f084ba24de29 cleaned up select_match
kleing
parents: 16077
diff changeset
   173
f084ba24de29 cleaned up select_match
kleing
parents: 16077
diff changeset
   174
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   175
(* filter_name *)
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   176
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   177
fun filter_name str_pat theorem =
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   178
  if match_string str_pat (Facts.name_of_ref (fact_ref_of theorem))
17205
8994750ae33c refer to theory instead of low-level tsig;
wenzelm
parents: 17106
diff changeset
   179
  then SOME (0, 0) else NONE;
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   180
30142
8d6145694bb5 moved find_theorems.ML and find_consts.ML to Pure/Tools, collecting main implementation in one place each;
wenzelm
parents: 29882
diff changeset
   181
29857
2cc976ed8a3c FindTheorems: add solves feature; tidy up const name subsettin; patch by Timothy Bourke
kleing
parents: 29848
diff changeset
   182
(* filter intro/elim/dest/solves rules *)
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   183
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   184
fun filter_dest ctxt goal theorem =
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   185
  let
16964
6a25e42eaff5 Ordering is now: first by number of assumptions, second by the substitution size.
kleing
parents: 16895
diff changeset
   186
    val extract_dest =
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   187
     (fn theorem => if nprems_of theorem = 0 then [] else [prop_of theorem],
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   188
      hd o Logic.strip_imp_prems);
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   189
    val prems = Logic.prems_of_goal goal 1;
16895
df67fc190e06 Sort search results in order of relevance, where relevance =
kleing
parents: 16486
diff changeset
   190
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   191
    fun try_subst prem = is_matching_thm false extract_dest ctxt true prem theorem;
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19476
diff changeset
   192
    val successful = prems |> map_filter try_subst;
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   193
  in
16895
df67fc190e06 Sort search results in order of relevance, where relevance =
kleing
parents: 16486
diff changeset
   194
    (*if possible, keep best substitution (one with smallest size)*)
17106
2bd6c20cdda1 use theory instead of obsolete Sign.sg;
wenzelm
parents: 16964
diff changeset
   195
    (*dest rules always have assumptions, so a dest with one
16895
df67fc190e06 Sort search results in order of relevance, where relevance =
kleing
parents: 16486
diff changeset
   196
      assumption is as good as an intro rule with none*)
17205
8994750ae33c refer to theory instead of low-level tsig;
wenzelm
parents: 17106
diff changeset
   197
    if not (null successful)
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   198
    then SOME (nprems_of theorem - 1, foldl1 Int.min successful) else NONE
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   199
  end;
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   200
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   201
fun filter_intro doiff ctxt goal theorem =
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   202
  let
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   203
    val extract_intro = (single o prop_of, Logic.strip_imp_concl);
16036
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
   204
    val concl = Logic.concl_of_goal goal 1;
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   205
    val ss = is_matching_thm doiff extract_intro ctxt true concl theorem;
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   206
  in
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   207
    if is_some ss then SOME (nprems_of theorem, the ss) else NONE
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   208
  end;
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   209
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   210
fun filter_elim ctxt goal theorem =
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   211
  if nprems_of theorem > 0 then
16964
6a25e42eaff5 Ordering is now: first by number of assumptions, second by the substitution size.
kleing
parents: 16895
diff changeset
   212
    let
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   213
      val rule = prop_of theorem;
16964
6a25e42eaff5 Ordering is now: first by number of assumptions, second by the substitution size.
kleing
parents: 16895
diff changeset
   214
      val prems = Logic.prems_of_goal goal 1;
6a25e42eaff5 Ordering is now: first by number of assumptions, second by the substitution size.
kleing
parents: 16895
diff changeset
   215
      val goal_concl = Logic.concl_of_goal goal 1;
26283
e19a5a7e83f1 more precise Author line;
wenzelm
parents: 25992
diff changeset
   216
      val rule_mp = hd (Logic.strip_imp_prems rule);
16964
6a25e42eaff5 Ordering is now: first by number of assumptions, second by the substitution size.
kleing
parents: 16895
diff changeset
   217
      val rule_concl = Logic.strip_imp_concl rule;
26283
e19a5a7e83f1 more precise Author line;
wenzelm
parents: 25992
diff changeset
   218
      fun combine t1 t2 = Const ("*combine*", dummyT --> dummyT) $ (t1 $ t2);
16964
6a25e42eaff5 Ordering is now: first by number of assumptions, second by the substitution size.
kleing
parents: 16895
diff changeset
   219
      val rule_tree = combine rule_mp rule_concl;
26283
e19a5a7e83f1 more precise Author line;
wenzelm
parents: 25992
diff changeset
   220
      fun goal_tree prem = combine prem goal_concl;
17106
2bd6c20cdda1 use theory instead of obsolete Sign.sg;
wenzelm
parents: 16964
diff changeset
   221
      fun try_subst prem =
31042
d452117ba564 Prototype introiff option for find_theorems.
Timothy Bourke
parents: 30822
diff changeset
   222
        is_matching_thm false (single, I) ctxt true (goal_tree prem) rule_tree;
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19476
diff changeset
   223
      val successful = prems |> map_filter try_subst;
16964
6a25e42eaff5 Ordering is now: first by number of assumptions, second by the substitution size.
kleing
parents: 16895
diff changeset
   224
    in
32798
4b85b59a9f66 misc tuning and simplification;
wenzelm
parents: 32738
diff changeset
   225
      (*elim rules always have assumptions, so an elim with one
4b85b59a9f66 misc tuning and simplification;
wenzelm
parents: 32738
diff changeset
   226
        assumption is as good as an intro rule with none*)
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
   227
      if is_nontrivial (Proof_Context.theory_of ctxt) (major_prem_of theorem)
17205
8994750ae33c refer to theory instead of low-level tsig;
wenzelm
parents: 17106
diff changeset
   228
        andalso not (null successful)
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   229
      then SOME (nprems_of theorem - 1, foldl1 Int.min successful) else NONE
16964
6a25e42eaff5 Ordering is now: first by number of assumptions, second by the substitution size.
kleing
parents: 16895
diff changeset
   230
    end
6a25e42eaff5 Ordering is now: first by number of assumptions, second by the substitution size.
kleing
parents: 16895
diff changeset
   231
  else NONE
16036
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
   232
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32149
diff changeset
   233
val tac_limit = Unsynchronized.ref 5;
29857
2cc976ed8a3c FindTheorems: add solves feature; tidy up const name subsettin; patch by Timothy Bourke
kleing
parents: 29848
diff changeset
   234
30143
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   235
fun filter_solves ctxt goal =
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   236
  let
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   237
    fun etacn thm i = Seq.take (! tac_limit) o etac thm i;
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   238
    fun try_thm thm =
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   239
      if Thm.no_prems thm then rtac thm 1 goal
30318
3d03190d2864 replaced archaic use of rep_ss by Simplifier.mksimps;
wenzelm
parents: 30234
diff changeset
   240
      else (etacn thm THEN_ALL_NEW (Goal.norm_hhf_tac THEN' Method.assm_tac ctxt)) 1 goal;
29857
2cc976ed8a3c FindTheorems: add solves feature; tidy up const name subsettin; patch by Timothy Bourke
kleing
parents: 29848
diff changeset
   241
  in
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   242
    fn Internal (_, thm) =>
32798
4b85b59a9f66 misc tuning and simplification;
wenzelm
parents: 32738
diff changeset
   243
      if is_some (Seq.pull (try_thm thm))
30143
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   244
      then SOME (Thm.nprems_of thm, 0) else NONE
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   245
     | External _ => NONE
29857
2cc976ed8a3c FindTheorems: add solves feature; tidy up const name subsettin; patch by Timothy Bourke
kleing
parents: 29848
diff changeset
   246
  end;
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   247
30142
8d6145694bb5 moved find_theorems.ML and find_consts.ML to Pure/Tools, collecting main implementation in one place each;
wenzelm
parents: 29882
diff changeset
   248
16074
9e569163ba8c renamed search criterion 'rewrite' to 'simp'
kleing
parents: 16071
diff changeset
   249
(* filter_simp *)
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   250
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   251
fun filter_simp ctxt t (Internal (_, thm)) =
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   252
      let
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   253
        val mksimps = Simplifier.mksimps (simpset_of ctxt);
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   254
        val extract_simp =
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   255
          (map Thm.full_prop_of o mksimps, #1 o Logic.dest_equals o Logic.strip_imp_concl);
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   256
        val ss = is_matching_thm false extract_simp ctxt false t thm;
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   257
      in
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   258
        if is_some ss then SOME (Thm.nprems_of thm, the ss) else NONE
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   259
      end
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   260
  | filter_simp _ _ (External _) = NONE;
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   261
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   262
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   263
(* filter_pattern *)
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   264
32798
4b85b59a9f66 misc tuning and simplification;
wenzelm
parents: 32738
diff changeset
   265
fun get_names t = Term.add_const_names t (Term.add_free_names t []);
28900
53fd5cc685b4 FindTheorems performance improvements (from Timothy Bourke)
kleing
parents: 28211
diff changeset
   266
30143
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   267
(*Including all constants and frees is only sound because
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   268
  matching uses higher-order patterns. If full matching
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   269
  were used, then constants that may be subject to
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   270
  beta-reduction after substitution of frees should
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   271
  not be included for LHS set because they could be
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   272
  thrown away by the substituted function.
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   273
  e.g. for (?F 1 2) do not include 1 or 2, if it were
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   274
       possible for ?F to be (% x y. 3)
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   275
  The largest possible set should always be included on
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   276
  the RHS.*)
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   277
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   278
fun filter_pattern ctxt pat =
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   279
  let
29857
2cc976ed8a3c FindTheorems: add solves feature; tidy up const name subsettin; patch by Timothy Bourke
kleing
parents: 29848
diff changeset
   280
    val pat_consts = get_names pat;
28900
53fd5cc685b4 FindTheorems performance improvements (from Timothy Bourke)
kleing
parents: 28211
diff changeset
   281
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   282
    fun check (theorem, NONE) = check (theorem, SOME (get_names (prop_of theorem)))
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   283
      | check (theorem, c as SOME thm_consts) =
33038
8f9594c31de4 dropped redundant gen_ prefix
haftmann
parents: 33037
diff changeset
   284
         (if subset (op =) (pat_consts, thm_consts) andalso
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
   285
            Pattern.matches_subterm (Proof_Context.theory_of ctxt) (pat, prop_of theorem)
32798
4b85b59a9f66 misc tuning and simplification;
wenzelm
parents: 32738
diff changeset
   286
          then SOME (0, 0) else NONE, c);
28900
53fd5cc685b4 FindTheorems performance improvements (from Timothy Bourke)
kleing
parents: 28211
diff changeset
   287
  in check end;
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   288
30142
8d6145694bb5 moved find_theorems.ML and find_consts.ML to Pure/Tools, collecting main implementation in one place each;
wenzelm
parents: 29882
diff changeset
   289
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   290
(* interpret criteria as filters *)
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   291
16036
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
   292
local
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
   293
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
   294
fun err_no_goal c =
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
   295
  error ("Current goal required for " ^ c ^ " search criterion");
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
   296
29857
2cc976ed8a3c FindTheorems: add solves feature; tidy up const name subsettin; patch by Timothy Bourke
kleing
parents: 29848
diff changeset
   297
val fix_goal = Thm.prop_of;
2cc976ed8a3c FindTheorems: add solves feature; tidy up const name subsettin; patch by Timothy Bourke
kleing
parents: 29848
diff changeset
   298
28900
53fd5cc685b4 FindTheorems performance improvements (from Timothy Bourke)
kleing
parents: 28211
diff changeset
   299
fun filter_crit _ _ (Name name) = apfst (filter_name name)
16036
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
   300
  | filter_crit _ NONE Intro = err_no_goal "intro"
41835
9712fae15200 fix non-exhaustive pattern match in find_theorems
noschinl
parents: 39557
diff changeset
   301
  | filter_crit _ NONE IntroIff = err_no_goal "introiff"
16036
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
   302
  | filter_crit _ NONE Elim = err_no_goal "elim"
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
   303
  | filter_crit _ NONE Dest = err_no_goal "dest"
29857
2cc976ed8a3c FindTheorems: add solves feature; tidy up const name subsettin; patch by Timothy Bourke
kleing
parents: 29848
diff changeset
   304
  | filter_crit _ NONE Solves = err_no_goal "solves"
31042
d452117ba564 Prototype introiff option for find_theorems.
Timothy Bourke
parents: 30822
diff changeset
   305
  | filter_crit ctxt (SOME goal) Intro = apfst (filter_intro false ctxt (fix_goal goal))
d452117ba564 Prototype introiff option for find_theorems.
Timothy Bourke
parents: 30822
diff changeset
   306
  | filter_crit ctxt (SOME goal) IntroIff = apfst (filter_intro true ctxt (fix_goal goal))
30143
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   307
  | filter_crit ctxt (SOME goal) Elim = apfst (filter_elim ctxt (fix_goal goal))
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   308
  | filter_crit ctxt (SOME goal) Dest = apfst (filter_dest ctxt (fix_goal goal))
29857
2cc976ed8a3c FindTheorems: add solves feature; tidy up const name subsettin; patch by Timothy Bourke
kleing
parents: 29848
diff changeset
   309
  | filter_crit ctxt (SOME goal) Solves = apfst (filter_solves ctxt goal)
28900
53fd5cc685b4 FindTheorems performance improvements (from Timothy Bourke)
kleing
parents: 28211
diff changeset
   310
  | filter_crit ctxt _ (Simp pat) = apfst (filter_simp ctxt pat)
16088
f084ba24de29 cleaned up select_match
kleing
parents: 16077
diff changeset
   311
  | filter_crit ctxt _ (Pattern pat) = filter_pattern ctxt pat;
16036
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
   312
19502
wenzelm
parents: 19482
diff changeset
   313
fun opt_not x = if is_some x then NONE else SOME (0, 0);
16895
df67fc190e06 Sort search results in order of relevance, where relevance =
kleing
parents: 16486
diff changeset
   314
17756
d4a35f82fbb4 minor tweaks for Poplog/ML;
wenzelm
parents: 17755
diff changeset
   315
fun opt_add (SOME (a, x)) (SOME (b, y)) = SOME (Int.max (a, b), x + y : int)
26283
e19a5a7e83f1 more precise Author line;
wenzelm
parents: 25992
diff changeset
   316
  | opt_add _ _ = NONE;
16895
df67fc190e06 Sort search results in order of relevance, where relevance =
kleing
parents: 16486
diff changeset
   317
30143
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   318
fun app_filters thm =
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   319
  let
28900
53fd5cc685b4 FindTheorems performance improvements (from Timothy Bourke)
kleing
parents: 28211
diff changeset
   320
    fun app (NONE, _, _) = NONE
32798
4b85b59a9f66 misc tuning and simplification;
wenzelm
parents: 32738
diff changeset
   321
      | app (SOME v, _, []) = SOME (v, thm)
30143
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   322
      | app (r, consts, f :: fs) =
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   323
          let val (r', consts') = f (thm, consts)
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   324
          in app (opt_add r r', consts', fs) end;
28900
53fd5cc685b4 FindTheorems performance improvements (from Timothy Bourke)
kleing
parents: 28211
diff changeset
   325
  in app end;
53fd5cc685b4 FindTheorems performance improvements (from Timothy Bourke)
kleing
parents: 28211
diff changeset
   326
31684
d5d830979a54 minor tuning according to Isabelle/ML conventions;
wenzelm
parents: 31042
diff changeset
   327
16036
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
   328
in
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   329
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   330
fun filter_criterion ctxt opt_goal (b, c) =
28900
53fd5cc685b4 FindTheorems performance improvements (from Timothy Bourke)
kleing
parents: 28211
diff changeset
   331
  (if b then I else (apfst opt_not)) o filter_crit ctxt opt_goal c;
16895
df67fc190e06 Sort search results in order of relevance, where relevance =
kleing
parents: 16486
diff changeset
   332
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   333
fun sorted_filter filters theorems =
16895
df67fc190e06 Sort search results in order of relevance, where relevance =
kleing
parents: 16486
diff changeset
   334
  let
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   335
    fun eval_filters theorem = app_filters theorem (SOME (0, 0), NONE, filters);
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   336
16895
df67fc190e06 Sort search results in order of relevance, where relevance =
kleing
parents: 16486
diff changeset
   337
    (*filters return: (number of assumptions, substitution size) option, so
16964
6a25e42eaff5 Ordering is now: first by number of assumptions, second by the substitution size.
kleing
parents: 16895
diff changeset
   338
      sort (desc. in both cases) according to number of assumptions first,
16895
df67fc190e06 Sort search results in order of relevance, where relevance =
kleing
parents: 16486
diff changeset
   339
      then by the substitution size*)
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   340
    fun result_ord (((p0, s0), _), ((p1, s1), _)) =
17205
8994750ae33c refer to theory instead of low-level tsig;
wenzelm
parents: 17106
diff changeset
   341
      prod_ord int_ord int_ord ((p1, s1), (p0, s0));
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   342
  in map_filter eval_filters theorems |> sort result_ord |> map #2 end;
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   343
30822
8aac4b974280 superficial tuning;
wenzelm
parents: 30785
diff changeset
   344
fun lazy_filter filters =
8aac4b974280 superficial tuning;
wenzelm
parents: 30785
diff changeset
   345
  let
30785
15f64e05e703 Limit the number of results returned by auto_solves.
Timothy Bourke
parents: 30693
diff changeset
   346
    fun lazy_match thms = Seq.make (fn () => first_match thms)
15f64e05e703 Limit the number of results returned by auto_solves.
Timothy Bourke
parents: 30693
diff changeset
   347
15f64e05e703 Limit the number of results returned by auto_solves.
Timothy Bourke
parents: 30693
diff changeset
   348
    and first_match [] = NONE
30822
8aac4b974280 superficial tuning;
wenzelm
parents: 30785
diff changeset
   349
      | first_match (thm :: thms) =
8aac4b974280 superficial tuning;
wenzelm
parents: 30785
diff changeset
   350
          (case app_filters thm (SOME (0, 0), NONE, filters) of
30785
15f64e05e703 Limit the number of results returned by auto_solves.
Timothy Bourke
parents: 30693
diff changeset
   351
            NONE => first_match thms
30822
8aac4b974280 superficial tuning;
wenzelm
parents: 30785
diff changeset
   352
          | SOME (_, t) => SOME (t, lazy_match thms));
30785
15f64e05e703 Limit the number of results returned by auto_solves.
Timothy Bourke
parents: 30693
diff changeset
   353
  in lazy_match end;
30822
8aac4b974280 superficial tuning;
wenzelm
parents: 30785
diff changeset
   354
16036
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
   355
end;
1da07ac33711 added read_criterion/pretty_criterion;
wenzelm
parents: 16033
diff changeset
   356
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   357
22414
3f189ea9bfe7 an O(n log n) version of removing duplicates
kleing
parents: 22360
diff changeset
   358
(* removing duplicates, preferring nicer names, roughly n log n *)
22340
275802767bf3 Remove duplicates from printed theorems in find_theorems
kleing
parents: 19502
diff changeset
   359
25226
502d8676cdd6 improved notion of 'nicer' fact names (observe some name space properties);
wenzelm
parents: 24920
diff changeset
   360
local
502d8676cdd6 improved notion of 'nicer' fact names (observe some name space properties);
wenzelm
parents: 24920
diff changeset
   361
27486
c61507a98bff prefer theorem names without numbers
huffman
parents: 27173
diff changeset
   362
val index_ord = option_ord (K EQUAL);
33095
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 33039
diff changeset
   363
val hidden_ord = bool_ord o pairself Name_Space.is_hidden;
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30318
diff changeset
   364
val qual_ord = int_ord o pairself (length o Long_Name.explode);
25226
502d8676cdd6 improved notion of 'nicer' fact names (observe some name space properties);
wenzelm
parents: 24920
diff changeset
   365
val txt_ord = int_ord o pairself size;
502d8676cdd6 improved notion of 'nicer' fact names (observe some name space properties);
wenzelm
parents: 24920
diff changeset
   366
27486
c61507a98bff prefer theorem names without numbers
huffman
parents: 27173
diff changeset
   367
fun nicer_name (x, i) (y, j) =
c61507a98bff prefer theorem names without numbers
huffman
parents: 27173
diff changeset
   368
  (case hidden_ord (x, y) of EQUAL =>
c61507a98bff prefer theorem names without numbers
huffman
parents: 27173
diff changeset
   369
    (case index_ord (i, j) of EQUAL =>
c61507a98bff prefer theorem names without numbers
huffman
parents: 27173
diff changeset
   370
      (case qual_ord (x, y) of EQUAL => txt_ord (x, y) | ord => ord)
c61507a98bff prefer theorem names without numbers
huffman
parents: 27173
diff changeset
   371
    | ord => ord)
25226
502d8676cdd6 improved notion of 'nicer' fact names (observe some name space properties);
wenzelm
parents: 24920
diff changeset
   372
  | ord => ord) <> GREATER;
502d8676cdd6 improved notion of 'nicer' fact names (observe some name space properties);
wenzelm
parents: 24920
diff changeset
   373
29848
a7c164e228e1 Nicer names in FindTheorems.
Timothy Bourke
parents: 29302
diff changeset
   374
fun rem_cdups nicer xs =
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26283
diff changeset
   375
  let
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26283
diff changeset
   376
    fun rem_c rev_seen [] = rev rev_seen
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26283
diff changeset
   377
      | rem_c rev_seen [x] = rem_c (x :: rev_seen) []
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   378
      | rem_c rev_seen ((x as (t, _)) :: (y as (t', _)) :: xs) =
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   379
          if (prop_of t) aconv (prop_of t')
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   380
          then rem_c rev_seen ((if nicer (fact_ref_of t) (fact_ref_of t') then x else y) :: xs)
30822
8aac4b974280 superficial tuning;
wenzelm
parents: 30785
diff changeset
   381
          else rem_c (x :: rev_seen) (y :: xs)
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26283
diff changeset
   382
  in rem_c [] xs end;
25226
502d8676cdd6 improved notion of 'nicer' fact names (observe some name space properties);
wenzelm
parents: 24920
diff changeset
   383
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26283
diff changeset
   384
in
25226
502d8676cdd6 improved notion of 'nicer' fact names (observe some name space properties);
wenzelm
parents: 24920
diff changeset
   385
30143
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   386
fun nicer_shortest ctxt =
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   387
  let
30216
0300b7420b07 nicer_shortest: use NameSpace.extern_flags with disabled "features" instead of internal NameSpace.get_accesses;
wenzelm
parents: 30188
diff changeset
   388
    (* FIXME global name space!? *)
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
   389
    val space = Facts.space_of (Global_Theory.facts_of (Proof_Context.theory_of ctxt));
29848
a7c164e228e1 Nicer names in FindTheorems.
Timothy Bourke
parents: 29302
diff changeset
   390
30216
0300b7420b07 nicer_shortest: use NameSpace.extern_flags with disabled "features" instead of internal NameSpace.get_accesses;
wenzelm
parents: 30188
diff changeset
   391
    val shorten =
42358
b47d41d9f4b5 Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
wenzelm
parents: 42012
diff changeset
   392
      Name_Space.extern
b47d41d9f4b5 Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
wenzelm
parents: 42012
diff changeset
   393
        (ctxt
42669
04dfffda5671 more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents: 42360
diff changeset
   394
          |> Config.put Name_Space.names_long false
04dfffda5671 more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents: 42360
diff changeset
   395
          |> Config.put Name_Space.names_short false
04dfffda5671 more conventional naming scheme: names_long, names_short, names_unique;
wenzelm
parents: 42360
diff changeset
   396
          |> Config.put Name_Space.names_unique false) space;
29848
a7c164e228e1 Nicer names in FindTheorems.
Timothy Bourke
parents: 29302
diff changeset
   397
a7c164e228e1 Nicer names in FindTheorems.
Timothy Bourke
parents: 29302
diff changeset
   398
    fun nicer (Facts.Named ((x, _), i)) (Facts.Named ((y, _), j)) =
a7c164e228e1 Nicer names in FindTheorems.
Timothy Bourke
parents: 29302
diff changeset
   399
          nicer_name (shorten x, i) (shorten y, j)
a7c164e228e1 Nicer names in FindTheorems.
Timothy Bourke
parents: 29302
diff changeset
   400
      | nicer (Facts.Fact _) (Facts.Named _) = true
a7c164e228e1 Nicer names in FindTheorems.
Timothy Bourke
parents: 29302
diff changeset
   401
      | nicer (Facts.Named _) (Facts.Fact _) = false;
a7c164e228e1 Nicer names in FindTheorems.
Timothy Bourke
parents: 29302
diff changeset
   402
  in nicer end;
a7c164e228e1 Nicer names in FindTheorems.
Timothy Bourke
parents: 29302
diff changeset
   403
a7c164e228e1 Nicer names in FindTheorems.
Timothy Bourke
parents: 29302
diff changeset
   404
fun rem_thm_dups nicer xs =
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26283
diff changeset
   405
  xs ~~ (1 upto length xs)
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   406
  |> sort (Term_Ord.fast_term_ord o pairself (prop_of o #1))
29848
a7c164e228e1 Nicer names in FindTheorems.
Timothy Bourke
parents: 29302
diff changeset
   407
  |> rem_cdups nicer
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26283
diff changeset
   408
  |> sort (int_ord o pairself #2)
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26283
diff changeset
   409
  |> map #1;
22340
275802767bf3 Remove duplicates from printed theorems in find_theorems
kleing
parents: 19502
diff changeset
   410
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26283
diff changeset
   411
end;
22340
275802767bf3 Remove duplicates from printed theorems in find_theorems
kleing
parents: 19502
diff changeset
   412
275802767bf3 Remove duplicates from printed theorems in find_theorems
kleing
parents: 19502
diff changeset
   413
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   414
(* print_theorems *)
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   415
26283
e19a5a7e83f1 more precise Author line;
wenzelm
parents: 25992
diff changeset
   416
fun all_facts_of ctxt =
33381
81269c72321a find_theorems: respect conceal flag
krauss
parents: 33301
diff changeset
   417
  let
33382
7d2c6e7f91bd observe usual naming conventions;
wenzelm
parents: 33381
diff changeset
   418
    fun visible_facts facts =
7d2c6e7f91bd observe usual naming conventions;
wenzelm
parents: 33381
diff changeset
   419
      Facts.dest_static [] facts
7d2c6e7f91bd observe usual naming conventions;
wenzelm
parents: 33381
diff changeset
   420
      |> filter_out (Facts.is_concealed facts o #1);
33381
81269c72321a find_theorems: respect conceal flag
krauss
parents: 33301
diff changeset
   421
  in
81269c72321a find_theorems: respect conceal flag
krauss
parents: 33301
diff changeset
   422
    maps Facts.selections
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
   423
     (visible_facts (Global_Theory.facts_of (Proof_Context.theory_of ctxt)) @
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   424
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   425
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
   426
      visible_facts (Proof_Context.facts_of ctxt))
33381
81269c72321a find_theorems: respect conceal flag
krauss
parents: 33301
diff changeset
   427
  end;
17972
4969d6eb4c97 do not export find_thms;
wenzelm
parents: 17789
diff changeset
   428
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32149
diff changeset
   429
val limit = Unsynchronized.ref 40;
25992
928594f50893 renamed thms_containing_limit to FindTheorems.limit;
wenzelm
parents: 25226
diff changeset
   430
43067
76e1d25c6357 separate query parsing from actual search
krauss
parents: 42669
diff changeset
   431
fun filter_theorems ctxt theorems opt_goal opt_limit rem_dups criteria =
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   432
  let
30822
8aac4b974280 superficial tuning;
wenzelm
parents: 30785
diff changeset
   433
    val assms =
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42358
diff changeset
   434
      Proof_Context.get_fact ctxt (Facts.named "local.assms")
30822
8aac4b974280 superficial tuning;
wenzelm
parents: 30785
diff changeset
   435
        handle ERROR _ => [];
8aac4b974280 superficial tuning;
wenzelm
parents: 30785
diff changeset
   436
    val add_prems = Seq.hd o TRY (Method.insert_tac assms 1);
29857
2cc976ed8a3c FindTheorems: add solves feature; tidy up const name subsettin; patch by Timothy Bourke
kleing
parents: 29848
diff changeset
   437
    val opt_goal' = Option.map add_prems opt_goal;
2cc976ed8a3c FindTheorems: add solves feature; tidy up const name subsettin; patch by Timothy Bourke
kleing
parents: 29848
diff changeset
   438
2cc976ed8a3c FindTheorems: add solves feature; tidy up const name subsettin; patch by Timothy Bourke
kleing
parents: 29848
diff changeset
   439
    val filters = map (filter_criterion ctxt opt_goal') criteria;
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   440
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   441
    fun find_all theorems =
30785
15f64e05e703 Limit the number of results returned by auto_solves.
Timothy Bourke
parents: 30693
diff changeset
   442
      let
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   443
        val raw_matches = sorted_filter filters theorems;
30785
15f64e05e703 Limit the number of results returned by auto_solves.
Timothy Bourke
parents: 30693
diff changeset
   444
15f64e05e703 Limit the number of results returned by auto_solves.
Timothy Bourke
parents: 30693
diff changeset
   445
        val matches =
15f64e05e703 Limit the number of results returned by auto_solves.
Timothy Bourke
parents: 30693
diff changeset
   446
          if rem_dups
15f64e05e703 Limit the number of results returned by auto_solves.
Timothy Bourke
parents: 30693
diff changeset
   447
          then rem_thm_dups (nicer_shortest ctxt) raw_matches
15f64e05e703 Limit the number of results returned by auto_solves.
Timothy Bourke
parents: 30693
diff changeset
   448
          else raw_matches;
28900
53fd5cc685b4 FindTheorems performance improvements (from Timothy Bourke)
kleing
parents: 28211
diff changeset
   449
30785
15f64e05e703 Limit the number of results returned by auto_solves.
Timothy Bourke
parents: 30693
diff changeset
   450
        val len = length matches;
15f64e05e703 Limit the number of results returned by auto_solves.
Timothy Bourke
parents: 30693
diff changeset
   451
        val lim = the_default (! limit) opt_limit;
34088
d6194ece49df avoid negative indices as argument ot drop
haftmann
parents: 33957
diff changeset
   452
      in (SOME len, drop (Int.max (len - lim, 0)) matches) end;
30785
15f64e05e703 Limit the number of results returned by auto_solves.
Timothy Bourke
parents: 30693
diff changeset
   453
15f64e05e703 Limit the number of results returned by auto_solves.
Timothy Bourke
parents: 30693
diff changeset
   454
    val find =
15f64e05e703 Limit the number of results returned by auto_solves.
Timothy Bourke
parents: 30693
diff changeset
   455
      if rem_dups orelse is_none opt_limit
15f64e05e703 Limit the number of results returned by auto_solves.
Timothy Bourke
parents: 30693
diff changeset
   456
      then find_all
30822
8aac4b974280 superficial tuning;
wenzelm
parents: 30785
diff changeset
   457
      else pair NONE o Seq.list_of o Seq.take (the opt_limit) o lazy_filter filters;
30785
15f64e05e703 Limit the number of results returned by auto_solves.
Timothy Bourke
parents: 30693
diff changeset
   458
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   459
  in find theorems end;
29857
2cc976ed8a3c FindTheorems: add solves feature; tidy up const name subsettin; patch by Timothy Bourke
kleing
parents: 29848
diff changeset
   460
43067
76e1d25c6357 separate query parsing from actual search
krauss
parents: 42669
diff changeset
   461
fun filter_theorems_cmd ctxt theorems opt_goal opt_limit rem_dups raw_criteria =
76e1d25c6357 separate query parsing from actual search
krauss
parents: 42669
diff changeset
   462
  filter_theorems ctxt theorems opt_goal opt_limit rem_dups
76e1d25c6357 separate query parsing from actual search
krauss
parents: 42669
diff changeset
   463
    (map (apsnd (read_criterion ctxt)) raw_criteria);
76e1d25c6357 separate query parsing from actual search
krauss
parents: 42669
diff changeset
   464
76e1d25c6357 separate query parsing from actual search
krauss
parents: 42669
diff changeset
   465
fun gen_find_theorems filter ctxt opt_goal opt_limit rem_dups raw_criteria =
76e1d25c6357 separate query parsing from actual search
krauss
parents: 42669
diff changeset
   466
  filter ctxt (map Internal (all_facts_of ctxt)) opt_goal opt_limit
41844
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   467
     rem_dups raw_criteria
b933142e02d0 generalize find_theorems filters to work on raw propositions, too
krauss
parents: 41841
diff changeset
   468
  |> apsnd (map (fn Internal f => f));
30186
1f836e949ac2 replaced archaic Display.pretty_fact by FindTheorems.pretty_thm, which observes the context properly (as did the former prt_fact already);
wenzelm
parents: 30143
diff changeset
   469
43067
76e1d25c6357 separate query parsing from actual search
krauss
parents: 42669
diff changeset
   470
val find_theorems = gen_find_theorems filter_theorems;
76e1d25c6357 separate query parsing from actual search
krauss
parents: 42669
diff changeset
   471
val find_theorems_cmd = gen_find_theorems filter_theorems_cmd;
76e1d25c6357 separate query parsing from actual search
krauss
parents: 42669
diff changeset
   472
41845
6611b9cef38b reactivate time measurement (partly reverting c27b0b37041a);
krauss
parents: 41844
diff changeset
   473
fun pretty_theorem ctxt (Internal (thmref, thm)) = Pretty.block
6611b9cef38b reactivate time measurement (partly reverting c27b0b37041a);
krauss
parents: 41844
diff changeset
   474
      [Pretty.str (Facts.string_of_ref thmref), Pretty.str ":", Pretty.brk 1,
6611b9cef38b reactivate time measurement (partly reverting c27b0b37041a);
krauss
parents: 41844
diff changeset
   475
        Display.pretty_thm ctxt thm]
6611b9cef38b reactivate time measurement (partly reverting c27b0b37041a);
krauss
parents: 41844
diff changeset
   476
  | pretty_theorem ctxt (External (thmref, prop)) = Pretty.block
6611b9cef38b reactivate time measurement (partly reverting c27b0b37041a);
krauss
parents: 41844
diff changeset
   477
      [Pretty.str (Facts.string_of_ref thmref), Pretty.str ":", Pretty.brk 1,
6611b9cef38b reactivate time measurement (partly reverting c27b0b37041a);
krauss
parents: 41844
diff changeset
   478
        Syntax.unparse_term ctxt prop];
30186
1f836e949ac2 replaced archaic Display.pretty_fact by FindTheorems.pretty_thm, which observes the context properly (as did the former prt_fact already);
wenzelm
parents: 30143
diff changeset
   479
41845
6611b9cef38b reactivate time measurement (partly reverting c27b0b37041a);
krauss
parents: 41844
diff changeset
   480
fun pretty_thm ctxt (thmref, thm) = pretty_theorem ctxt (Internal (thmref, thm));
6611b9cef38b reactivate time measurement (partly reverting c27b0b37041a);
krauss
parents: 41844
diff changeset
   481
6611b9cef38b reactivate time measurement (partly reverting c27b0b37041a);
krauss
parents: 41844
diff changeset
   482
fun print_theorems ctxt opt_goal opt_limit rem_dups raw_criteria =
30143
98a986b02022 observe basic Isabelle/ML coding conventions;
wenzelm
parents: 30142
diff changeset
   483
  let
42012
2c3fe3cbebae structure Timing: covers former start_timing/end_timing and Output.timeit etc;
wenzelm
parents: 41845
diff changeset
   484
    val start = Timing.start ();
29857
2cc976ed8a3c FindTheorems: add solves feature; tidy up const name subsettin; patch by Timothy Bourke
kleing
parents: 29848
diff changeset
   485
2cc976ed8a3c FindTheorems: add solves feature; tidy up const name subsettin; patch by Timothy Bourke
kleing
parents: 29848
diff changeset
   486
    val criteria = map (apsnd (read_criterion ctxt)) raw_criteria;
41845
6611b9cef38b reactivate time measurement (partly reverting c27b0b37041a);
krauss
parents: 41844
diff changeset
   487
    val (foundo, theorems) = filter_theorems ctxt (map Internal (all_facts_of ctxt))
43067
76e1d25c6357 separate query parsing from actual search
krauss
parents: 42669
diff changeset
   488
      opt_goal opt_limit rem_dups criteria;
41845
6611b9cef38b reactivate time measurement (partly reverting c27b0b37041a);
krauss
parents: 41844
diff changeset
   489
    val returned = length theorems;
31684
d5d830979a54 minor tuning according to Isabelle/ML conventions;
wenzelm
parents: 31042
diff changeset
   490
30785
15f64e05e703 Limit the number of results returned by auto_solves.
Timothy Bourke
parents: 30693
diff changeset
   491
    val tally_msg =
30822
8aac4b974280 superficial tuning;
wenzelm
parents: 30785
diff changeset
   492
      (case foundo of
38335
630f379f2660 misc tuning and simplification;
wenzelm
parents: 38334
diff changeset
   493
        NONE => "displaying " ^ string_of_int returned ^ " theorem(s)"
30822
8aac4b974280 superficial tuning;
wenzelm
parents: 30785
diff changeset
   494
      | SOME found =>
38335
630f379f2660 misc tuning and simplification;
wenzelm
parents: 38334
diff changeset
   495
          "found " ^ string_of_int found ^ " theorem(s)" ^
30822
8aac4b974280 superficial tuning;
wenzelm
parents: 30785
diff changeset
   496
            (if returned < found
8aac4b974280 superficial tuning;
wenzelm
parents: 30785
diff changeset
   497
             then " (" ^ string_of_int returned ^ " displayed)"
8aac4b974280 superficial tuning;
wenzelm
parents: 30785
diff changeset
   498
             else ""));
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   499
42012
2c3fe3cbebae structure Timing: covers former start_timing/end_timing and Output.timeit etc;
wenzelm
parents: 41845
diff changeset
   500
    val end_msg = " in " ^ Time.toString (#cpu (Timing.result start)) ^ " secs";
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   501
  in
38335
630f379f2660 misc tuning and simplification;
wenzelm
parents: 38334
diff changeset
   502
    Pretty.big_list "searched for:" (map (pretty_criterion ctxt) criteria) ::
630f379f2660 misc tuning and simplification;
wenzelm
parents: 38334
diff changeset
   503
    Pretty.str "" ::
41845
6611b9cef38b reactivate time measurement (partly reverting c27b0b37041a);
krauss
parents: 41844
diff changeset
   504
    (if null theorems then [Pretty.str ("nothing found" ^ end_msg)]
38335
630f379f2660 misc tuning and simplification;
wenzelm
parents: 38334
diff changeset
   505
     else
630f379f2660 misc tuning and simplification;
wenzelm
parents: 38334
diff changeset
   506
      [Pretty.str (tally_msg ^ end_msg ^ ":"), Pretty.str ""] @
41845
6611b9cef38b reactivate time measurement (partly reverting c27b0b37041a);
krauss
parents: 41844
diff changeset
   507
        map (pretty_theorem ctxt) theorems)
38335
630f379f2660 misc tuning and simplification;
wenzelm
parents: 38334
diff changeset
   508
  end |> Pretty.chunks |> Pretty.writeln;
30142
8d6145694bb5 moved find_theorems.ML and find_consts.ML to Pure/Tools, collecting main implementation in one place each;
wenzelm
parents: 29882
diff changeset
   509
8d6145694bb5 moved find_theorems.ML and find_consts.ML to Pure/Tools, collecting main implementation in one place each;
wenzelm
parents: 29882
diff changeset
   510
32798
4b85b59a9f66 misc tuning and simplification;
wenzelm
parents: 32738
diff changeset
   511
30142
8d6145694bb5 moved find_theorems.ML and find_consts.ML to Pure/Tools, collecting main implementation in one place each;
wenzelm
parents: 29882
diff changeset
   512
(** command syntax **)
8d6145694bb5 moved find_theorems.ML and find_consts.ML to Pure/Tools, collecting main implementation in one place each;
wenzelm
parents: 29882
diff changeset
   513
8d6145694bb5 moved find_theorems.ML and find_consts.ML to Pure/Tools, collecting main implementation in one place each;
wenzelm
parents: 29882
diff changeset
   514
local
8d6145694bb5 moved find_theorems.ML and find_consts.ML to Pure/Tools, collecting main implementation in one place each;
wenzelm
parents: 29882
diff changeset
   515
8d6145694bb5 moved find_theorems.ML and find_consts.ML to Pure/Tools, collecting main implementation in one place each;
wenzelm
parents: 29882
diff changeset
   516
val criterion =
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 35625
diff changeset
   517
  Parse.reserved "name" |-- Parse.!!! (Parse.$$$ ":" |-- Parse.xname) >> Name ||
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 35625
diff changeset
   518
  Parse.reserved "intro" >> K Intro ||
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 35625
diff changeset
   519
  Parse.reserved "introiff" >> K IntroIff ||
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 35625
diff changeset
   520
  Parse.reserved "elim" >> K Elim ||
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 35625
diff changeset
   521
  Parse.reserved "dest" >> K Dest ||
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 35625
diff changeset
   522
  Parse.reserved "solves" >> K Solves ||
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 35625
diff changeset
   523
  Parse.reserved "simp" |-- Parse.!!! (Parse.$$$ ":" |-- Parse.term) >> Simp ||
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 35625
diff changeset
   524
  Parse.term >> Pattern;
30142
8d6145694bb5 moved find_theorems.ML and find_consts.ML to Pure/Tools, collecting main implementation in one place each;
wenzelm
parents: 29882
diff changeset
   525
8d6145694bb5 moved find_theorems.ML and find_consts.ML to Pure/Tools, collecting main implementation in one place each;
wenzelm
parents: 29882
diff changeset
   526
val options =
8d6145694bb5 moved find_theorems.ML and find_consts.ML to Pure/Tools, collecting main implementation in one place each;
wenzelm
parents: 29882
diff changeset
   527
  Scan.optional
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 35625
diff changeset
   528
    (Parse.$$$ "(" |--
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 35625
diff changeset
   529
      Parse.!!! (Scan.option Parse.nat -- Scan.optional (Parse.reserved "with_dups" >> K false) true
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 35625
diff changeset
   530
        --| Parse.$$$ ")")) (NONE, true);
30142
8d6145694bb5 moved find_theorems.ML and find_consts.ML to Pure/Tools, collecting main implementation in one place each;
wenzelm
parents: 29882
diff changeset
   531
in
8d6145694bb5 moved find_theorems.ML and find_consts.ML to Pure/Tools, collecting main implementation in one place each;
wenzelm
parents: 29882
diff changeset
   532
8d6145694bb5 moved find_theorems.ML and find_consts.ML to Pure/Tools, collecting main implementation in one place each;
wenzelm
parents: 29882
diff changeset
   533
val _ =
36953
2af1ad9aa1a3 renamed structure OuterSyntax to Outer_Syntax, keeping the old name as alias for some time;
wenzelm
parents: 36950
diff changeset
   534
  Outer_Syntax.improper_command "find_theorems" "print theorems meeting specified criteria"
36950
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 35625
diff changeset
   535
    Keyword.diag
75b8f26f2f07 refer directly to structure Keyword and Parse;
wenzelm
parents: 35625
diff changeset
   536
    (options -- Scan.repeat (((Scan.option Parse.minus >> is_none) -- criterion))
38334
c677c2c1d333 simplified/unified command setup;
wenzelm
parents: 36953
diff changeset
   537
      >> (fn ((opt_lim, rem_dups), spec) =>
c677c2c1d333 simplified/unified command setup;
wenzelm
parents: 36953
diff changeset
   538
        Toplevel.no_timing o
c677c2c1d333 simplified/unified command setup;
wenzelm
parents: 36953
diff changeset
   539
        Toplevel.keep (fn state =>
c677c2c1d333 simplified/unified command setup;
wenzelm
parents: 36953
diff changeset
   540
          let
c677c2c1d333 simplified/unified command setup;
wenzelm
parents: 36953
diff changeset
   541
            val ctxt = Toplevel.context_of state;
c677c2c1d333 simplified/unified command setup;
wenzelm
parents: 36953
diff changeset
   542
            val opt_goal = try (Proof.simple_goal o Toplevel.proof_of) state |> Option.map #goal;
41845
6611b9cef38b reactivate time measurement (partly reverting c27b0b37041a);
krauss
parents: 41844
diff changeset
   543
          in print_theorems ctxt opt_goal opt_lim rem_dups spec end)));
16033
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   544
f93ca3d4ffa7 Retrieve theorems from proof context -- improved version of
wenzelm
parents:
diff changeset
   545
end;
30142
8d6145694bb5 moved find_theorems.ML and find_consts.ML to Pure/Tools, collecting main implementation in one place each;
wenzelm
parents: 29882
diff changeset
   546
8d6145694bb5 moved find_theorems.ML and find_consts.ML to Pure/Tools, collecting main implementation in one place each;
wenzelm
parents: 29882
diff changeset
   547
end;