src/HOL/Tools/Nitpick/nitpick_util.ML
author wenzelm
Tue, 13 Aug 2013 20:34:46 +0200
changeset 53021 d0fa3f446b9d
parent 53015 a1119cf551e8
child 53505 412f8c590c6c
permissions -rw-r--r--
discontinued special treatment of \<^isub> and \<^isup> in rendering or editor front-end; document antiquotations: renamed term style "isub" to "sub";
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
33982
1ae222745c4a fixed paths in Nitpick's ML file headers
blanchet
parents: 33705
diff changeset
     1
(*  Title:      HOL/Tools/Nitpick/nitpick_util.ML
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
     2
    Author:     Jasmin Blanchette, TU Muenchen
34982
7b8c366e34a2 added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
blanchet
parents: 34936
diff changeset
     3
    Copyright   2008, 2009, 2010
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
     4
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
     5
General-purpose functions used by the Nitpick modules.
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
     6
*)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
     7
33705
947184dc75c9 removed a few global names in Nitpick (styp, nat_less, pairf)
blanchet
parents: 33232
diff changeset
     8
signature NITPICK_UTIL =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
     9
sig
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    10
  type styp = string * typ
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    11
  datatype polarity = Pos | Neg | Neut
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    12
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    13
  exception ARG of string * string
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    14
  exception BAD of string * string
34124
c4628a1dcf75 added support for binary nat/int representation to Nitpick
blanchet
parents: 34039
diff changeset
    15
  exception TOO_SMALL of string * string
c4628a1dcf75 added support for binary nat/int representation to Nitpick
blanchet
parents: 34039
diff changeset
    16
  exception TOO_LARGE of string * string
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    17
  exception NOT_SUPPORTED of string
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    18
  exception SAME of unit
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    19
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    20
  val nitpick_prefix : string
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    21
  val curry3 : ('a * 'b * 'c -> 'd) -> 'a -> 'b -> 'c -> 'd
33705
947184dc75c9 removed a few global names in Nitpick (styp, nat_less, pairf)
blanchet
parents: 33232
diff changeset
    22
  val pairf : ('a -> 'b) -> ('a -> 'c) -> 'a -> 'b * 'c
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35280
diff changeset
    23
  val pair_from_fun : (bool -> 'a) -> 'a * 'a
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35280
diff changeset
    24
  val fun_from_pair : 'a * 'a -> bool -> 'a
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35280
diff changeset
    25
  val int_from_bool : bool -> int
33705
947184dc75c9 removed a few global names in Nitpick (styp, nat_less, pairf)
blanchet
parents: 33232
diff changeset
    26
  val nat_minus : int -> int -> int
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    27
  val reasonable_power : int -> int -> int
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    28
  val exact_log : int -> int -> int
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    29
  val exact_root : int -> int -> int
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    30
  val offset_list : int list -> int list
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    31
  val index_seq : int -> int -> int list
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    32
  val filter_indices : int list -> 'a list -> 'a list
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    33
  val filter_out_indices : int list -> 'a list -> 'a list
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    34
  val fold1 : ('a -> 'a -> 'a) -> 'a list -> 'a
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    35
  val replicate_list : int -> 'a list -> 'a list
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    36
  val n_fold_cartesian_product : 'a list list -> 'a list list
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    37
  val all_distinct_unordered_pairs_of : ''a list -> (''a * ''a) list
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    38
  val nth_combination : (int * int) list -> int -> int list
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    39
  val all_combinations : (int * int) list -> int list list
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    40
  val all_permutations : 'a list -> 'a list list
48323
7b5f7ca25d17 optimized MaSh output by chunking it
blanchet
parents: 47667
diff changeset
    41
  val chunk_list : int -> 'a list -> 'a list list
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    42
  val chunk_list_unevenly : int list -> 'a list -> 'a list list
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    43
  val map3 : ('a -> 'b -> 'c -> 'd) -> 'a list -> 'b list -> 'c list -> 'd list
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    44
  val double_lookup :
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    45
    ('a * 'a -> bool) -> ('a option * 'b) list -> 'a -> 'b option
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    46
  val triple_lookup :
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    47
    (''a * ''a -> bool) -> (''a option * 'b) list -> ''a -> 'b option
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    48
  val is_substring_of : string -> string -> bool
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    49
  val plural_s : int -> string
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    50
  val plural_s_for_list : 'a list -> string
36380
1e8fcaccb3e8 stop referring to Sledgehammer_Util stuff all over Nitpick code; instead, redeclare any needed function in Nitpick_Util as synonym for the Sledgehammer_Util function of the same name
blanchet
parents: 35964
diff changeset
    51
  val serial_commas : string -> string list -> string list
38188
7f12a03c513c better "Pretty" handling
blanchet
parents: 38026
diff changeset
    52
  val pretty_serial_commas : string -> Pretty.T list -> Pretty.T list
36380
1e8fcaccb3e8 stop referring to Sledgehammer_Util stuff all over Nitpick code; instead, redeclare any needed function in Nitpick_Util as synonym for the Sledgehammer_Util function of the same name
blanchet
parents: 35964
diff changeset
    53
  val parse_bool_option : bool -> string -> string -> bool option
1e8fcaccb3e8 stop referring to Sledgehammer_Util stuff all over Nitpick code; instead, redeclare any needed function in Nitpick_Util as synonym for the Sledgehammer_Util function of the same name
blanchet
parents: 35964
diff changeset
    54
  val parse_time_option : string -> string -> Time.time option
52031
9a9238342963 tuning -- renamed '_from_' to '_of_' in Sledgehammer
blanchet
parents: 50557
diff changeset
    55
  val string_of_time : Time.time -> string
38652
e063be321438 perform eta-expansion of quantifier bodies in Sledgehammer translation when needed + transform elim rules later;
blanchet
parents: 38240
diff changeset
    56
  val nat_subscript : int -> string
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    57
  val flip_polarity : polarity -> polarity
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    58
  val prop_T : typ
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    59
  val bool_T : typ
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    60
  val nat_T : typ
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    61
  val int_T : typ
37260
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 36555
diff changeset
    62
  val simple_string_of_typ : typ -> string
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 36555
diff changeset
    63
  val is_real_constr : theory -> string * typ -> bool
45896
100fb1f33e3e tuned signature;
wenzelm
parents: 43827
diff changeset
    64
  val typ_of_dtyp : Datatype.descr -> (Datatype.dtyp * typ) list -> Datatype.dtyp -> typ
42697
9bc5dc48f1a5 query typedefs as well for monotonicity
blanchet
parents: 42680
diff changeset
    65
  val varify_type : Proof.context -> typ -> typ
9bc5dc48f1a5 query typedefs as well for monotonicity
blanchet
parents: 42680
diff changeset
    66
  val instantiate_type : theory -> typ -> typ -> typ -> typ
9bc5dc48f1a5 query typedefs as well for monotonicity
blanchet
parents: 42680
diff changeset
    67
  val varify_and_instantiate_type : Proof.context -> typ -> typ -> typ -> typ
37260
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 36555
diff changeset
    68
  val is_of_class_const : theory -> string * typ -> bool
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 36555
diff changeset
    69
  val get_class_def : theory -> string -> (string * term) option
36555
8ff45c2076da expand combinators in Isar proofs constructed by Sledgehammer;
blanchet
parents: 36483
diff changeset
    70
  val monomorphic_term : Type.tyenv -> term -> term
37260
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 36555
diff changeset
    71
  val specialize_type : theory -> string * typ -> term -> term
38652
e063be321438 perform eta-expansion of quantifier bodies in Sledgehammer translation when needed + transform elim rules later;
blanchet
parents: 38240
diff changeset
    72
  val eta_expand : typ list -> term -> int -> term
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    73
  val time_limit : Time.time option -> ('a -> 'b) -> 'a -> 'b
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    74
  val DETERM_TIMEOUT : Time.time option -> tactic -> tactic
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    75
  val indent_size : int
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    76
  val pstrs : string -> Pretty.T list
34982
7b8c366e34a2 added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
blanchet
parents: 34936
diff changeset
    77
  val unyxml : string -> string
38188
7f12a03c513c better "Pretty" handling
blanchet
parents: 38026
diff changeset
    78
  val pretty_maybe_quote : Pretty.T -> Pretty.T
43827
62d64709af3b added option to control which lambda translation to use (for experiments)
blanchet
parents: 43085
diff changeset
    79
  val hash_term : term -> int
35866
513074557e06 move the Sledgehammer Isar commands together into one file;
blanchet
parents: 35807
diff changeset
    80
end;
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    81
33232
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33192
diff changeset
    82
structure Nitpick_Util : NITPICK_UTIL =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    83
struct
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    84
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    85
type styp = string * typ
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    86
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    87
datatype polarity = Pos | Neg | Neut
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    88
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    89
exception ARG of string * string
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    90
exception BAD of string * string
34124
c4628a1dcf75 added support for binary nat/int representation to Nitpick
blanchet
parents: 34039
diff changeset
    91
exception TOO_SMALL of string * string
c4628a1dcf75 added support for binary nat/int representation to Nitpick
blanchet
parents: 34039
diff changeset
    92
exception TOO_LARGE of string * string
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    93
exception NOT_SUPPORTED of string
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    94
exception SAME of unit
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    95
46711
f745bcc4a1e5 more explicit Long_Name operations (NB: analyzing qualifiers is inherently fragile);
wenzelm
parents: 45896
diff changeset
    96
val nitpick_prefix = "Nitpick" ^ Long_Name.separator
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    97
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    98
fun curry3 f = fn x => fn y => fn z => f (x, y, z)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    99
33705
947184dc75c9 removed a few global names in Nitpick (styp, nat_less, pairf)
blanchet
parents: 33232
diff changeset
   100
fun pairf f g x = (f x, g x)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   101
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35280
diff changeset
   102
fun pair_from_fun f = (f false, f true)
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35280
diff changeset
   103
fun fun_from_pair (f, t) b = if b then t else f
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35280
diff changeset
   104
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35280
diff changeset
   105
fun int_from_bool b = if b then 1 else 0
33705
947184dc75c9 removed a few global names in Nitpick (styp, nat_less, pairf)
blanchet
parents: 33232
diff changeset
   106
fun nat_minus i j = if i > j then i - j else 0
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   107
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   108
val max_exponent = 16384
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   109
35280
54ab4921f826 fixed a few bugs in Nitpick and removed unreferenced variables
blanchet
parents: 35220
diff changeset
   110
fun reasonable_power _ 0 = 1
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   111
  | reasonable_power a 1 = a
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   112
  | reasonable_power 0 _ = 0
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   113
  | reasonable_power 1 _ = 1
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   114
  | reasonable_power a b =
34124
c4628a1dcf75 added support for binary nat/int representation to Nitpick
blanchet
parents: 34039
diff changeset
   115
    if b < 0 then
c4628a1dcf75 added support for binary nat/int representation to Nitpick
blanchet
parents: 34039
diff changeset
   116
      raise ARG ("Nitpick_Util.reasonable_power",
c4628a1dcf75 added support for binary nat/int representation to Nitpick
blanchet
parents: 34039
diff changeset
   117
                 "negative exponent (" ^ signed_string_of_int b ^ ")")
c4628a1dcf75 added support for binary nat/int representation to Nitpick
blanchet
parents: 34039
diff changeset
   118
    else if b > max_exponent then
c4628a1dcf75 added support for binary nat/int representation to Nitpick
blanchet
parents: 34039
diff changeset
   119
      raise TOO_LARGE ("Nitpick_Util.reasonable_power",
47667
b4f71d8aecd6 handle exception (needed to solve TPTP problem SEU880^5)
blanchet
parents: 46711
diff changeset
   120
                       "too large exponent (" ^ signed_string_of_int a ^ " ^ " ^
b4f71d8aecd6 handle exception (needed to solve TPTP problem SEU880^5)
blanchet
parents: 46711
diff changeset
   121
                       signed_string_of_int b ^ ")")
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   122
    else
34124
c4628a1dcf75 added support for binary nat/int representation to Nitpick
blanchet
parents: 34039
diff changeset
   123
      let val c = reasonable_power a (b div 2) in
c4628a1dcf75 added support for binary nat/int representation to Nitpick
blanchet
parents: 34039
diff changeset
   124
        c * c * reasonable_power a (b mod 2)
c4628a1dcf75 added support for binary nat/int representation to Nitpick
blanchet
parents: 34039
diff changeset
   125
      end
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   126
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   127
fun exact_log m n =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   128
  let
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   129
    val r = Math.ln (Real.fromInt n) / Math.ln (Real.fromInt m) |> Real.round
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   130
  in
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   131
    if reasonable_power m r = n then
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   132
      r
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   133
    else
33232
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33192
diff changeset
   134
      raise ARG ("Nitpick_Util.exact_log",
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   135
                 commas (map signed_string_of_int [m, n]))
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   136
  end
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   137
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   138
fun exact_root m n =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   139
  let val r = Math.pow (Real.fromInt n, 1.0 / (Real.fromInt m)) |> Real.round in
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   140
    if reasonable_power r m = n then
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   141
      r
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   142
    else
33232
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33192
diff changeset
   143
      raise ARG ("Nitpick_Util.exact_root",
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   144
                 commas (map signed_string_of_int [m, n]))
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   145
  end
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   146
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   147
fun fold1 f = foldl1 (uncurry f)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   148
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   149
fun replicate_list 0 _ = []
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   150
  | replicate_list n xs = xs @ replicate_list (n - 1) xs
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   151
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   152
fun offset_list ns = rev (tl (fold (fn x => fn xs => (x + hd xs) :: xs) ns [0]))
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   153
fun index_seq j0 n = if j0 < 0 then j0 downto j0 - n + 1 else j0 upto j0 + n - 1
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   154
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   155
fun filter_indices js xs =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   156
  let
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   157
    fun aux _ [] _ = []
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   158
      | aux i (j :: js) (x :: xs) =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   159
        if i = j then x :: aux (i + 1) js xs else aux (i + 1) (j :: js) xs
33232
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33192
diff changeset
   160
      | aux _ _ _ = raise ARG ("Nitpick_Util.filter_indices",
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   161
                               "indices unordered or out of range")
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   162
  in aux 0 js xs end
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   163
fun filter_out_indices js xs =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   164
  let
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   165
    fun aux _ [] xs = xs
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   166
      | aux i (j :: js) (x :: xs) =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   167
        if i = j then aux (i + 1) js xs else x :: aux (i + 1) (j :: js) xs
33232
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33192
diff changeset
   168
      | aux _ _ _ = raise ARG ("Nitpick_Util.filter_out_indices",
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   169
                               "indices unordered or out of range")
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   170
  in aux 0 js xs end
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   171
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   172
fun cartesian_product [] _ = []
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   173
  | cartesian_product (x :: xs) yss =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   174
    map (cons x) yss @ cartesian_product xs yss
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   175
fun n_fold_cartesian_product xss = fold_rev cartesian_product xss [[]]
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   176
fun all_distinct_unordered_pairs_of [] = []
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   177
  | all_distinct_unordered_pairs_of (x :: xs) =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   178
    map (pair x) xs @ all_distinct_unordered_pairs_of xs
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   179
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   180
val nth_combination =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   181
  let
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   182
    fun aux [] n = ([], n)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   183
      | aux ((k, j0) :: xs) n =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   184
        let val (js, n) = aux xs n in ((n mod k) + j0 :: js, n div k) end
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   185
  in fst oo aux end
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   186
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   187
val all_combinations = n_fold_cartesian_product o map (uncurry index_seq o swap)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   188
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   189
fun all_permutations [] = [[]]
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   190
  | all_permutations xs =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   191
    maps (fn j => map (cons (nth xs j)) (all_permutations (nth_drop j xs)))
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   192
         (index_seq 0 (length xs))
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   193
49206
blanchet
parents: 48555
diff changeset
   194
(* FIXME: use "Library.chop_groups" *)
48323
7b5f7ca25d17 optimized MaSh output by chunking it
blanchet
parents: 47667
diff changeset
   195
val chunk_list = ATP_Util.chunk_list
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   196
49206
blanchet
parents: 48555
diff changeset
   197
(* FIXME: use "Library.unflat" *)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   198
fun chunk_list_unevenly _ [] = []
48323
7b5f7ca25d17 optimized MaSh output by chunking it
blanchet
parents: 47667
diff changeset
   199
  | chunk_list_unevenly [] xs = map single xs
7b5f7ca25d17 optimized MaSh output by chunking it
blanchet
parents: 47667
diff changeset
   200
  | chunk_list_unevenly (k :: ks) xs =
7b5f7ca25d17 optimized MaSh output by chunking it
blanchet
parents: 47667
diff changeset
   201
    let val (xs1, xs2) = chop k xs in xs1 :: chunk_list_unevenly ks xs2 end
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   202
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   203
fun map3 _ [] [] [] = []
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   204
  | map3 f (x :: xs) (y :: ys) (z :: zs) = f x y z :: map3 f xs ys zs
40722
441260986b63 make two copies (!) of Library.UnequalLengths coincide with ListPair.UnequalLengths;
wenzelm
parents: 40627
diff changeset
   205
  | map3 _ _ _ _ = raise ListPair.UnequalLengths
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   206
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   207
fun double_lookup eq ps key =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   208
  case AList.lookup (fn (SOME x, SOME y) => eq (x, y) | _ => false) ps
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   209
                    (SOME key) of
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   210
    SOME z => SOME z
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   211
  | NONE => ps |> find_first (is_none o fst) |> Option.map snd
35220
2bcdae5f4fdb added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
blanchet
parents: 34982
diff changeset
   212
fun triple_lookup _ [(NONE, z)] _ = SOME z
2bcdae5f4fdb added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
blanchet
parents: 34982
diff changeset
   213
  | triple_lookup eq ps key =
2bcdae5f4fdb added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
blanchet
parents: 34982
diff changeset
   214
    case AList.lookup (op =) ps (SOME key) of
2bcdae5f4fdb added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
blanchet
parents: 34982
diff changeset
   215
      SOME z => SOME z
2bcdae5f4fdb added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
blanchet
parents: 34982
diff changeset
   216
    | NONE => double_lookup eq ps key
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   217
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   218
fun is_substring_of needle stack =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   219
  not (Substring.isEmpty (snd (Substring.position needle
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   220
                                                  (Substring.full stack))))
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   221
36380
1e8fcaccb3e8 stop referring to Sledgehammer_Util stuff all over Nitpick code; instead, redeclare any needed function in Nitpick_Util as synonym for the Sledgehammer_Util function of the same name
blanchet
parents: 35964
diff changeset
   222
val plural_s = Sledgehammer_Util.plural_s
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   223
fun plural_s_for_list xs = plural_s (length xs)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   224
43029
3e060b1c844b use helpers and tweak Quickcheck's priority to it comes second (to give Solve Direct slightly more time before another prover runs)
blanchet
parents: 42697
diff changeset
   225
val serial_commas = Try.serial_commas
36380
1e8fcaccb3e8 stop referring to Sledgehammer_Util stuff all over Nitpick code; instead, redeclare any needed function in Nitpick_Util as synonym for the Sledgehammer_Util function of the same name
blanchet
parents: 35964
diff changeset
   226
38188
7f12a03c513c better "Pretty" handling
blanchet
parents: 38026
diff changeset
   227
fun pretty_serial_commas _ [] = []
7f12a03c513c better "Pretty" handling
blanchet
parents: 38026
diff changeset
   228
  | pretty_serial_commas _ [p] = [p]
7f12a03c513c better "Pretty" handling
blanchet
parents: 38026
diff changeset
   229
  | pretty_serial_commas conj [p1, p2] =
7f12a03c513c better "Pretty" handling
blanchet
parents: 38026
diff changeset
   230
    [p1, Pretty.brk 1, Pretty.str conj, Pretty.brk 1, p2]
7f12a03c513c better "Pretty" handling
blanchet
parents: 38026
diff changeset
   231
  | pretty_serial_commas conj [p1, p2, p3] =
7f12a03c513c better "Pretty" handling
blanchet
parents: 38026
diff changeset
   232
    [p1, Pretty.str ",", Pretty.brk 1, p2, Pretty.str ",", Pretty.brk 1,
7f12a03c513c better "Pretty" handling
blanchet
parents: 38026
diff changeset
   233
     Pretty.str conj, Pretty.brk 1, p3]
7f12a03c513c better "Pretty" handling
blanchet
parents: 38026
diff changeset
   234
  | pretty_serial_commas conj (p :: ps) =
7f12a03c513c better "Pretty" handling
blanchet
parents: 38026
diff changeset
   235
    p :: Pretty.str "," :: Pretty.brk 1 :: pretty_serial_commas conj ps
7f12a03c513c better "Pretty" handling
blanchet
parents: 38026
diff changeset
   236
36380
1e8fcaccb3e8 stop referring to Sledgehammer_Util stuff all over Nitpick code; instead, redeclare any needed function in Nitpick_Util as synonym for the Sledgehammer_Util function of the same name
blanchet
parents: 35964
diff changeset
   237
val parse_bool_option = Sledgehammer_Util.parse_bool_option
1e8fcaccb3e8 stop referring to Sledgehammer_Util stuff all over Nitpick code; instead, redeclare any needed function in Nitpick_Util as synonym for the Sledgehammer_Util function of the same name
blanchet
parents: 35964
diff changeset
   238
val parse_time_option = Sledgehammer_Util.parse_time_option
52031
9a9238342963 tuning -- renamed '_from_' to '_of_' in Sledgehammer
blanchet
parents: 50557
diff changeset
   239
val string_of_time = ATP_Util.string_of_time
36380
1e8fcaccb3e8 stop referring to Sledgehammer_Util stuff all over Nitpick code; instead, redeclare any needed function in Nitpick_Util as synonym for the Sledgehammer_Util function of the same name
blanchet
parents: 35964
diff changeset
   240
53021
d0fa3f446b9d discontinued special treatment of \<^isub> and \<^isup> in rendering or editor front-end;
wenzelm
parents: 53015
diff changeset
   241
val subscript = implode o map (prefix "\<^sub>") o Symbol.explode
38652
e063be321438 perform eta-expansion of quantifier bodies in Sledgehammer translation when needed + transform elim rules later;
blanchet
parents: 38240
diff changeset
   242
fun nat_subscript n =
53021
d0fa3f446b9d discontinued special treatment of \<^isub> and \<^isup> in rendering or editor front-end;
wenzelm
parents: 53015
diff changeset
   243
  n |> signed_string_of_int |> print_mode_active Symbol.xsymbolsN ? subscript
38652
e063be321438 perform eta-expansion of quantifier bodies in Sledgehammer translation when needed + transform elim rules later;
blanchet
parents: 38240
diff changeset
   244
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   245
fun flip_polarity Pos = Neg
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   246
  | flip_polarity Neg = Pos
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   247
  | flip_polarity Neut = Neut
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   248
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   249
val prop_T = @{typ prop}
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   250
val bool_T = @{typ bool}
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   251
val nat_T = @{typ nat}
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   252
val int_T = @{typ int}
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   253
49985
5b4b0e4e5205 moved Refute to "HOL/Library" to speed up building "Main" even more
blanchet
parents: 49206
diff changeset
   254
fun simple_string_of_typ (Type (s, _))     = s
5b4b0e4e5205 moved Refute to "HOL/Library" to speed up building "Main" even more
blanchet
parents: 49206
diff changeset
   255
  | simple_string_of_typ (TFree (s, _))    = s
5b4b0e4e5205 moved Refute to "HOL/Library" to speed up building "Main" even more
blanchet
parents: 49206
diff changeset
   256
  | simple_string_of_typ (TVar ((s, _), _)) = s
5b4b0e4e5205 moved Refute to "HOL/Library" to speed up building "Main" even more
blanchet
parents: 49206
diff changeset
   257
5b4b0e4e5205 moved Refute to "HOL/Library" to speed up building "Main" even more
blanchet
parents: 49206
diff changeset
   258
fun is_real_constr thy (s, T) =
5b4b0e4e5205 moved Refute to "HOL/Library" to speed up building "Main" even more
blanchet
parents: 49206
diff changeset
   259
  case body_type T of
5b4b0e4e5205 moved Refute to "HOL/Library" to speed up building "Main" even more
blanchet
parents: 49206
diff changeset
   260
    Type (s', _) =>
5b4b0e4e5205 moved Refute to "HOL/Library" to speed up building "Main" even more
blanchet
parents: 49206
diff changeset
   261
    (case Datatype.get_constrs thy s' of
5b4b0e4e5205 moved Refute to "HOL/Library" to speed up building "Main" even more
blanchet
parents: 49206
diff changeset
   262
       SOME constrs =>
5b4b0e4e5205 moved Refute to "HOL/Library" to speed up building "Main" even more
blanchet
parents: 49206
diff changeset
   263
       List.exists (fn (cname, cty) =>
5b4b0e4e5205 moved Refute to "HOL/Library" to speed up building "Main" even more
blanchet
parents: 49206
diff changeset
   264
         cname = s andalso Sign.typ_instance thy (T, cty)) constrs
5b4b0e4e5205 moved Refute to "HOL/Library" to speed up building "Main" even more
blanchet
parents: 49206
diff changeset
   265
     | NONE => false)
5b4b0e4e5205 moved Refute to "HOL/Library" to speed up building "Main" even more
blanchet
parents: 49206
diff changeset
   266
  | _  => false
5b4b0e4e5205 moved Refute to "HOL/Library" to speed up building "Main" even more
blanchet
parents: 49206
diff changeset
   267
43085
0a2f5b86bdd7 first step in sharing more code between ATP and Metis translation
blanchet
parents: 43029
diff changeset
   268
val typ_of_dtyp = ATP_Util.typ_of_dtyp
0a2f5b86bdd7 first step in sharing more code between ATP and Metis translation
blanchet
parents: 43029
diff changeset
   269
val varify_type = ATP_Util.varify_type
0a2f5b86bdd7 first step in sharing more code between ATP and Metis translation
blanchet
parents: 43029
diff changeset
   270
val instantiate_type = ATP_Util.instantiate_type
0a2f5b86bdd7 first step in sharing more code between ATP and Metis translation
blanchet
parents: 43029
diff changeset
   271
val varify_and_instantiate_type = ATP_Util.varify_and_instantiate_type
49985
5b4b0e4e5205 moved Refute to "HOL/Library" to speed up building "Main" even more
blanchet
parents: 49206
diff changeset
   272
5b4b0e4e5205 moved Refute to "HOL/Library" to speed up building "Main" even more
blanchet
parents: 49206
diff changeset
   273
fun is_of_class_const thy (s, _) =
5b4b0e4e5205 moved Refute to "HOL/Library" to speed up building "Main" even more
blanchet
parents: 49206
diff changeset
   274
  member (op =) (map Logic.const_of_class (Sign.all_classes thy)) s
5b4b0e4e5205 moved Refute to "HOL/Library" to speed up building "Main" even more
blanchet
parents: 49206
diff changeset
   275
5b4b0e4e5205 moved Refute to "HOL/Library" to speed up building "Main" even more
blanchet
parents: 49206
diff changeset
   276
fun get_class_def thy class =
5b4b0e4e5205 moved Refute to "HOL/Library" to speed up building "Main" even more
blanchet
parents: 49206
diff changeset
   277
  let val axname = class ^ "_class_def" in
5b4b0e4e5205 moved Refute to "HOL/Library" to speed up building "Main" even more
blanchet
parents: 49206
diff changeset
   278
    Option.map (pair axname)
5b4b0e4e5205 moved Refute to "HOL/Library" to speed up building "Main" even more
blanchet
parents: 49206
diff changeset
   279
      (AList.lookup (op =) (Theory.all_axioms_of thy) axname)
5b4b0e4e5205 moved Refute to "HOL/Library" to speed up building "Main" even more
blanchet
parents: 49206
diff changeset
   280
  end;
5b4b0e4e5205 moved Refute to "HOL/Library" to speed up building "Main" even more
blanchet
parents: 49206
diff changeset
   281
43085
0a2f5b86bdd7 first step in sharing more code between ATP and Metis translation
blanchet
parents: 43029
diff changeset
   282
val monomorphic_term = ATP_Util.monomorphic_term
0a2f5b86bdd7 first step in sharing more code between ATP and Metis translation
blanchet
parents: 43029
diff changeset
   283
val specialize_type = ATP_Util.specialize_type
0a2f5b86bdd7 first step in sharing more code between ATP and Metis translation
blanchet
parents: 43029
diff changeset
   284
val eta_expand = ATP_Util.eta_expand
50557
31313171deb5 thread no timeout properly
blanchet
parents: 49985
diff changeset
   285
val time_limit = Sledgehammer_Util.time_limit
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   286
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   287
fun DETERM_TIMEOUT delay tac st =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   288
  Seq.of_list (the_list (time_limit delay (fn () => SINGLE tac st) ()))
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   289
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   290
val indent_size = 2
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   291
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   292
val pstrs = Pretty.breaks o map Pretty.str o space_explode " "
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   293
43085
0a2f5b86bdd7 first step in sharing more code between ATP and Metis translation
blanchet
parents: 43029
diff changeset
   294
val unyxml = ATP_Util.unyxml
38188
7f12a03c513c better "Pretty" handling
blanchet
parents: 38026
diff changeset
   295
43085
0a2f5b86bdd7 first step in sharing more code between ATP and Metis translation
blanchet
parents: 43029
diff changeset
   296
val maybe_quote = ATP_Util.maybe_quote
38188
7f12a03c513c better "Pretty" handling
blanchet
parents: 38026
diff changeset
   297
fun pretty_maybe_quote pretty =
7f12a03c513c better "Pretty" handling
blanchet
parents: 38026
diff changeset
   298
  let val s = Pretty.str_of pretty in
7f12a03c513c better "Pretty" handling
blanchet
parents: 38026
diff changeset
   299
    if maybe_quote s = s then pretty else Pretty.enum "" "\"" "\"" [pretty]
7f12a03c513c better "Pretty" handling
blanchet
parents: 38026
diff changeset
   300
  end
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   301
43827
62d64709af3b added option to control which lambda translation to use (for experiments)
blanchet
parents: 43085
diff changeset
   302
val hash_term = ATP_Util.hash_term
36380
1e8fcaccb3e8 stop referring to Sledgehammer_Util stuff all over Nitpick code; instead, redeclare any needed function in Nitpick_Util as synonym for the Sledgehammer_Util function of the same name
blanchet
parents: 35964
diff changeset
   303
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   304
end;