src/HOL/Tools/Nitpick/nitpick_mono.ML
author blanchet
Tue, 03 Jan 2012 18:33:17 +0100
changeset 46083 efeaa79f021b
parent 46081 8f6465f7021b
child 46085 447cda88adfe
permissions -rw-r--r--
port part of Nitpick to "set" type constructor
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
33982
1ae222745c4a fixed paths in Nitpick's ML file headers
blanchet
parents: 33852
diff changeset
     1
(*  Title:      HOL/Tools/Nitpick/nitpick_mono.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   2009, 2010
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
     4
35384
88dbcfe75c45 cosmetics
blanchet
parents: 35280
diff changeset
     5
Monotonicity inference for higher-order logic.
33192
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
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
     8
signature NITPICK_MONO =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
     9
sig
35070
96136eb6218f split "nitpick_hol.ML" into two files to make it more manageable;
blanchet
parents: 34998
diff changeset
    10
  type hol_context = Nitpick_HOL.hol_context
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    11
38179
7207321df8af make tracing monotonicity easier
blanchet
parents: 37704
diff changeset
    12
  val trace : bool Unsynchronized.ref
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    13
  val formulas_monotonic :
41001
11715564e2ad removed old baggage from monotonicity calculus -- the "calculus" option didn't really work anyway because of on-the-fly simplifications
blanchet
parents: 41000
diff changeset
    14
    hol_context -> bool -> typ -> term list * term list -> bool
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    15
end;
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    16
33232
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33192
diff changeset
    17
structure Nitpick_Mono : NITPICK_MONO =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    18
struct
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    19
33232
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33192
diff changeset
    20
open Nitpick_Util
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33192
diff changeset
    21
open Nitpick_HOL
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    22
40985
8b870370c26f started generalizing monotonicity code to accommodate new calculus
blanchet
parents: 40722
diff changeset
    23
datatype sign = Plus | Minus
8b870370c26f started generalizing monotonicity code to accommodate new calculus
blanchet
parents: 40722
diff changeset
    24
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    25
type var = int
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    26
40985
8b870370c26f started generalizing monotonicity code to accommodate new calculus
blanchet
parents: 40722
diff changeset
    27
datatype annotation = Gen | New | Fls | Tru
8b870370c26f started generalizing monotonicity code to accommodate new calculus
blanchet
parents: 40722
diff changeset
    28
datatype annotation_atom = A of annotation | V of var
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    29
40996
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
    30
type assign_literal = var * (sign * annotation)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    31
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
    32
datatype mtyp =
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
    33
  MAlpha |
40985
8b870370c26f started generalizing monotonicity code to accommodate new calculus
blanchet
parents: 40722
diff changeset
    34
  MFun of mtyp * annotation_atom * mtyp |
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
    35
  MPair of mtyp * mtyp |
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
    36
  MType of string * mtyp list |
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
    37
  MRec of string * typ list
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    38
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
    39
type mdata =
35070
96136eb6218f split "nitpick_hol.ML" into two files to make it more manageable;
blanchet
parents: 34998
diff changeset
    40
  {hol_ctxt: hol_context,
35190
ce653cc27a94 make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
blanchet
parents: 35079
diff changeset
    41
   binarize: bool,
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    42
   alpha_T: typ,
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    43
   max_fresh: int Unsynchronized.ref,
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
    44
   datatype_mcache: ((string * typ list) * mtyp) list Unsynchronized.ref,
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
    45
   constr_mcache: (styp * mtyp) list Unsynchronized.ref}
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    46
35812
394fe2b064cd solve error in "Nitpick_Mono" + short path when no finite functions are inferred
blanchet
parents: 35672
diff changeset
    47
exception UNSOLVABLE of unit
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
    48
exception MTYPE of string * mtyp list * typ list
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    49
38179
7207321df8af make tracing monotonicity easier
blanchet
parents: 37704
diff changeset
    50
val trace = Unsynchronized.ref false
7207321df8af make tracing monotonicity easier
blanchet
parents: 37704
diff changeset
    51
fun trace_msg msg = if !trace then tracing (msg ()) else ()
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    52
40985
8b870370c26f started generalizing monotonicity code to accommodate new calculus
blanchet
parents: 40722
diff changeset
    53
fun string_for_sign Plus = "+"
8b870370c26f started generalizing monotonicity code to accommodate new calculus
blanchet
parents: 40722
diff changeset
    54
  | string_for_sign Minus = "-"
8b870370c26f started generalizing monotonicity code to accommodate new calculus
blanchet
parents: 40722
diff changeset
    55
8b870370c26f started generalizing monotonicity code to accommodate new calculus
blanchet
parents: 40722
diff changeset
    56
fun negate_sign Plus = Minus
8b870370c26f started generalizing monotonicity code to accommodate new calculus
blanchet
parents: 40722
diff changeset
    57
  | negate_sign Minus = Plus
8b870370c26f started generalizing monotonicity code to accommodate new calculus
blanchet
parents: 40722
diff changeset
    58
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    59
val string_for_var = signed_string_of_int
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    60
fun string_for_vars sep [] = "0\<^bsub>" ^ sep ^ "\<^esub>"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    61
  | string_for_vars sep xs = space_implode sep (map string_for_var xs)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    62
fun subscript_string_for_vars sep xs =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    63
  if null xs then "" else "\<^bsub>" ^ string_for_vars sep xs ^ "\<^esub>"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    64
40985
8b870370c26f started generalizing monotonicity code to accommodate new calculus
blanchet
parents: 40722
diff changeset
    65
fun string_for_annotation Gen = "G"
8b870370c26f started generalizing monotonicity code to accommodate new calculus
blanchet
parents: 40722
diff changeset
    66
  | string_for_annotation New = "N"
8b870370c26f started generalizing monotonicity code to accommodate new calculus
blanchet
parents: 40722
diff changeset
    67
  | string_for_annotation Fls = "F"
8b870370c26f started generalizing monotonicity code to accommodate new calculus
blanchet
parents: 40722
diff changeset
    68
  | string_for_annotation Tru = "T"
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    69
40985
8b870370c26f started generalizing monotonicity code to accommodate new calculus
blanchet
parents: 40722
diff changeset
    70
fun string_for_annotation_atom (A a) = string_for_annotation a
8b870370c26f started generalizing monotonicity code to accommodate new calculus
blanchet
parents: 40722
diff changeset
    71
  | string_for_annotation_atom (V x) = string_for_var x
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    72
40996
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
    73
fun string_for_assign_literal (x, (sn, a)) =
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
    74
  string_for_var x ^ (case sn of Plus => " = " | Minus => " \<noteq> ") ^
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
    75
  string_for_annotation a
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    76
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
    77
val bool_M = MType (@{type_name bool}, [])
35386
45a4e19d3ebd more work on the new monotonicity stuff in Nitpick
blanchet
parents: 35385
diff changeset
    78
val dummy_M = MType (nitpick_prefix ^ "dummy", [])
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    79
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
    80
fun is_MRec (MRec _) = true
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
    81
  | is_MRec _ = false
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
    82
fun dest_MFun (MFun z) = z
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
    83
  | dest_MFun M = raise MTYPE ("Nitpick_Mono.dest_MFun", [M], [])
33192
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
val no_prec = 100
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    86
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
    87
fun precedence_of_mtype (MFun _) = 1
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
    88
  | precedence_of_mtype (MPair _) = 2
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
    89
  | precedence_of_mtype _ = no_prec
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    90
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
    91
val string_for_mtype =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    92
  let
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
    93
    fun aux outer_prec M =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    94
      let
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
    95
        val prec = precedence_of_mtype M
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    96
        val need_parens = (prec < outer_prec)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    97
      in
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    98
        (if need_parens then "(" else "") ^
35386
45a4e19d3ebd more work on the new monotonicity stuff in Nitpick
blanchet
parents: 35385
diff changeset
    99
        (if M = dummy_M then
45a4e19d3ebd more work on the new monotonicity stuff in Nitpick
blanchet
parents: 35385
diff changeset
   100
           "_"
45a4e19d3ebd more work on the new monotonicity stuff in Nitpick
blanchet
parents: 35385
diff changeset
   101
         else case M of
45a4e19d3ebd more work on the new monotonicity stuff in Nitpick
blanchet
parents: 35385
diff changeset
   102
             MAlpha => "\<alpha>"
40988
blanchet
parents: 40987
diff changeset
   103
           | MFun (M1, aa, M2) =>
35386
45a4e19d3ebd more work on the new monotonicity stuff in Nitpick
blanchet
parents: 35385
diff changeset
   104
             aux (prec + 1) M1 ^ " \<Rightarrow>\<^bsup>" ^
40988
blanchet
parents: 40987
diff changeset
   105
             string_for_annotation_atom aa ^ "\<^esup> " ^ aux prec M2
35386
45a4e19d3ebd more work on the new monotonicity stuff in Nitpick
blanchet
parents: 35385
diff changeset
   106
           | MPair (M1, M2) => aux (prec + 1) M1 ^ " \<times> " ^ aux prec M2
45a4e19d3ebd more work on the new monotonicity stuff in Nitpick
blanchet
parents: 35385
diff changeset
   107
           | MType (s, []) =>
45a4e19d3ebd more work on the new monotonicity stuff in Nitpick
blanchet
parents: 35385
diff changeset
   108
             if s = @{type_name prop} orelse s = @{type_name bool} then "o"
45a4e19d3ebd more work on the new monotonicity stuff in Nitpick
blanchet
parents: 35385
diff changeset
   109
             else s
45a4e19d3ebd more work on the new monotonicity stuff in Nitpick
blanchet
parents: 35385
diff changeset
   110
           | MType (s, Ms) => "(" ^ commas (map (aux 0) Ms) ^ ") " ^ s
45a4e19d3ebd more work on the new monotonicity stuff in Nitpick
blanchet
parents: 35385
diff changeset
   111
           | MRec (s, _) => "[" ^ s ^ "]") ^
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   112
        (if need_parens then ")" else "")
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   113
      end
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   114
  in aux 0 end
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   115
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   116
fun flatten_mtype (MPair (M1, M2)) = maps flatten_mtype [M1, M2]
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   117
  | flatten_mtype (MType (_, Ms)) = maps flatten_mtype Ms
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   118
  | flatten_mtype M = [M]
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   119
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   120
fun initial_mdata hol_ctxt binarize alpha_T =
35190
ce653cc27a94 make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
blanchet
parents: 35079
diff changeset
   121
  ({hol_ctxt = hol_ctxt, binarize = binarize, alpha_T = alpha_T,
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   122
    max_fresh = Unsynchronized.ref 0, datatype_mcache = Unsynchronized.ref [],
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   123
    constr_mcache = Unsynchronized.ref []} : mdata)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   124
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   125
fun could_exist_alpha_subtype alpha_T (T as Type (_, Ts)) =
34936
c4f04bee79f3 some work on Nitpick's support for quotient types;
blanchet
parents: 34123
diff changeset
   126
    T = alpha_T orelse (not (is_fp_iterator_type T) andalso
c4f04bee79f3 some work on Nitpick's support for quotient types;
blanchet
parents: 34123
diff changeset
   127
                        exists (could_exist_alpha_subtype alpha_T) Ts)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   128
  | could_exist_alpha_subtype alpha_T T = (T = alpha_T)
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   129
fun could_exist_alpha_sub_mtype _ (alpha_T as TFree _) T =
34121
5e831d805118 get rid of polymorphic equality in Nitpick's code + a few minor cleanups
blanchet
parents: 33982
diff changeset
   130
    could_exist_alpha_subtype alpha_T T
37256
0dca1ec52999 thread along context instead of theory for typedef lookup
blanchet
parents: 36385
diff changeset
   131
  | could_exist_alpha_sub_mtype ctxt alpha_T T =
0dca1ec52999 thread along context instead of theory for typedef lookup
blanchet
parents: 36385
diff changeset
   132
    (T = alpha_T orelse is_datatype ctxt [(NONE, true)] T)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   133
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   134
fun exists_alpha_sub_mtype MAlpha = true
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   135
  | exists_alpha_sub_mtype (MFun (M1, _, M2)) =
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   136
    exists exists_alpha_sub_mtype [M1, M2]
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   137
  | exists_alpha_sub_mtype (MPair (M1, M2)) =
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   138
    exists exists_alpha_sub_mtype [M1, M2]
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   139
  | exists_alpha_sub_mtype (MType (_, Ms)) = exists exists_alpha_sub_mtype Ms
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   140
  | exists_alpha_sub_mtype (MRec _) = true
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   141
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   142
fun exists_alpha_sub_mtype_fresh MAlpha = true
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   143
  | exists_alpha_sub_mtype_fresh (MFun (_, V _, _)) = true
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   144
  | exists_alpha_sub_mtype_fresh (MFun (_, _, M2)) =
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   145
    exists_alpha_sub_mtype_fresh M2
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   146
  | exists_alpha_sub_mtype_fresh (MPair (M1, M2)) =
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   147
    exists exists_alpha_sub_mtype_fresh [M1, M2]
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   148
  | exists_alpha_sub_mtype_fresh (MType (_, Ms)) =
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   149
    exists exists_alpha_sub_mtype_fresh Ms
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   150
  | exists_alpha_sub_mtype_fresh (MRec _) = true
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   151
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   152
fun constr_mtype_for_binders z Ms =
40985
8b870370c26f started generalizing monotonicity code to accommodate new calculus
blanchet
parents: 40722
diff changeset
   153
  fold_rev (fn M => curry3 MFun M (A Gen)) Ms (MRec z)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   154
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   155
fun repair_mtype _ _ MAlpha = MAlpha
40988
blanchet
parents: 40987
diff changeset
   156
  | repair_mtype cache seen (MFun (M1, aa, M2)) =
blanchet
parents: 40987
diff changeset
   157
    MFun (repair_mtype cache seen M1, aa, repair_mtype cache seen M2)
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   158
  | repair_mtype cache seen (MPair Mp) =
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   159
    MPair (pairself (repair_mtype cache seen) Mp)
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   160
  | repair_mtype cache seen (MType (s, Ms)) =
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   161
    MType (s, maps (flatten_mtype o repair_mtype cache seen) Ms)
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   162
  | repair_mtype cache seen (MRec (z as (s, _))) =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   163
    case AList.lookup (op =) cache z |> the of
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   164
      MRec _ => MType (s, [])
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   165
    | M => if member (op =) seen M then MType (s, [])
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   166
           else repair_mtype cache (M :: seen) M
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   167
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   168
fun repair_datatype_mcache cache =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   169
  let
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   170
    fun repair_one (z, M) =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   171
      Unsynchronized.change cache
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   172
          (AList.update (op =) (z, repair_mtype (!cache) [] M))
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   173
  in List.app repair_one (rev (!cache)) end
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   174
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   175
fun repair_constr_mcache dtype_cache constr_mcache =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   176
  let
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   177
    fun repair_one (x, M) =
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   178
      Unsynchronized.change constr_mcache
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   179
          (AList.update (op =) (x, repair_mtype dtype_cache [] M))
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   180
  in List.app repair_one (!constr_mcache) end
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   181
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   182
fun is_fin_fun_supported_type @{typ prop} = true
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   183
  | is_fin_fun_supported_type @{typ bool} = true
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   184
  | is_fin_fun_supported_type (Type (@{type_name option}, _)) = true
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   185
  | is_fin_fun_supported_type _ = false
41009
91495051c2ec improve precision of finite functions in monotonicity calculus
blanchet
parents: 41007
diff changeset
   186
91495051c2ec improve precision of finite functions in monotonicity calculus
blanchet
parents: 41007
diff changeset
   187
(* TODO: clean this up *)
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   188
fun fin_fun_body _ _ (t as @{term False}) = SOME t
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   189
  | fin_fun_body _ _ (t as Const (@{const_name None}, _)) = SOME t
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   190
  | fin_fun_body dom_T ran_T
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   191
                 ((t0 as Const (@{const_name If}, _))
38864
4abe644fcea5 formerly unnamed infix equality now named HOL.eq
haftmann
parents: 38795
diff changeset
   192
                  $ (t1 as Const (@{const_name HOL.eq}, _) $ Bound 0 $ t1')
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   193
                  $ t2 $ t3) =
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   194
    (if loose_bvar1 (t1', 0) then
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   195
       NONE
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   196
     else case fin_fun_body dom_T ran_T t3 of
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   197
       NONE => NONE
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   198
     | SOME t3 =>
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   199
       SOME (t0 $ (Const (@{const_name is_unknown}, dom_T --> bool_T) $ t1')
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   200
                $ (Const (@{const_name unknown}, ran_T)) $ (t0 $ t1 $ t2 $ t3)))
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   201
  | fin_fun_body _ _ _ = NONE
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   202
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   203
(* FIXME: make sure well-annotated *)
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   204
35672
ff484d4f2e14 more work on Nitpick's finite sets
blanchet
parents: 35671
diff changeset
   205
fun fresh_mfun_for_fun_type (mdata as {max_fresh, ...} : mdata) all_minus
ff484d4f2e14 more work on Nitpick's finite sets
blanchet
parents: 35671
diff changeset
   206
                            T1 T2 =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   207
  let
35672
ff484d4f2e14 more work on Nitpick's finite sets
blanchet
parents: 35671
diff changeset
   208
    val M1 = fresh_mtype_for_type mdata all_minus T1
ff484d4f2e14 more work on Nitpick's finite sets
blanchet
parents: 35671
diff changeset
   209
    val M2 = fresh_mtype_for_type mdata all_minus T2
40988
blanchet
parents: 40987
diff changeset
   210
    val aa = if not all_minus andalso exists_alpha_sub_mtype_fresh M1 andalso
blanchet
parents: 40987
diff changeset
   211
                is_fin_fun_supported_type (body_type T2) then
blanchet
parents: 40987
diff changeset
   212
               V (Unsynchronized.inc max_fresh)
blanchet
parents: 40987
diff changeset
   213
             else
blanchet
parents: 40987
diff changeset
   214
               A Gen
blanchet
parents: 40987
diff changeset
   215
  in (M1, aa, M2) end
37256
0dca1ec52999 thread along context instead of theory for typedef lookup
blanchet
parents: 36385
diff changeset
   216
and fresh_mtype_for_type (mdata as {hol_ctxt as {ctxt, ...}, binarize, alpha_T,
35672
ff484d4f2e14 more work on Nitpick's finite sets
blanchet
parents: 35671
diff changeset
   217
                                    datatype_mcache, constr_mcache, ...})
ff484d4f2e14 more work on Nitpick's finite sets
blanchet
parents: 35671
diff changeset
   218
                         all_minus =
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   219
  let
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   220
    fun do_type T =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   221
      if T = alpha_T then
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   222
        MAlpha
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   223
      else case T of
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   224
        Type (@{type_name fun}, [T1, T2]) =>
39342
1a0e6f16a91b correctly thread parameter through
blanchet
parents: 39316
diff changeset
   225
        MFun (fresh_mfun_for_fun_type mdata all_minus T1 T2)
38190
b02e204b613a get rid of all "optimizations" regarding "unit" and other cardinality-1 types
blanchet
parents: 38179
diff changeset
   226
      | Type (@{type_name prod}, [T1, T2]) => MPair (pairself do_type (T1, T2))
46081
8f6465f7021b ported mono calculus to handle "set" type constructors
blanchet
parents: 41471
diff changeset
   227
      | Type (@{type_name set}, [T']) => do_type (T' --> bool_T)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   228
      | Type (z as (s, _)) =>
37256
0dca1ec52999 thread along context instead of theory for typedef lookup
blanchet
parents: 36385
diff changeset
   229
        if could_exist_alpha_sub_mtype ctxt alpha_T T then
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   230
          case AList.lookup (op =) (!datatype_mcache) z of
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   231
            SOME M => M
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   232
          | NONE =>
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   233
            let
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   234
              val _ = Unsynchronized.change datatype_mcache (cons (z, MRec z))
35219
15a5f213ef5b fix bug in Nitpick's monotonicity code w.r.t. binary integers
blanchet
parents: 35190
diff changeset
   235
              val xs = binarized_and_boxed_datatype_constrs hol_ctxt binarize T
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   236
              val (all_Ms, constr_Ms) =
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   237
                fold_rev (fn (_, T') => fn (all_Ms, constr_Ms) =>
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   238
                             let
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   239
                               val binder_Ms = map do_type (binder_types T')
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   240
                               val new_Ms = filter exists_alpha_sub_mtype_fresh
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   241
                                                   binder_Ms
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   242
                               val constr_M = constr_mtype_for_binders z
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   243
                                                                       binder_Ms
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   244
                             in
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   245
                               (union (op =) new_Ms all_Ms,
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   246
                                constr_M :: constr_Ms)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   247
                             end)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   248
                         xs ([], [])
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   249
              val M = MType (s, all_Ms)
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   250
              val _ = Unsynchronized.change datatype_mcache
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   251
                          (AList.update (op =) (z, M))
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   252
              val _ = Unsynchronized.change constr_mcache
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   253
                          (append (xs ~~ constr_Ms))
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   254
            in
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   255
              if forall (not o is_MRec o snd) (!datatype_mcache) then
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   256
                (repair_datatype_mcache datatype_mcache;
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   257
                 repair_constr_mcache (!datatype_mcache) constr_mcache;
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   258
                 AList.lookup (op =) (!datatype_mcache) z |> the)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   259
              else
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   260
                M
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   261
            end
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   262
        else
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   263
          MType (s, [])
37260
dde817e6dfb1 added "atoms" option to Nitpick (request from Karlsruhe) + wrap Refute. functions to "nitpick_util.ML"
blanchet
parents: 37256
diff changeset
   264
      | _ => MType (simple_string_of_typ T, [])
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   265
  in do_type end
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   266
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   267
val ground_and_sole_base_constrs = []
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   268
(* FIXME: [@{const_name Nil}, @{const_name None}], cf. lists_empty *)
41009
91495051c2ec improve precision of finite functions in monotonicity calculus
blanchet
parents: 41007
diff changeset
   269
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   270
fun prodM_factors (MPair (M1, M2)) = maps prodM_factors [M1, M2]
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   271
  | prodM_factors M = [M]
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   272
fun curried_strip_mtype (MFun (M1, _, M2)) =
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   273
    curried_strip_mtype M2 |>> append (prodM_factors M1)
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   274
  | curried_strip_mtype M = ([], M)
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   275
fun sel_mtype_from_constr_mtype s M =
41009
91495051c2ec improve precision of finite functions in monotonicity calculus
blanchet
parents: 41007
diff changeset
   276
  let
91495051c2ec improve precision of finite functions in monotonicity calculus
blanchet
parents: 41007
diff changeset
   277
    val (arg_Ms, dataM) = curried_strip_mtype M
91495051c2ec improve precision of finite functions in monotonicity calculus
blanchet
parents: 41007
diff changeset
   278
    val a = if member (op =) ground_and_sole_base_constrs
91495051c2ec improve precision of finite functions in monotonicity calculus
blanchet
parents: 41007
diff changeset
   279
                             (constr_name_for_sel_like s) then
91495051c2ec improve precision of finite functions in monotonicity calculus
blanchet
parents: 41007
diff changeset
   280
              Fls
91495051c2ec improve precision of finite functions in monotonicity calculus
blanchet
parents: 41007
diff changeset
   281
            else
91495051c2ec improve precision of finite functions in monotonicity calculus
blanchet
parents: 41007
diff changeset
   282
              Gen
91495051c2ec improve precision of finite functions in monotonicity calculus
blanchet
parents: 41007
diff changeset
   283
  in
91495051c2ec improve precision of finite functions in monotonicity calculus
blanchet
parents: 41007
diff changeset
   284
    MFun (dataM, A a,
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   285
          case sel_no_from_name s of ~1 => bool_M | n => nth arg_Ms n)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   286
  end
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   287
37256
0dca1ec52999 thread along context instead of theory for typedef lookup
blanchet
parents: 36385
diff changeset
   288
fun mtype_for_constr (mdata as {hol_ctxt = {ctxt, ...}, alpha_T, constr_mcache,
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   289
                                ...}) (x as (_, T)) =
37256
0dca1ec52999 thread along context instead of theory for typedef lookup
blanchet
parents: 36385
diff changeset
   290
  if could_exist_alpha_sub_mtype ctxt alpha_T T then
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   291
    case AList.lookup (op =) (!constr_mcache) x of
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   292
      SOME M => M
35384
88dbcfe75c45 cosmetics
blanchet
parents: 35280
diff changeset
   293
    | NONE => if T = alpha_T then
35672
ff484d4f2e14 more work on Nitpick's finite sets
blanchet
parents: 35671
diff changeset
   294
                let val M = fresh_mtype_for_type mdata false T in
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   295
                  (Unsynchronized.change constr_mcache (cons (x, M)); M)
35384
88dbcfe75c45 cosmetics
blanchet
parents: 35280
diff changeset
   296
                end
88dbcfe75c45 cosmetics
blanchet
parents: 35280
diff changeset
   297
              else
35672
ff484d4f2e14 more work on Nitpick's finite sets
blanchet
parents: 35671
diff changeset
   298
                (fresh_mtype_for_type mdata false (body_type T);
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   299
                 AList.lookup (op =) (!constr_mcache) x |> the)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   300
  else
35672
ff484d4f2e14 more work on Nitpick's finite sets
blanchet
parents: 35671
diff changeset
   301
    fresh_mtype_for_type mdata false T
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   302
fun mtype_for_sel (mdata as {hol_ctxt, binarize, ...}) (x as (s, _)) =
35190
ce653cc27a94 make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
blanchet
parents: 35079
diff changeset
   303
  x |> binarized_and_boxed_constr_for_sel hol_ctxt binarize
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   304
    |> mtype_for_constr mdata |> sel_mtype_from_constr_mtype s
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   305
40989
ff08edbbc182 more monotonicity tuning
blanchet
parents: 40988
diff changeset
   306
fun resolve_annotation_atom asgs (V x) =
ff08edbbc182 more monotonicity tuning
blanchet
parents: 40988
diff changeset
   307
    x |> AList.lookup (op =) asgs |> Option.map A |> the_default (V x)
40988
blanchet
parents: 40987
diff changeset
   308
  | resolve_annotation_atom _ aa = aa
40989
ff08edbbc182 more monotonicity tuning
blanchet
parents: 40988
diff changeset
   309
fun resolve_mtype asgs =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   310
  let
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   311
    fun aux MAlpha = MAlpha
40988
blanchet
parents: 40987
diff changeset
   312
      | aux (MFun (M1, aa, M2)) =
40989
ff08edbbc182 more monotonicity tuning
blanchet
parents: 40988
diff changeset
   313
        MFun (aux M1, resolve_annotation_atom asgs aa, aux M2)
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   314
      | aux (MPair Mp) = MPair (pairself aux Mp)
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   315
      | aux (MType (s, Ms)) = MType (s, map aux Ms)
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   316
      | aux (MRec z) = MRec z
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   317
  in aux end
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   318
40996
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   319
datatype comp_op = Eq | Neq | Leq
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   320
40985
8b870370c26f started generalizing monotonicity code to accommodate new calculus
blanchet
parents: 40722
diff changeset
   321
type comp = annotation_atom * annotation_atom * comp_op * var list
40995
3cae30b60577 started implementing connectives in new monotonicity calculus
blanchet
parents: 40994
diff changeset
   322
type assign_clause = assign_literal list
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   323
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   324
type constraint_set = comp list * assign_clause list
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   325
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   326
fun string_for_comp_op Eq = "="
40996
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   327
  | string_for_comp_op Neq = "\<noteq>"
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   328
  | string_for_comp_op Leq = "\<le>"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   329
40990
a36d4d869439 adapt monotonicity code to four annotation types
blanchet
parents: 40989
diff changeset
   330
fun string_for_comp (aa1, aa2, cmp, xs) =
a36d4d869439 adapt monotonicity code to four annotation types
blanchet
parents: 40989
diff changeset
   331
  string_for_annotation_atom aa1 ^ " " ^ string_for_comp_op cmp ^
a36d4d869439 adapt monotonicity code to four annotation types
blanchet
parents: 40989
diff changeset
   332
  subscript_string_for_vars " \<and> " xs ^ " " ^ string_for_annotation_atom aa2
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   333
40999
69d0d445c46a fixed bug in clause handling in monotonicity code, whereby the unsound rule False | x <--> False was used to simplify constraints
blanchet
parents: 40998
diff changeset
   334
fun string_for_assign_clause NONE = "\<top>"
69d0d445c46a fixed bug in clause handling in monotonicity code, whereby the unsound rule False | x <--> False was used to simplify constraints
blanchet
parents: 40998
diff changeset
   335
  | string_for_assign_clause (SOME []) = "\<bot>"
69d0d445c46a fixed bug in clause handling in monotonicity code, whereby the unsound rule False | x <--> False was used to simplify constraints
blanchet
parents: 40998
diff changeset
   336
  | string_for_assign_clause (SOME asgs) =
40995
3cae30b60577 started implementing connectives in new monotonicity calculus
blanchet
parents: 40994
diff changeset
   337
    space_implode " \<or> " (map string_for_assign_literal asgs)
40990
a36d4d869439 adapt monotonicity code to four annotation types
blanchet
parents: 40989
diff changeset
   338
40996
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   339
fun add_assign_literal (x, (sn, a)) clauses =
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   340
  if exists (fn [(x', (sn', a'))] =>
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   341
                x = x' andalso ((sn = sn' andalso a <> a') orelse
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   342
                                (sn <> sn' andalso a = a'))
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   343
              | _ => false) clauses then
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   344
    NONE
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   345
  else
41017
666d8ed0b73a compile
blanchet
parents: 41016
diff changeset
   346
    SOME ([(x, (sn, a))] :: clauses)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   347
40991
902ad76994d5 proper handling of assignment disjunctions vs. conjunctions
blanchet
parents: 40990
diff changeset
   348
fun add_assign_disjunct _ NONE = NONE
902ad76994d5 proper handling of assignment disjunctions vs. conjunctions
blanchet
parents: 40990
diff changeset
   349
  | add_assign_disjunct asg (SOME asgs) = SOME (insert (op =) asg asgs)
902ad76994d5 proper handling of assignment disjunctions vs. conjunctions
blanchet
parents: 40990
diff changeset
   350
40999
69d0d445c46a fixed bug in clause handling in monotonicity code, whereby the unsound rule False | x <--> False was used to simplify constraints
blanchet
parents: 40998
diff changeset
   351
fun add_assign_clause NONE = I
69d0d445c46a fixed bug in clause handling in monotonicity code, whereby the unsound rule False | x <--> False was used to simplify constraints
blanchet
parents: 40998
diff changeset
   352
  | add_assign_clause (SOME clause) = insert (op =) clause
40997
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   353
40996
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   354
fun annotation_comp Eq a1 a2 = (a1 = a2)
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   355
  | annotation_comp Neq a1 a2 = (a1 <> a2)
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   356
  | annotation_comp Leq a1 a2 = (a1 = a2 orelse a2 = Gen)
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   357
40997
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   358
fun sign_for_comp_op Eq = Plus
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   359
  | sign_for_comp_op Neq = Minus
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   360
  | sign_for_comp_op Leq = raise BAD ("sign_for_comp_op", "unexpected \"Leq\"")
40996
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   361
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   362
fun do_annotation_atom_comp Leq [] aa1 aa2 (cset as (comps, clauses)) =
40988
blanchet
parents: 40987
diff changeset
   363
    (case (aa1, aa2) of
40996
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   364
       (A a1, A a2) => if annotation_comp Leq a1 a2 then SOME cset else NONE
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   365
     | _ => SOME (insert (op =) (aa1, aa2, Leq, []) comps, clauses))
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   366
  | do_annotation_atom_comp cmp [] aa1 aa2 (cset as (comps, clauses)) =
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   367
    (case (aa1, aa2) of
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   368
       (A a1, A a2) => if annotation_comp cmp a1 a2 then SOME cset else NONE
40988
blanchet
parents: 40987
diff changeset
   369
     | (V x1, A a2) =>
40997
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   370
       clauses |> add_assign_literal (x1, (sign_for_comp_op cmp, a2))
40996
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   371
               |> Option.map (pair comps)
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   372
     | (A _, V _) => do_annotation_atom_comp cmp [] aa2 aa1 cset
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   373
     | (V _, V _) => SOME (insert (op =) (aa1, aa2, cmp, []) comps, clauses))
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   374
  | do_annotation_atom_comp cmp xs aa1 aa2 (comps, clauses) =
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   375
    SOME (insert (op =) (aa1, aa2, cmp, xs) comps, clauses)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   376
40997
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   377
fun add_annotation_atom_comp cmp xs aa1 aa2 (comps, clauses) =
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   378
  (trace_msg (fn () => "*** Add " ^ string_for_comp (aa1, aa2, cmp, xs));
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   379
   case do_annotation_atom_comp cmp xs aa1 aa2 (comps, clauses) of
40993
52ee2a187cdb support 3 monotonicity calculi in one and fix soundness bug
blanchet
parents: 40991
diff changeset
   380
     NONE => (trace_msg (K "**** Unsolvable"); raise UNSOLVABLE ())
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   381
   | SOME cset => cset)
40993
52ee2a187cdb support 3 monotonicity calculi in one and fix soundness bug
blanchet
parents: 40991
diff changeset
   382
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   383
fun do_mtype_comp _ _ _ _ NONE = NONE
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   384
  | do_mtype_comp _ _ MAlpha MAlpha cset = cset
40988
blanchet
parents: 40987
diff changeset
   385
  | do_mtype_comp Eq xs (MFun (M11, aa1, M12)) (MFun (M21, aa2, M22))
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   386
                  (SOME cset) =
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   387
    cset |> do_annotation_atom_comp Eq xs aa1 aa2
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   388
         |> do_mtype_comp Eq xs M11 M21 |> do_mtype_comp Eq xs M12 M22
40988
blanchet
parents: 40987
diff changeset
   389
  | do_mtype_comp Leq xs (MFun (M11, aa1, M12)) (MFun (M21, aa2, M22))
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   390
                  (SOME cset) =
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   391
    (if exists_alpha_sub_mtype M11 then
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   392
       cset |> do_annotation_atom_comp Leq xs aa1 aa2
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   393
            |> do_mtype_comp Leq xs M21 M11
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   394
            |> (case aa2 of
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   395
                  A Gen => I
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   396
                | A _ => do_mtype_comp Leq xs M11 M21
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   397
                | V x => do_mtype_comp Leq (x :: xs) M11 M21)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   398
     else
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   399
       SOME cset)
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   400
    |> do_mtype_comp Leq xs M12 M22
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   401
  | do_mtype_comp cmp xs (M1 as MPair (M11, M12)) (M2 as MPair (M21, M22))
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   402
                  cset =
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   403
    (cset |> fold (uncurry (do_mtype_comp cmp xs)) [(M11, M21), (M12, M22)]
41017
666d8ed0b73a compile
blanchet
parents: 41016
diff changeset
   404
     handle ListPair.UnequalLengths =>
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   405
            raise MTYPE ("Nitpick_Mono.do_mtype_comp", [M1, M2], []))
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   406
  | do_mtype_comp _ _ (MType _) (MType _) cset =
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   407
    cset (* no need to compare them thanks to the cache *)
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   408
  | do_mtype_comp cmp _ M1 M2 _ =
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   409
    raise MTYPE ("Nitpick_Mono.do_mtype_comp (" ^ string_for_comp_op cmp ^ ")",
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   410
                 [M1, M2], [])
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   411
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   412
fun add_mtype_comp cmp M1 M2 cset =
40991
902ad76994d5 proper handling of assignment disjunctions vs. conjunctions
blanchet
parents: 40990
diff changeset
   413
  (trace_msg (fn () => "*** Add " ^ string_for_mtype M1 ^ " " ^
902ad76994d5 proper handling of assignment disjunctions vs. conjunctions
blanchet
parents: 40990
diff changeset
   414
                       string_for_comp_op cmp ^ " " ^ string_for_mtype M2);
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   415
   case SOME cset |> do_mtype_comp cmp [] M1 M2 of
40991
902ad76994d5 proper handling of assignment disjunctions vs. conjunctions
blanchet
parents: 40990
diff changeset
   416
     NONE => (trace_msg (K "**** Unsolvable"); raise UNSOLVABLE ())
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   417
   | SOME cset => cset)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   418
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   419
val add_mtypes_equal = add_mtype_comp Eq
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   420
val add_is_sub_mtype = add_mtype_comp Leq
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   421
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   422
fun do_notin_mtype_fv _ _ _ NONE = NONE
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   423
  | do_notin_mtype_fv Minus _ MAlpha cset = cset
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   424
  | do_notin_mtype_fv Plus [] MAlpha _ = NONE
40996
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   425
  | do_notin_mtype_fv Plus [asg] MAlpha (SOME clauses) =
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   426
    clauses |> add_assign_literal asg
41000
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
   427
  | do_notin_mtype_fv Plus unless MAlpha (SOME clauses) =
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
   428
    SOME (insert (op =) unless clauses)
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
   429
  | do_notin_mtype_fv sn unless (MFun (M1, A a, M2)) cset =
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
   430
    cset |> (if a <> Gen andalso sn = Plus then do_notin_mtype_fv Plus unless M1
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   431
             else I)
41000
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
   432
         |> (if a = Gen orelse sn = Plus then do_notin_mtype_fv Minus unless M1
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   433
             else I)
41000
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
   434
         |> do_notin_mtype_fv sn unless M2
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
   435
  | do_notin_mtype_fv Plus unless (MFun (M1, V x, M2)) cset =
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
   436
    cset |> (case add_assign_disjunct (x, (Plus, Gen)) (SOME unless) of
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   437
               NONE => I
41000
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
   438
             | SOME unless' => do_notin_mtype_fv Plus unless' M1)
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
   439
         |> do_notin_mtype_fv Minus unless M1
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
   440
         |> do_notin_mtype_fv Plus unless M2
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
   441
  | do_notin_mtype_fv Minus unless (MFun (M1, V x, M2)) cset =
40996
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   442
    cset |> (case fold (fn a => add_assign_disjunct (x, (Plus, a))) [Fls, Tru]
41000
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
   443
                       (SOME unless) of
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   444
               NONE => I
41000
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
   445
             | SOME unless' => do_notin_mtype_fv Plus unless' M1)
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
   446
         |> do_notin_mtype_fv Minus unless M2
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
   447
  | do_notin_mtype_fv sn unless (MPair (M1, M2)) cset =
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
   448
    cset |> fold (do_notin_mtype_fv sn unless) [M1, M2]
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
   449
  | do_notin_mtype_fv sn unless (MType (_, Ms)) cset =
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
   450
    cset |> fold (do_notin_mtype_fv sn unless) Ms
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   451
 | do_notin_mtype_fv _ _ M _ =
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   452
   raise MTYPE ("Nitpick_Mono.do_notin_mtype_fv", [M], [])
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   453
41000
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
   454
fun add_notin_mtype_fv sn unless M (comps, clauses) =
40985
8b870370c26f started generalizing monotonicity code to accommodate new calculus
blanchet
parents: 40722
diff changeset
   455
  (trace_msg (fn () => "*** Add " ^ string_for_mtype M ^ " is " ^
8b870370c26f started generalizing monotonicity code to accommodate new calculus
blanchet
parents: 40722
diff changeset
   456
                       (case sn of Minus => "concrete" | Plus => "complete"));
41000
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
   457
   case SOME clauses |> do_notin_mtype_fv sn unless M of
40985
8b870370c26f started generalizing monotonicity code to accommodate new calculus
blanchet
parents: 40722
diff changeset
   458
     NONE => (trace_msg (K "**** Unsolvable"); raise UNSOLVABLE ())
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   459
   | SOME clauses => (comps, clauses))
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   460
41109
97bf008b9cfe made smlnj happy
krauss
parents: 41054
diff changeset
   461
fun add_mtype_is_concrete x y z = add_notin_mtype_fv Minus x y z
97bf008b9cfe made smlnj happy
krauss
parents: 41054
diff changeset
   462
fun add_mtype_is_complete x y z = add_notin_mtype_fv Plus x y z
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   463
40986
cfd91aa80701 use boolean pair to encode annotation, which may now take four values
blanchet
parents: 40985
diff changeset
   464
val bool_table =
cfd91aa80701 use boolean pair to encode annotation, which may now take four values
blanchet
parents: 40985
diff changeset
   465
  [(Gen, (false, false)),
cfd91aa80701 use boolean pair to encode annotation, which may now take four values
blanchet
parents: 40985
diff changeset
   466
   (New, (false, true)),
cfd91aa80701 use boolean pair to encode annotation, which may now take four values
blanchet
parents: 40985
diff changeset
   467
   (Fls, (true, false)),
cfd91aa80701 use boolean pair to encode annotation, which may now take four values
blanchet
parents: 40985
diff changeset
   468
   (Tru, (true, true))]
cfd91aa80701 use boolean pair to encode annotation, which may now take four values
blanchet
parents: 40985
diff changeset
   469
40993
52ee2a187cdb support 3 monotonicity calculi in one and fix soundness bug
blanchet
parents: 40991
diff changeset
   470
fun fst_var n = 2 * n
52ee2a187cdb support 3 monotonicity calculi in one and fix soundness bug
blanchet
parents: 40991
diff changeset
   471
fun snd_var n = 2 * n + 1
52ee2a187cdb support 3 monotonicity calculi in one and fix soundness bug
blanchet
parents: 40991
diff changeset
   472
40986
cfd91aa80701 use boolean pair to encode annotation, which may now take four values
blanchet
parents: 40985
diff changeset
   473
val bools_from_annotation = AList.lookup (op =) bool_table #> the
cfd91aa80701 use boolean pair to encode annotation, which may now take four values
blanchet
parents: 40985
diff changeset
   474
val annotation_from_bools = AList.find (op =) bool_table #> the_single
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   475
41471
54a58904a598 modernized structure Prop_Logic;
wenzelm
parents: 41109
diff changeset
   476
fun prop_for_bool b = if b then Prop_Logic.True else Prop_Logic.False
40990
a36d4d869439 adapt monotonicity code to four annotation types
blanchet
parents: 40989
diff changeset
   477
fun prop_for_bool_var_equality (v1, v2) =
46081
8f6465f7021b ported mono calculus to handle "set" type constructors
blanchet
parents: 41471
diff changeset
   478
  Prop_Logic.SAnd (Prop_Logic.SOr (Prop_Logic.BoolVar v1,
8f6465f7021b ported mono calculus to handle "set" type constructors
blanchet
parents: 41471
diff changeset
   479
                                   Prop_Logic.SNot (Prop_Logic.BoolVar v2)),
8f6465f7021b ported mono calculus to handle "set" type constructors
blanchet
parents: 41471
diff changeset
   480
                   Prop_Logic.SOr (Prop_Logic.SNot (Prop_Logic.BoolVar v1),
8f6465f7021b ported mono calculus to handle "set" type constructors
blanchet
parents: 41471
diff changeset
   481
                                   Prop_Logic.BoolVar v2))
40996
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   482
fun prop_for_assign (x, a) =
40986
cfd91aa80701 use boolean pair to encode annotation, which may now take four values
blanchet
parents: 40985
diff changeset
   483
  let val (b1, b2) = bools_from_annotation a in
41471
54a58904a598 modernized structure Prop_Logic;
wenzelm
parents: 41109
diff changeset
   484
    Prop_Logic.SAnd (Prop_Logic.BoolVar (fst_var x) |> not b1 ? Prop_Logic.SNot,
46081
8f6465f7021b ported mono calculus to handle "set" type constructors
blanchet
parents: 41471
diff changeset
   485
                     Prop_Logic.BoolVar (snd_var x) |> not b2 ? Prop_Logic.SNot)
40986
cfd91aa80701 use boolean pair to encode annotation, which may now take four values
blanchet
parents: 40985
diff changeset
   486
  end
40996
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   487
fun prop_for_assign_literal (x, (Plus, a)) = prop_for_assign (x, a)
46081
8f6465f7021b ported mono calculus to handle "set" type constructors
blanchet
parents: 41471
diff changeset
   488
  | prop_for_assign_literal (x, (Minus, a)) =
8f6465f7021b ported mono calculus to handle "set" type constructors
blanchet
parents: 41471
diff changeset
   489
    Prop_Logic.SNot (prop_for_assign (x, a))
40990
a36d4d869439 adapt monotonicity code to four annotation types
blanchet
parents: 40989
diff changeset
   490
fun prop_for_atom_assign (A a', a) = prop_for_bool (a = a')
40996
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   491
  | prop_for_atom_assign (V x, a) = prop_for_assign_literal (x, (Plus, a))
40990
a36d4d869439 adapt monotonicity code to four annotation types
blanchet
parents: 40989
diff changeset
   492
fun prop_for_atom_equality (aa1, A a2) = prop_for_atom_assign (aa1, a2)
a36d4d869439 adapt monotonicity code to four annotation types
blanchet
parents: 40989
diff changeset
   493
  | prop_for_atom_equality (A a1, aa2) = prop_for_atom_assign (aa2, a1)
a36d4d869439 adapt monotonicity code to four annotation types
blanchet
parents: 40989
diff changeset
   494
  | prop_for_atom_equality (V x1, V x2) =
41471
54a58904a598 modernized structure Prop_Logic;
wenzelm
parents: 41109
diff changeset
   495
    Prop_Logic.SAnd (prop_for_bool_var_equality (pairself fst_var (x1, x2)),
40999
69d0d445c46a fixed bug in clause handling in monotonicity code, whereby the unsound rule False | x <--> False was used to simplify constraints
blanchet
parents: 40998
diff changeset
   496
             prop_for_bool_var_equality (pairself snd_var (x1, x2)))
41471
54a58904a598 modernized structure Prop_Logic;
wenzelm
parents: 41109
diff changeset
   497
val prop_for_assign_clause = Prop_Logic.exists o map prop_for_assign_literal
40995
3cae30b60577 started implementing connectives in new monotonicity calculus
blanchet
parents: 40994
diff changeset
   498
fun prop_for_exists_var_assign_literal xs a =
41471
54a58904a598 modernized structure Prop_Logic;
wenzelm
parents: 41109
diff changeset
   499
  Prop_Logic.exists (map (fn x => prop_for_assign_literal (x, (Plus, a))) xs)
40988
blanchet
parents: 40987
diff changeset
   500
fun prop_for_comp (aa1, aa2, Eq, []) =
41471
54a58904a598 modernized structure Prop_Logic;
wenzelm
parents: 41109
diff changeset
   501
    Prop_Logic.SAnd (prop_for_comp (aa1, aa2, Leq, []),
40990
a36d4d869439 adapt monotonicity code to four annotation types
blanchet
parents: 40989
diff changeset
   502
             prop_for_comp (aa2, aa1, Leq, []))
40996
63112be4a469 added "Neq" operator to monotonicity inference module
blanchet
parents: 40995
diff changeset
   503
  | prop_for_comp (aa1, aa2, Neq, []) =
41471
54a58904a598 modernized structure Prop_Logic;
wenzelm
parents: 41109
diff changeset
   504
    Prop_Logic.SNot (prop_for_comp (aa1, aa2, Eq, []))
40988
blanchet
parents: 40987
diff changeset
   505
  | prop_for_comp (aa1, aa2, Leq, []) =
46081
8f6465f7021b ported mono calculus to handle "set" type constructors
blanchet
parents: 41471
diff changeset
   506
    Prop_Logic.SOr (prop_for_atom_equality (aa1, aa2),
8f6465f7021b ported mono calculus to handle "set" type constructors
blanchet
parents: 41471
diff changeset
   507
                    prop_for_atom_assign (aa2, Gen))
40988
blanchet
parents: 40987
diff changeset
   508
  | prop_for_comp (aa1, aa2, cmp, xs) =
41471
54a58904a598 modernized structure Prop_Logic;
wenzelm
parents: 41109
diff changeset
   509
    Prop_Logic.SOr (prop_for_exists_var_assign_literal xs Gen,
40990
a36d4d869439 adapt monotonicity code to four annotation types
blanchet
parents: 40989
diff changeset
   510
            prop_for_comp (aa1, aa2, cmp, []))
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   511
40990
a36d4d869439 adapt monotonicity code to four annotation types
blanchet
parents: 40989
diff changeset
   512
fun extract_assigns max_var assigns asgs =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   513
  fold (fn x => fn accum =>
40989
ff08edbbc182 more monotonicity tuning
blanchet
parents: 40988
diff changeset
   514
           if AList.defined (op =) asgs x then
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   515
             accum
40986
cfd91aa80701 use boolean pair to encode annotation, which may now take four values
blanchet
parents: 40985
diff changeset
   516
           else case (fst_var x, snd_var x) |> pairself assigns of
cfd91aa80701 use boolean pair to encode annotation, which may now take four values
blanchet
parents: 40985
diff changeset
   517
             (NONE, NONE) => accum
40993
52ee2a187cdb support 3 monotonicity calculi in one and fix soundness bug
blanchet
parents: 40991
diff changeset
   518
           | bp => (x, annotation_from_bools (pairself (the_default false) bp))
52ee2a187cdb support 3 monotonicity calculi in one and fix soundness bug
blanchet
parents: 40991
diff changeset
   519
                   :: accum)
40989
ff08edbbc182 more monotonicity tuning
blanchet
parents: 40988
diff changeset
   520
       (max_var downto 1) asgs
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   521
41001
11715564e2ad removed old baggage from monotonicity calculus -- the "calculus" option didn't really work anyway because of on-the-fly simplifications
blanchet
parents: 41000
diff changeset
   522
fun print_problem comps clauses =
11715564e2ad removed old baggage from monotonicity calculus -- the "calculus" option didn't really work anyway because of on-the-fly simplifications
blanchet
parents: 41000
diff changeset
   523
  trace_msg (fn () => "*** Problem:\n" ^
11715564e2ad removed old baggage from monotonicity calculus -- the "calculus" option didn't really work anyway because of on-the-fly simplifications
blanchet
parents: 41000
diff changeset
   524
                      cat_lines (map string_for_comp comps @
11715564e2ad removed old baggage from monotonicity calculus -- the "calculus" option didn't really work anyway because of on-the-fly simplifications
blanchet
parents: 41000
diff changeset
   525
                                 map (string_for_assign_clause o SOME) clauses))
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   526
40989
ff08edbbc182 more monotonicity tuning
blanchet
parents: 40988
diff changeset
   527
fun print_solution asgs =
ff08edbbc182 more monotonicity tuning
blanchet
parents: 40988
diff changeset
   528
  trace_msg (fn () => "*** Solution:\n" ^
ff08edbbc182 more monotonicity tuning
blanchet
parents: 40988
diff changeset
   529
      (asgs
ff08edbbc182 more monotonicity tuning
blanchet
parents: 40988
diff changeset
   530
       |> map swap
ff08edbbc182 more monotonicity tuning
blanchet
parents: 40988
diff changeset
   531
       |> AList.group (op =)
ff08edbbc182 more monotonicity tuning
blanchet
parents: 40988
diff changeset
   532
       |> map (fn (a, xs) => string_for_annotation a ^ ": " ^
41005
60d931de0709 fixed quantifier handling of new monotonicity calculus
blanchet
parents: 41004
diff changeset
   533
                             string_for_vars ", " (sort int_ord xs))
40989
ff08edbbc182 more monotonicity tuning
blanchet
parents: 40988
diff changeset
   534
       |> space_implode "\n"))
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   535
41007
75275c796b46 use ML SAT solvers up to a certain time limit, then switch to faster solvers with a timeout -- this becomes necessary with the new, more powerful monotonicity calculus
blanchet
parents: 41005
diff changeset
   536
(* The ML solver timeout should correspond more or less to the overhead of
75275c796b46 use ML SAT solvers up to a certain time limit, then switch to faster solvers with a timeout -- this becomes necessary with the new, more powerful monotonicity calculus
blanchet
parents: 41005
diff changeset
   537
   invoking an external prover. *)
75275c796b46 use ML SAT solvers up to a certain time limit, then switch to faster solvers with a timeout -- this becomes necessary with the new, more powerful monotonicity calculus
blanchet
parents: 41005
diff changeset
   538
val ml_solver_timeout = SOME (seconds 0.02)
75275c796b46 use ML SAT solvers up to a certain time limit, then switch to faster solvers with a timeout -- this becomes necessary with the new, more powerful monotonicity calculus
blanchet
parents: 41005
diff changeset
   539
75275c796b46 use ML SAT solvers up to a certain time limit, then switch to faster solvers with a timeout -- this becomes necessary with the new, more powerful monotonicity calculus
blanchet
parents: 41005
diff changeset
   540
fun solve tac_timeout max_var (comps, clauses) =
40146
f2a14b6effcf whitespace tuning
blanchet
parents: 40058
diff changeset
   541
  let
41013
117345744f44 fixed bug in monotonicity solution display, whereby the polarity of literals was ignored
blanchet
parents: 41012
diff changeset
   542
    val asgs =
117345744f44 fixed bug in monotonicity solution display, whereby the polarity of literals was ignored
blanchet
parents: 41012
diff changeset
   543
      map_filter (fn [(x, (Plus, a))] => SOME (x, a) | _ => NONE) clauses
40146
f2a14b6effcf whitespace tuning
blanchet
parents: 40058
diff changeset
   544
    fun do_assigns assigns =
40990
a36d4d869439 adapt monotonicity code to four annotation types
blanchet
parents: 40989
diff changeset
   545
      SOME (extract_assigns max_var assigns asgs |> tap print_solution)
41001
11715564e2ad removed old baggage from monotonicity calculus -- the "calculus" option didn't really work anyway because of on-the-fly simplifications
blanchet
parents: 41000
diff changeset
   546
    val _ = print_problem comps clauses
40993
52ee2a187cdb support 3 monotonicity calculi in one and fix soundness bug
blanchet
parents: 40991
diff changeset
   547
    val prop =
46081
8f6465f7021b ported mono calculus to handle "set" type constructors
blanchet
parents: 41471
diff changeset
   548
      Prop_Logic.all (map prop_for_comp comps @
8f6465f7021b ported mono calculus to handle "set" type constructors
blanchet
parents: 41471
diff changeset
   549
                      map prop_for_assign_clause clauses)
40146
f2a14b6effcf whitespace tuning
blanchet
parents: 40058
diff changeset
   550
  in
41471
54a58904a598 modernized structure Prop_Logic;
wenzelm
parents: 41109
diff changeset
   551
    if Prop_Logic.eval (K false) prop then
40990
a36d4d869439 adapt monotonicity code to four annotation types
blanchet
parents: 40989
diff changeset
   552
      do_assigns (K (SOME false))
41471
54a58904a598 modernized structure Prop_Logic;
wenzelm
parents: 41109
diff changeset
   553
    else if Prop_Logic.eval (K true) prop then
40990
a36d4d869439 adapt monotonicity code to four annotation types
blanchet
parents: 40989
diff changeset
   554
      do_assigns (K (SOME true))
40146
f2a14b6effcf whitespace tuning
blanchet
parents: 40058
diff changeset
   555
    else
f2a14b6effcf whitespace tuning
blanchet
parents: 40058
diff changeset
   556
      let
f2a14b6effcf whitespace tuning
blanchet
parents: 40058
diff changeset
   557
        (* use the first ML solver (to avoid startup overhead) *)
41007
75275c796b46 use ML SAT solvers up to a certain time limit, then switch to faster solvers with a timeout -- this becomes necessary with the new, more powerful monotonicity calculus
blanchet
parents: 41005
diff changeset
   558
        val (ml_solvers, nonml_solvers) =
75275c796b46 use ML SAT solvers up to a certain time limit, then switch to faster solvers with a timeout -- this becomes necessary with the new, more powerful monotonicity calculus
blanchet
parents: 41005
diff changeset
   559
          !SatSolver.solvers
75275c796b46 use ML SAT solvers up to a certain time limit, then switch to faster solvers with a timeout -- this becomes necessary with the new, more powerful monotonicity calculus
blanchet
parents: 41005
diff changeset
   560
          |> List.partition (member (op =) ["dptsat", "dpll"] o fst)
75275c796b46 use ML SAT solvers up to a certain time limit, then switch to faster solvers with a timeout -- this becomes necessary with the new, more powerful monotonicity calculus
blanchet
parents: 41005
diff changeset
   561
        val res =
75275c796b46 use ML SAT solvers up to a certain time limit, then switch to faster solvers with a timeout -- this becomes necessary with the new, more powerful monotonicity calculus
blanchet
parents: 41005
diff changeset
   562
          if null nonml_solvers then
75275c796b46 use ML SAT solvers up to a certain time limit, then switch to faster solvers with a timeout -- this becomes necessary with the new, more powerful monotonicity calculus
blanchet
parents: 41005
diff changeset
   563
            time_limit tac_timeout (snd (hd ml_solvers)) prop
75275c796b46 use ML SAT solvers up to a certain time limit, then switch to faster solvers with a timeout -- this becomes necessary with the new, more powerful monotonicity calculus
blanchet
parents: 41005
diff changeset
   564
          else
75275c796b46 use ML SAT solvers up to a certain time limit, then switch to faster solvers with a timeout -- this becomes necessary with the new, more powerful monotonicity calculus
blanchet
parents: 41005
diff changeset
   565
            time_limit ml_solver_timeout (snd (hd ml_solvers)) prop
75275c796b46 use ML SAT solvers up to a certain time limit, then switch to faster solvers with a timeout -- this becomes necessary with the new, more powerful monotonicity calculus
blanchet
parents: 41005
diff changeset
   566
            handle TimeLimit.TimeOut =>
75275c796b46 use ML SAT solvers up to a certain time limit, then switch to faster solvers with a timeout -- this becomes necessary with the new, more powerful monotonicity calculus
blanchet
parents: 41005
diff changeset
   567
                   time_limit tac_timeout (SatSolver.invoke_solver "auto") prop
40146
f2a14b6effcf whitespace tuning
blanchet
parents: 40058
diff changeset
   568
      in
41007
75275c796b46 use ML SAT solvers up to a certain time limit, then switch to faster solvers with a timeout -- this becomes necessary with the new, more powerful monotonicity calculus
blanchet
parents: 41005
diff changeset
   569
        case res of
40146
f2a14b6effcf whitespace tuning
blanchet
parents: 40058
diff changeset
   570
          SatSolver.SATISFIABLE assigns => do_assigns assigns
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   571
        | _ => (trace_msg (K "*** Unsolvable"); NONE)
40146
f2a14b6effcf whitespace tuning
blanchet
parents: 40058
diff changeset
   572
      end
41007
75275c796b46 use ML SAT solvers up to a certain time limit, then switch to faster solvers with a timeout -- this becomes necessary with the new, more powerful monotonicity calculus
blanchet
parents: 41005
diff changeset
   573
      handle TimeLimit.TimeOut => (trace_msg (K "*** Timed out"); NONE)
40146
f2a14b6effcf whitespace tuning
blanchet
parents: 40058
diff changeset
   574
  end
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   575
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   576
type mcontext =
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   577
  {bound_Ts: typ list,
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   578
   bound_Ms: mtyp list,
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   579
   frame: (int * annotation_atom) list,
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   580
   frees: (styp * mtyp) list,
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   581
   consts: (styp * mtyp) list}
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   582
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   583
fun string_for_bound ctxt Ms (j, aa) =
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   584
  Syntax.string_of_term ctxt (Bound (length Ms - j - 1)) ^ " :\<^bsup>" ^
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   585
  string_for_annotation_atom aa ^ "\<^esup> " ^
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   586
  string_for_mtype (nth Ms (length Ms - j - 1))
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   587
fun string_for_free relevant_frees ((s, _), M) =
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   588
  if member (op =) relevant_frees s then SOME (s ^ " : " ^ string_for_mtype M)
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   589
  else NONE
41109
97bf008b9cfe made smlnj happy
krauss
parents: 41054
diff changeset
   590
fun string_for_mcontext ctxt t ({bound_Ms, frame, frees, ...} : mcontext) =
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   591
  (map_filter (string_for_free (Term.add_free_names t [])) frees @
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   592
   map (string_for_bound ctxt bound_Ms) frame)
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   593
  |> commas |> enclose "[" "]"
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   594
40987
7d52af07bff1 added frame component to Gamma in monotonicity calculus
blanchet
parents: 40986
diff changeset
   595
val initial_gamma =
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   596
  {bound_Ts = [], bound_Ms = [], frame = [], frees = [], consts = []}
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   597
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   598
fun push_bound aa T M {bound_Ts, bound_Ms, frame, frees, consts} =
40987
7d52af07bff1 added frame component to Gamma in monotonicity calculus
blanchet
parents: 40986
diff changeset
   599
  {bound_Ts = T :: bound_Ts, bound_Ms = M :: bound_Ms,
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   600
   frame = frame @ [(length bound_Ts, aa)], frees = frees, consts = consts}
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   601
fun pop_bound {bound_Ts, bound_Ms, frame, frees, consts} =
40993
52ee2a187cdb support 3 monotonicity calculi in one and fix soundness bug
blanchet
parents: 40991
diff changeset
   602
  {bound_Ts = tl bound_Ts, bound_Ms = tl bound_Ms,
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   603
   frame = frame |> filter_out (fn (j, _) => j = length bound_Ts - 1),
40987
7d52af07bff1 added frame component to Gamma in monotonicity calculus
blanchet
parents: 40986
diff changeset
   604
   frees = frees, consts = consts}
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   605
  handle List.Empty => initial_gamma (* FIXME: needed? *)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   606
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   607
fun set_frame frame ({bound_Ts, bound_Ms, frees, consts, ...} : mcontext) =
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   608
  {bound_Ts = bound_Ts, bound_Ms = bound_Ms, frame = frame, frees = frees,
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   609
   consts = consts}
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   610
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   611
fun add_comp_frame aa cmp = fold (add_annotation_atom_comp cmp [] aa o snd)
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   612
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   613
fun add_bound_frame j frame =
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   614
  let
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   615
    val (new_frame, gen_frame) = List.partition (curry (op =) j o fst) frame
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   616
  in
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   617
    add_comp_frame (A New) Leq new_frame
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   618
    #> add_comp_frame (A Gen) Eq gen_frame
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   619
  end
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   620
40997
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   621
fun fresh_frame ({max_fresh, ...} : mdata) fls tru =
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   622
  map (apsnd (fn aa =>
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   623
                 case (aa, fls, tru) of
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   624
                   (A Fls, SOME a, _) => A a
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   625
                 | (A Tru, _, SOME a) => A a
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   626
                 | (A Gen, _, _) => A Gen
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   627
                 | _ => V (Unsynchronized.inc max_fresh)))
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   628
40997
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   629
fun conj_clauses res_aa aa1 aa2 =
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   630
  [[(aa1, (Neq, Tru)), (aa2, (Neq, Tru)), (res_aa, (Eq, Tru))],
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   631
   [(aa1, (Neq, Fls)), (res_aa, (Eq, Fls))],
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   632
   [(aa2, (Neq, Fls)), (res_aa, (Eq, Fls))],
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   633
   [(aa1, (Neq, Gen)), (aa2, (Eq, Fls)), (res_aa, (Eq, Gen))],
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   634
   [(aa1, (Neq, New)), (aa2, (Eq, Fls)), (res_aa, (Eq, Gen))],
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   635
   [(aa1, (Eq, Fls)), (aa2, (Neq, Gen)), (res_aa, (Eq, Gen))],
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   636
   [(aa1, (Eq, Fls)), (aa2, (Neq, New)), (res_aa, (Eq, Gen))]]
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   637
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   638
fun disj_clauses res_aa aa1 aa2 =
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   639
  [[(aa1, (Neq, Tru)), (res_aa, (Eq, Tru))],
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   640
   [(aa2, (Neq, Tru)), (res_aa, (Eq, Tru))],
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   641
   [(aa1, (Neq, Fls)), (aa2, (Neq, Fls)), (res_aa, (Eq, Fls))],
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   642
   [(aa1, (Neq, Gen)), (aa2, (Eq, Tru)), (res_aa, (Eq, Gen))],
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   643
   [(aa1, (Neq, New)), (aa2, (Eq, Tru)), (res_aa, (Eq, Gen))],
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   644
   [(aa1, (Eq, Tru)), (aa2, (Neq, Gen)), (res_aa, (Eq, Gen))],
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   645
   [(aa1, (Eq, Tru)), (aa2, (Neq, New)), (res_aa, (Eq, Gen))]]
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   646
40997
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   647
fun imp_clauses res_aa aa1 aa2 =
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   648
  [[(aa1, (Neq, Fls)), (res_aa, (Eq, Tru))],
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   649
   [(aa2, (Neq, Tru)), (res_aa, (Eq, Tru))],
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   650
   [(aa1, (Neq, Tru)), (aa2, (Neq, Fls)), (res_aa, (Eq, Fls))],
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   651
   [(aa1, (Neq, Gen)), (aa2, (Eq, Tru)), (res_aa, (Eq, Gen))],
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   652
   [(aa1, (Neq, New)), (aa2, (Eq, Tru)), (res_aa, (Eq, Gen))],
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   653
   [(aa1, (Eq, Fls)), (aa2, (Neq, Gen)), (res_aa, (Eq, Gen))],
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   654
   [(aa1, (Eq, Fls)), (aa2, (Neq, New)), (res_aa, (Eq, Gen))]]
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   655
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   656
val meta_conj_spec = ("\<and>", conj_clauses)
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   657
val meta_imp_spec = ("\<implies>", imp_clauses)
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   658
val conj_spec = ("\<and>", conj_clauses)
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   659
val disj_spec = ("\<or>", disj_clauses)
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   660
val imp_spec = ("\<implies>", imp_clauses)
41003
7e2a7bd55a00 proper handling of frames for connectives in monotonicity calculus
blanchet
parents: 41002
diff changeset
   661
40999
69d0d445c46a fixed bug in clause handling in monotonicity code, whereby the unsound rule False | x <--> False was used to simplify constraints
blanchet
parents: 40998
diff changeset
   662
fun add_annotation_clause_from_quasi_clause _ NONE = NONE
69d0d445c46a fixed bug in clause handling in monotonicity code, whereby the unsound rule False | x <--> False was used to simplify constraints
blanchet
parents: 40998
diff changeset
   663
  | add_annotation_clause_from_quasi_clause [] accum = accum
69d0d445c46a fixed bug in clause handling in monotonicity code, whereby the unsound rule False | x <--> False was used to simplify constraints
blanchet
parents: 40998
diff changeset
   664
  | add_annotation_clause_from_quasi_clause ((aa, (cmp, a)) :: rest) accum =
69d0d445c46a fixed bug in clause handling in monotonicity code, whereby the unsound rule False | x <--> False was used to simplify constraints
blanchet
parents: 40998
diff changeset
   665
    case aa of
69d0d445c46a fixed bug in clause handling in monotonicity code, whereby the unsound rule False | x <--> False was used to simplify constraints
blanchet
parents: 40998
diff changeset
   666
      A a' => if annotation_comp cmp a' a then NONE
69d0d445c46a fixed bug in clause handling in monotonicity code, whereby the unsound rule False | x <--> False was used to simplify constraints
blanchet
parents: 40998
diff changeset
   667
              else add_annotation_clause_from_quasi_clause rest accum
69d0d445c46a fixed bug in clause handling in monotonicity code, whereby the unsound rule False | x <--> False was used to simplify constraints
blanchet
parents: 40998
diff changeset
   668
    | V x => add_annotation_clause_from_quasi_clause rest accum
69d0d445c46a fixed bug in clause handling in monotonicity code, whereby the unsound rule False | x <--> False was used to simplify constraints
blanchet
parents: 40998
diff changeset
   669
             |> Option.map (cons (x, (sign_for_comp_op cmp, a)))
40995
3cae30b60577 started implementing connectives in new monotonicity calculus
blanchet
parents: 40994
diff changeset
   670
41000
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
   671
fun assign_clause_from_quasi_clause unless =
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
   672
  add_annotation_clause_from_quasi_clause unless (SOME [])
40995
3cae30b60577 started implementing connectives in new monotonicity calculus
blanchet
parents: 40994
diff changeset
   673
40997
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   674
fun add_connective_var conn mk_quasi_clauses res_aa aa1 aa2 =
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   675
  (trace_msg (fn () => "*** Add " ^ string_for_annotation_atom res_aa ^ " = " ^
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   676
                       string_for_annotation_atom aa1 ^ " " ^ conn ^ " " ^
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   677
                       string_for_annotation_atom aa2);
40999
69d0d445c46a fixed bug in clause handling in monotonicity code, whereby the unsound rule False | x <--> False was used to simplify constraints
blanchet
parents: 40998
diff changeset
   678
   fold (add_assign_clause o assign_clause_from_quasi_clause)
69d0d445c46a fixed bug in clause handling in monotonicity code, whereby the unsound rule False | x <--> False was used to simplify constraints
blanchet
parents: 40998
diff changeset
   679
        (mk_quasi_clauses res_aa aa1 aa2))
40997
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   680
fun add_connective_frames conn mk_quasi_clauses res_frame frame1 frame2 =
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   681
  fold I (map3 (fn (_, res_aa) => fn (_, aa1) => fn (_, aa2) =>
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   682
                   add_connective_var conn mk_quasi_clauses res_aa aa1 aa2)
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   683
               res_frame frame1 frame2)
40995
3cae30b60577 started implementing connectives in new monotonicity calculus
blanchet
parents: 40994
diff changeset
   684
41109
97bf008b9cfe made smlnj happy
krauss
parents: 41054
diff changeset
   685
fun kill_unused_in_frame is_in (accum as ({frame, ...} : mcontext, _)) =
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   686
  let val (used_frame, unused_frame) = List.partition is_in frame in
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   687
    accum |>> set_frame used_frame
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   688
          ||> add_comp_frame (A Gen) Eq unused_frame
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   689
  end
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   690
41109
97bf008b9cfe made smlnj happy
krauss
parents: 41054
diff changeset
   691
fun split_frame is_in_fun (gamma as {frame, ...} : mcontext, cset) =
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   692
  let
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   693
    fun bubble fun_frame arg_frame [] cset =
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   694
        ((rev fun_frame, rev arg_frame), cset)
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   695
      | bubble fun_frame arg_frame ((bound as (_, aa)) :: rest) cset =
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   696
        if is_in_fun bound then
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   697
          bubble (bound :: fun_frame) arg_frame rest
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   698
                 (cset |> add_comp_frame aa Leq arg_frame)
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   699
        else
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   700
          bubble fun_frame (bound :: arg_frame) rest cset
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   701
  in cset |> bubble [] [] frame ||> pair gamma end
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   702
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   703
fun add_annotation_atom_comp_alt _ (A Gen) _ _ = I
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   704
  | add_annotation_atom_comp_alt _ (A _) _ _ =
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   705
    (trace_msg (K "*** Expected G"); raise UNSOLVABLE ())
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   706
  | add_annotation_atom_comp_alt cmp (V x) aa1 aa2 =
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   707
    add_annotation_atom_comp cmp [x] aa1 aa2
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   708
40999
69d0d445c46a fixed bug in clause handling in monotonicity code, whereby the unsound rule False | x <--> False was used to simplify constraints
blanchet
parents: 40998
diff changeset
   709
fun add_arg_order1 ((_, aa), (_, prev_aa)) = I
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   710
  add_annotation_atom_comp_alt Neq prev_aa (A Gen) aa
40999
69d0d445c46a fixed bug in clause handling in monotonicity code, whereby the unsound rule False | x <--> False was used to simplify constraints
blanchet
parents: 40998
diff changeset
   711
fun add_app1 fun_aa ((_, res_aa), (_, arg_aa)) = I
69d0d445c46a fixed bug in clause handling in monotonicity code, whereby the unsound rule False | x <--> False was used to simplify constraints
blanchet
parents: 40998
diff changeset
   712
  let
69d0d445c46a fixed bug in clause handling in monotonicity code, whereby the unsound rule False | x <--> False was used to simplify constraints
blanchet
parents: 40998
diff changeset
   713
    val clause = [(arg_aa, (Eq, New)), (res_aa, (Eq, Gen))]
69d0d445c46a fixed bug in clause handling in monotonicity code, whereby the unsound rule False | x <--> False was used to simplify constraints
blanchet
parents: 40998
diff changeset
   714
                 |> assign_clause_from_quasi_clause
69d0d445c46a fixed bug in clause handling in monotonicity code, whereby the unsound rule False | x <--> False was used to simplify constraints
blanchet
parents: 40998
diff changeset
   715
  in
69d0d445c46a fixed bug in clause handling in monotonicity code, whereby the unsound rule False | x <--> False was used to simplify constraints
blanchet
parents: 40998
diff changeset
   716
    trace_msg (fn () => "*** Add " ^ string_for_assign_clause clause);
69d0d445c46a fixed bug in clause handling in monotonicity code, whereby the unsound rule False | x <--> False was used to simplify constraints
blanchet
parents: 40998
diff changeset
   717
    apsnd (add_assign_clause clause)
69d0d445c46a fixed bug in clause handling in monotonicity code, whereby the unsound rule False | x <--> False was used to simplify constraints
blanchet
parents: 40998
diff changeset
   718
    #> add_annotation_atom_comp_alt Leq arg_aa fun_aa res_aa
69d0d445c46a fixed bug in clause handling in monotonicity code, whereby the unsound rule False | x <--> False was used to simplify constraints
blanchet
parents: 40998
diff changeset
   719
  end
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   720
fun add_app _ [] [] = I
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   721
  | add_app fun_aa res_frame arg_frame =
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   722
    add_comp_frame (A New) Leq arg_frame
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   723
    #> fold add_arg_order1 (tl arg_frame ~~ (fst (split_last arg_frame)))
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   724
    #> fold (add_app1 fun_aa) (res_frame ~~ arg_frame)
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   725
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   726
fun consider_connective mdata (conn, mk_quasi_clauses) do_t1 do_t2
41003
7e2a7bd55a00 proper handling of frames for connectives in monotonicity calculus
blanchet
parents: 41002
diff changeset
   727
                        (accum as ({frame, ...}, _)) =
7e2a7bd55a00 proper handling of frames for connectives in monotonicity calculus
blanchet
parents: 41002
diff changeset
   728
  let
7e2a7bd55a00 proper handling of frames for connectives in monotonicity calculus
blanchet
parents: 41002
diff changeset
   729
    val frame1 = fresh_frame mdata (SOME Tru) NONE frame
7e2a7bd55a00 proper handling of frames for connectives in monotonicity calculus
blanchet
parents: 41002
diff changeset
   730
    val frame2 = fresh_frame mdata (SOME Fls) NONE frame
7e2a7bd55a00 proper handling of frames for connectives in monotonicity calculus
blanchet
parents: 41002
diff changeset
   731
  in
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   732
    accum |>> set_frame frame1 |> do_t1
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   733
          |>> set_frame frame2 |> do_t2
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   734
          |>> set_frame frame
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   735
          ||> apsnd (add_connective_frames conn mk_quasi_clauses frame frame1
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   736
                                           frame2)
41003
7e2a7bd55a00 proper handling of frames for connectives in monotonicity calculus
blanchet
parents: 41002
diff changeset
   737
  end
7e2a7bd55a00 proper handling of frames for connectives in monotonicity calculus
blanchet
parents: 41002
diff changeset
   738
39359
6f49c7fbb1b1 remove "fast_descs" option from Nitpick;
blanchet
parents: 39345
diff changeset
   739
fun consider_term (mdata as {hol_ctxt = {thy, ctxt, stds, ...}, alpha_T,
6f49c7fbb1b1 remove "fast_descs" option from Nitpick;
blanchet
parents: 39345
diff changeset
   740
                             max_fresh, ...}) =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   741
  let
37476
0681e46b4022 optimized code generated for datatype cases + more;
blanchet
parents: 37267
diff changeset
   742
    fun is_enough_eta_expanded t =
0681e46b4022 optimized code generated for datatype cases + more;
blanchet
parents: 37267
diff changeset
   743
      case strip_comb t of
39359
6f49c7fbb1b1 remove "fast_descs" option from Nitpick;
blanchet
parents: 39345
diff changeset
   744
        (Const x, ts) => the_default 0 (arity_of_built_in_const thy stds x)
37476
0681e46b4022 optimized code generated for datatype cases + more;
blanchet
parents: 37267
diff changeset
   745
        <= length ts
0681e46b4022 optimized code generated for datatype cases + more;
blanchet
parents: 37267
diff changeset
   746
      | _ => true
35672
ff484d4f2e14 more work on Nitpick's finite sets
blanchet
parents: 35671
diff changeset
   747
    val mtype_for = fresh_mtype_for_type mdata false
46083
efeaa79f021b port part of Nitpick to "set" type constructor
blanchet
parents: 46081
diff changeset
   748
    fun mtype_for_set x T = MFun (mtype_for (pseudo_domain_type T), V x, bool_M)
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   749
    fun do_all T (gamma, cset) =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   750
      let
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   751
        val abs_M = mtype_for (domain_type (domain_type T))
41012
e5a23ffb5524 improve precision of forall in constancy part of the monotonicity calculus
blanchet
parents: 41011
diff changeset
   752
        val x = Unsynchronized.inc max_fresh
35386
45a4e19d3ebd more work on the new monotonicity stuff in Nitpick
blanchet
parents: 35385
diff changeset
   753
        val body_M = mtype_for (body_type T)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   754
      in
41012
e5a23ffb5524 improve precision of forall in constancy part of the monotonicity calculus
blanchet
parents: 41011
diff changeset
   755
        (MFun (MFun (abs_M, V x, body_M), A Gen, body_M),
e5a23ffb5524 improve precision of forall in constancy part of the monotonicity calculus
blanchet
parents: 41011
diff changeset
   756
         (gamma, cset |> add_mtype_is_complete [(x, (Plus, Tru))] abs_M))
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   757
      end
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   758
    fun do_equals T (gamma, cset) =
40997
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   759
      let
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   760
        val M = mtype_for (domain_type T)
41014
e538a4f9dd86 add more flexibility to the monotonicity calculus: instead of hardcoding F-arrows, also allow G-arrows, simulating applications of the Sub rule
blanchet
parents: 41013
diff changeset
   761
        val x = Unsynchronized.inc max_fresh
40997
67e11a73532a implemented connectives in new monotonicity calculus
blanchet
parents: 40996
diff changeset
   762
      in
41014
e538a4f9dd86 add more flexibility to the monotonicity calculus: instead of hardcoding F-arrows, also allow G-arrows, simulating applications of the Sub rule
blanchet
parents: 41013
diff changeset
   763
        (MFun (M, A Gen, MFun (M, V x, mtype_for (nth_range_type 2 T))),
41000
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
   764
         (gamma, cset |> add_mtype_is_concrete [] M
41014
e538a4f9dd86 add more flexibility to the monotonicity calculus: instead of hardcoding F-arrows, also allow G-arrows, simulating applications of the Sub rule
blanchet
parents: 41013
diff changeset
   765
                      |> add_annotation_atom_comp Leq [] (A Fls) (V x)))
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   766
      end
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   767
    fun do_robust_set_operation T (gamma, cset) =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   768
      let
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   769
        val set_T = domain_type T
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   770
        val M1 = mtype_for set_T
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   771
        val M2 = mtype_for set_T
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   772
        val M3 = mtype_for set_T
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   773
      in
40985
8b870370c26f started generalizing monotonicity code to accommodate new calculus
blanchet
parents: 40722
diff changeset
   774
        (MFun (M1, A Gen, MFun (M2, A Gen, M3)),
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   775
         (gamma, cset |> add_is_sub_mtype M1 M3 |> add_is_sub_mtype M2 M3))
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   776
      end
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   777
    fun do_fragile_set_operation T (gamma, cset) =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   778
      let
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   779
        val set_T = domain_type T
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   780
        val set_M = mtype_for set_T
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   781
        fun custom_mtype_for (T as Type (@{type_name fun}, [T1, T2])) =
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   782
            if T = set_T then set_M
40985
8b870370c26f started generalizing monotonicity code to accommodate new calculus
blanchet
parents: 40722
diff changeset
   783
            else MFun (custom_mtype_for T1, A Gen, custom_mtype_for T2)
46081
8f6465f7021b ported mono calculus to handle "set" type constructors
blanchet
parents: 41471
diff changeset
   784
          | custom_mtype_for (Type (@{type_name set}, [T'])) =
8f6465f7021b ported mono calculus to handle "set" type constructors
blanchet
parents: 41471
diff changeset
   785
            custom_mtype_for (T' --> bool_T)
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   786
          | custom_mtype_for T = mtype_for T
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   787
      in
41000
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
   788
        (custom_mtype_for T, (gamma, cset |> add_mtype_is_concrete [] set_M))
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   789
      end
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   790
    fun do_pair_constr T accum =
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   791
      case mtype_for (nth_range_type 2 T) of
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   792
        M as MPair (a_M, b_M) =>
40985
8b870370c26f started generalizing monotonicity code to accommodate new calculus
blanchet
parents: 40722
diff changeset
   793
        (MFun (a_M, A Gen, MFun (b_M, A Gen, M)), accum)
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   794
      | M => raise MTYPE ("Nitpick_Mono.consider_term.do_pair_constr", [M], [])
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   795
    fun do_nth_pair_sel n T =
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   796
      case mtype_for (domain_type T) of
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   797
        M as MPair (a_M, b_M) =>
40985
8b870370c26f started generalizing monotonicity code to accommodate new calculus
blanchet
parents: 40722
diff changeset
   798
        pair (MFun (M, A Gen, if n = 0 then a_M else b_M))
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   799
      | M => raise MTYPE ("Nitpick_Mono.consider_term.do_nth_pair_sel", [M], [])
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   800
    and do_connect spec t1 t2 accum =
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   801
      (bool_M, consider_connective mdata spec (snd o do_term t1)
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   802
                                   (snd o do_term t2) accum)
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   803
    and do_term t
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   804
            (accum as (gamma as {bound_Ts, bound_Ms, frame, frees, consts},
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   805
                       cset)) =
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   806
      (trace_msg (fn () => "  " ^ string_for_mcontext ctxt t gamma ^
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   807
                           " \<turnstile> " ^ Syntax.string_of_term ctxt t ^
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   808
                           " : _?");
40993
52ee2a187cdb support 3 monotonicity calculi in one and fix soundness bug
blanchet
parents: 40991
diff changeset
   809
       case t of
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   810
         @{const False} => (bool_M, accum ||> add_comp_frame (A Fls) Leq frame)
41018
83f241623b86 fix monotonicity type of None
blanchet
parents: 41017
diff changeset
   811
       | Const (@{const_name None}, T) =>
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   812
         (mtype_for T, accum ||> add_comp_frame (A Fls) Leq frame)
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   813
       | @{const True} => (bool_M, accum ||> add_comp_frame (A Tru) Leq frame)
41016
343cdf923c02 introduced hack to exploit the symmetry of equality in monotonicity calculus
blanchet
parents: 41014
diff changeset
   814
       | (t0 as Const (@{const_name HOL.eq}, _)) $ Bound 0 $ t2 =>
343cdf923c02 introduced hack to exploit the symmetry of equality in monotonicity calculus
blanchet
parents: 41014
diff changeset
   815
         (* hack to exploit symmetry of equality when typing "insert" *)
343cdf923c02 introduced hack to exploit the symmetry of equality in monotonicity calculus
blanchet
parents: 41014
diff changeset
   816
         (if t2 = Bound 0 then do_term @{term True}
343cdf923c02 introduced hack to exploit the symmetry of equality in monotonicity calculus
blanchet
parents: 41014
diff changeset
   817
          else do_term (t0 $ t2 $ Bound 0)) accum
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   818
       | Const (x as (s, T)) =>
40993
52ee2a187cdb support 3 monotonicity calculi in one and fix soundness bug
blanchet
parents: 40991
diff changeset
   819
         (case AList.lookup (op =) consts x of
52ee2a187cdb support 3 monotonicity calculi in one and fix soundness bug
blanchet
parents: 40991
diff changeset
   820
            SOME M => (M, accum)
52ee2a187cdb support 3 monotonicity calculi in one and fix soundness bug
blanchet
parents: 40991
diff changeset
   821
          | NONE =>
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   822
            if not (could_exist_alpha_subtype alpha_T T) then
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   823
              (mtype_for T, accum)
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   824
            else case s of
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   825
              @{const_name all} => do_all T accum
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   826
            | @{const_name "=="} => do_equals T accum
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   827
            | @{const_name All} => do_all T accum
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   828
            | @{const_name Ex} =>
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   829
              let val set_T = domain_type T in
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   830
                do_term (Abs (Name.uu, set_T,
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   831
                              @{const Not} $ (HOLogic.mk_eq
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   832
                                  (Abs (Name.uu, domain_type set_T,
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   833
                                        @{const False}),
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   834
                                   Bound 0)))) accum
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   835
              end
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   836
            | @{const_name HOL.eq} => do_equals T accum
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   837
            | @{const_name The} =>
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   838
              (trace_msg (K "*** The"); raise UNSOLVABLE ())
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   839
            | @{const_name Eps} =>
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   840
              (trace_msg (K "*** Eps"); raise UNSOLVABLE ())
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   841
            | @{const_name If} =>
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   842
              do_robust_set_operation (range_type T) accum
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   843
              |>> curry3 MFun bool_M (A Gen)
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   844
            | @{const_name Pair} => do_pair_constr T accum
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   845
            | @{const_name fst} => do_nth_pair_sel 0 T accum
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   846
            | @{const_name snd} => do_nth_pair_sel 1 T accum
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   847
            | @{const_name Id} =>
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   848
              (MFun (mtype_for (domain_type T), A Gen, bool_M), accum)
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   849
            | @{const_name converse} =>
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   850
              let
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   851
                val x = Unsynchronized.inc max_fresh
46081
8f6465f7021b ported mono calculus to handle "set" type constructors
blanchet
parents: 41471
diff changeset
   852
                val ab_set_M = domain_type T |> mtype_for_set x
8f6465f7021b ported mono calculus to handle "set" type constructors
blanchet
parents: 41471
diff changeset
   853
                val ba_set_M = range_type T |> mtype_for_set x
41011
5c2f16eae066 added some missing well-annotatedness constraints to monotonicity calculus
blanchet
parents: 41009
diff changeset
   854
              in
5c2f16eae066 added some missing well-annotatedness constraints to monotonicity calculus
blanchet
parents: 41009
diff changeset
   855
                (MFun (ab_set_M, A Gen, ba_set_M),
5c2f16eae066 added some missing well-annotatedness constraints to monotonicity calculus
blanchet
parents: 41009
diff changeset
   856
                 accum ||> add_annotation_atom_comp Neq [] (V x) (A New))
5c2f16eae066 added some missing well-annotatedness constraints to monotonicity calculus
blanchet
parents: 41009
diff changeset
   857
              end
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   858
            | @{const_name trancl} => do_fragile_set_operation T accum
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   859
            | @{const_name rel_comp} =>
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   860
              let
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   861
                val x = Unsynchronized.inc max_fresh
46081
8f6465f7021b ported mono calculus to handle "set" type constructors
blanchet
parents: 41471
diff changeset
   862
                val bc_set_M = domain_type T |> mtype_for_set x
8f6465f7021b ported mono calculus to handle "set" type constructors
blanchet
parents: 41471
diff changeset
   863
                val ab_set_M = domain_type (range_type T) |> mtype_for_set x
8f6465f7021b ported mono calculus to handle "set" type constructors
blanchet
parents: 41471
diff changeset
   864
                val ac_set_M = nth_range_type 2 T |> mtype_for_set x
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   865
              in
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   866
                (MFun (bc_set_M, A Gen, MFun (ab_set_M, A Gen, ac_set_M)),
41011
5c2f16eae066 added some missing well-annotatedness constraints to monotonicity calculus
blanchet
parents: 41009
diff changeset
   867
                 accum ||> add_annotation_atom_comp Neq [] (V x) (A New))
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   868
              end
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   869
            | @{const_name finite} =>
41011
5c2f16eae066 added some missing well-annotatedness constraints to monotonicity calculus
blanchet
parents: 41009
diff changeset
   870
              let
46081
8f6465f7021b ported mono calculus to handle "set" type constructors
blanchet
parents: 41471
diff changeset
   871
                val M1 = mtype_for (elem_type (domain_type T))
41011
5c2f16eae066 added some missing well-annotatedness constraints to monotonicity calculus
blanchet
parents: 41009
diff changeset
   872
                val a = if exists_alpha_sub_mtype M1 then Fls else Gen
5c2f16eae066 added some missing well-annotatedness constraints to monotonicity calculus
blanchet
parents: 41009
diff changeset
   873
              in (MFun (MFun (M1, A a, bool_M), A Gen, bool_M), accum) end
41050
effbaa323cf0 updated monotonicity calculus w.r.t. set products
blanchet
parents: 41049
diff changeset
   874
            | @{const_name prod} =>
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   875
              let
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   876
                val x = Unsynchronized.inc max_fresh
46081
8f6465f7021b ported mono calculus to handle "set" type constructors
blanchet
parents: 41471
diff changeset
   877
                val a_set_M = domain_type T |> mtype_for_set x
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   878
                val b_set_M =
46081
8f6465f7021b ported mono calculus to handle "set" type constructors
blanchet
parents: 41471
diff changeset
   879
                  range_type (domain_type (range_type T)) |> mtype_for_set x
8f6465f7021b ported mono calculus to handle "set" type constructors
blanchet
parents: 41471
diff changeset
   880
                val ab_set_M = nth_range_type 2 T |> mtype_for_set x
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   881
              in
41050
effbaa323cf0 updated monotonicity calculus w.r.t. set products
blanchet
parents: 41049
diff changeset
   882
                (MFun (a_set_M, A Gen, MFun (b_set_M, A Gen, ab_set_M)),
41011
5c2f16eae066 added some missing well-annotatedness constraints to monotonicity calculus
blanchet
parents: 41009
diff changeset
   883
                 accum ||> add_annotation_atom_comp Neq [] (V x) (A New))
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   884
              end
40993
52ee2a187cdb support 3 monotonicity calculi in one and fix soundness bug
blanchet
parents: 40991
diff changeset
   885
            | _ =>
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   886
              if s = @{const_name safe_The} then
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   887
                let
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   888
                  val a_set_M = mtype_for (domain_type T)
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   889
                  val a_M = dest_MFun a_set_M |> #1
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   890
                in (MFun (a_set_M, A Gen, a_M), accum) end
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   891
              else if s = @{const_name ord_class.less_eq} andalso
46081
8f6465f7021b ported mono calculus to handle "set" type constructors
blanchet
parents: 41471
diff changeset
   892
                      is_set_like_type (domain_type T) then
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   893
                do_fragile_set_operation T accum
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   894
              else if is_sel s then
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   895
                (mtype_for_sel mdata x, accum)
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   896
              else if is_constr ctxt stds x then
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   897
                (mtype_for_constr mdata x, accum)
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   898
              else if is_built_in_const thy stds x then
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   899
                (fresh_mtype_for_type mdata true T, accum)
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   900
              else
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   901
                let val M = mtype_for T in
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   902
                  (M, ({bound_Ts = bound_Ts, bound_Ms = bound_Ms, frame = frame,
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   903
                        frees = frees, consts = (x, M) :: consts}, cset))
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   904
                end)
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   905
           ||> apsnd (add_comp_frame (A Gen) Eq frame)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   906
         | Free (x as (_, T)) =>
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   907
           (case AList.lookup (op =) frees x of
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   908
              SOME M => (M, accum)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   909
            | NONE =>
35385
29f81babefd7 improved precision of infinite "shallow" datatypes in Nitpick;
blanchet
parents: 35384
diff changeset
   910
              let val M = mtype_for T in
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   911
                (M, ({bound_Ts = bound_Ts, bound_Ms = bound_Ms, frame = frame,
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   912
                      frees = (x, M) :: frees, consts = consts}, cset))
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   913
              end)
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   914
           ||> apsnd (add_comp_frame (A Gen) Eq frame)
38179
7207321df8af make tracing monotonicity easier
blanchet
parents: 37704
diff changeset
   915
         | Var _ => (trace_msg (K "*** Var"); raise UNSOLVABLE ())
40994
3bdb8df0daf0 more work on frames in the new monotonicity calculus
blanchet
parents: 40993
diff changeset
   916
         | Bound j =>
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   917
           (nth bound_Ms j,
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   918
            accum ||> add_bound_frame (length bound_Ts - j - 1) frame)
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   919
         | Abs (_, T, t') =>
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   920
           (case fin_fun_body T (fastype_of1 (T :: bound_Ts, t')) t' of
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   921
              SOME t' =>
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   922
              let
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   923
                val M = mtype_for T
41014
e538a4f9dd86 add more flexibility to the monotonicity calculus: instead of hardcoding F-arrows, also allow G-arrows, simulating applications of the Sub rule
blanchet
parents: 41013
diff changeset
   924
                val x = Unsynchronized.inc max_fresh
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   925
                val (M', accum) = do_term t' (accum |>> push_bound (V x) T M)
41014
e538a4f9dd86 add more flexibility to the monotonicity calculus: instead of hardcoding F-arrows, also allow G-arrows, simulating applications of the Sub rule
blanchet
parents: 41013
diff changeset
   926
              in
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   927
                (MFun (M, V x, M'),
41014
e538a4f9dd86 add more flexibility to the monotonicity calculus: instead of hardcoding F-arrows, also allow G-arrows, simulating applications of the Sub rule
blanchet
parents: 41013
diff changeset
   928
                 accum |>> pop_bound
e538a4f9dd86 add more flexibility to the monotonicity calculus: instead of hardcoding F-arrows, also allow G-arrows, simulating applications of the Sub rule
blanchet
parents: 41013
diff changeset
   929
                       ||> add_annotation_atom_comp Leq [] (A Fls) (V x))
e538a4f9dd86 add more flexibility to the monotonicity calculus: instead of hardcoding F-arrows, also allow G-arrows, simulating applications of the Sub rule
blanchet
parents: 41013
diff changeset
   930
              end
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   931
            | NONE =>
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   932
              ((case t' of
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   933
                  t1' $ Bound 0 =>
37476
0681e46b4022 optimized code generated for datatype cases + more;
blanchet
parents: 37267
diff changeset
   934
                  if not (loose_bvar1 (t1', 0)) andalso
0681e46b4022 optimized code generated for datatype cases + more;
blanchet
parents: 37267
diff changeset
   935
                     is_enough_eta_expanded t1' then
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   936
                    do_term (incr_boundvars ~1 t1') accum
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   937
                  else
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   938
                    raise SAME ()
38864
4abe644fcea5 formerly unnamed infix equality now named HOL.eq
haftmann
parents: 38795
diff changeset
   939
                | (t11 as Const (@{const_name HOL.eq}, _)) $ Bound 0 $ t13 =>
37476
0681e46b4022 optimized code generated for datatype cases + more;
blanchet
parents: 37267
diff changeset
   940
                  if not (loose_bvar1 (t13, 0)) then
0681e46b4022 optimized code generated for datatype cases + more;
blanchet
parents: 37267
diff changeset
   941
                    do_term (incr_boundvars ~1 (t11 $ t13)) accum
0681e46b4022 optimized code generated for datatype cases + more;
blanchet
parents: 37267
diff changeset
   942
                  else
0681e46b4022 optimized code generated for datatype cases + more;
blanchet
parents: 37267
diff changeset
   943
                    raise SAME ()
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   944
                | _ => raise SAME ())
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   945
               handle SAME () =>
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   946
                      let
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   947
                        val M = mtype_for T
41014
e538a4f9dd86 add more flexibility to the monotonicity calculus: instead of hardcoding F-arrows, also allow G-arrows, simulating applications of the Sub rule
blanchet
parents: 41013
diff changeset
   948
                        val x = Unsynchronized.inc max_fresh
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   949
                        val (M', accum) =
41014
e538a4f9dd86 add more flexibility to the monotonicity calculus: instead of hardcoding F-arrows, also allow G-arrows, simulating applications of the Sub rule
blanchet
parents: 41013
diff changeset
   950
                          do_term t' (accum |>> push_bound (V x) T M)
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   951
                      in (MFun (M, V x, M'), accum |>> pop_bound) end))
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   952
         | @{const Not} $ t1 => do_connect imp_spec t1 @{const False} accum
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   953
         | @{const conj} $ t1 $ t2 => do_connect conj_spec t1 t2 accum
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   954
         | @{const disj} $ t1 $ t2 => do_connect disj_spec t1 t2 accum
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   955
         | @{const implies} $ t1 $ t2 => do_connect imp_spec t1 t2 accum
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   956
         | Const (@{const_name Let}, _) $ t1 $ t2 =>
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   957
           do_term (betapply (t2, t1)) accum
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   958
         | t1 $ t2 =>
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   959
           let
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   960
             fun is_in t (j, _) = loose_bvar1 (t, length bound_Ts - j - 1)
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   961
             val accum as ({frame, ...}, _) =
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   962
               accum |> kill_unused_in_frame (is_in t)
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   963
             val ((frame1a, frame1b), accum) = accum |> split_frame (is_in t1)
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   964
             val frame2a = frame1a |> map (apsnd (K (A Gen)))
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   965
             val frame2b =
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   966
               frame1b |> map (apsnd (fn _ => V (Unsynchronized.inc max_fresh)))
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   967
             val frame2 = frame2a @ frame2b
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   968
             val (M1, accum) = accum |>> set_frame frame1a |> do_term t1
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   969
             val (M2, accum) = accum |>> set_frame frame2 |> do_term t2
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   970
           in
35812
394fe2b064cd solve error in "Nitpick_Mono" + short path when no finite functions are inferred
blanchet
parents: 35672
diff changeset
   971
             let
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   972
               val (M11, aa, M12) = M1 |> dest_MFun
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   973
             in
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   974
               (M12, accum |>> set_frame frame
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   975
                           ||> add_is_sub_mtype M2 M11
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   976
                           ||> add_app aa frame1b frame2b)
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   977
             end
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   978
           end)
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   979
        |> tap (fn (M, (gamma, _)) =>
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   980
                   trace_msg (fn () => "  " ^ string_for_mcontext ctxt t gamma ^
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
   981
                                       " \<turnstile> " ^
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   982
                                       Syntax.string_of_term ctxt t ^ " : " ^
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   983
                                       string_for_mtype M))
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   984
  in do_term end
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   985
41001
11715564e2ad removed old baggage from monotonicity calculus -- the "calculus" option didn't really work anyway because of on-the-fly simplifications
blanchet
parents: 41000
diff changeset
   986
fun force_gen_funs 0 _ = I
11715564e2ad removed old baggage from monotonicity calculus -- the "calculus" option didn't really work anyway because of on-the-fly simplifications
blanchet
parents: 41000
diff changeset
   987
  | force_gen_funs n (M as MFun (M1, _, M2)) =
11715564e2ad removed old baggage from monotonicity calculus -- the "calculus" option didn't really work anyway because of on-the-fly simplifications
blanchet
parents: 41000
diff changeset
   988
    add_mtypes_equal M (MFun (M1, A Gen, M2)) #> force_gen_funs (n - 1) M2
11715564e2ad removed old baggage from monotonicity calculus -- the "calculus" option didn't really work anyway because of on-the-fly simplifications
blanchet
parents: 41000
diff changeset
   989
  | force_gen_funs _ M = raise MTYPE ("Nitpick_Mono.force_gen_funs", [M], [])
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   990
fun consider_general_equals mdata def t1 t2 accum =
35386
45a4e19d3ebd more work on the new monotonicity stuff in Nitpick
blanchet
parents: 35385
diff changeset
   991
  let
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   992
    val (M1, accum) = consider_term mdata t1 accum
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   993
    val (M2, accum) = consider_term mdata t2 accum
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
   994
    val accum = accum ||> add_mtypes_equal M1 M2
35386
45a4e19d3ebd more work on the new monotonicity stuff in Nitpick
blanchet
parents: 35385
diff changeset
   995
  in
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   996
    if def then
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   997
      let
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   998
        val (head1, args1) = strip_comb t1
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
   999
        val (head_M1, accum) = consider_term mdata head1 accum
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1000
      in accum ||> force_gen_funs (length args1) head_M1 end
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1001
    else
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1002
      accum
35386
45a4e19d3ebd more work on the new monotonicity stuff in Nitpick
blanchet
parents: 35385
diff changeset
  1003
  end
45a4e19d3ebd more work on the new monotonicity stuff in Nitpick
blanchet
parents: 35385
diff changeset
  1004
41000
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
  1005
fun consider_general_formula (mdata as {hol_ctxt = {ctxt, ...}, max_fresh,
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
  1006
                                        ...}) =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
  1007
  let
35672
ff484d4f2e14 more work on Nitpick's finite sets
blanchet
parents: 35671
diff changeset
  1008
    val mtype_for = fresh_mtype_for_type mdata false
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1009
    val do_term = snd oo consider_term mdata
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
  1010
    fun do_formula sn t (accum as (gamma, _)) =
41000
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
  1011
      let
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1012
        fun do_quantifier quant_s abs_T body_t =
41000
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
  1013
          let
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
  1014
            val abs_M = mtype_for abs_T
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
  1015
            val x = Unsynchronized.inc max_fresh
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
  1016
            val side_cond = ((sn = Minus) = (quant_s = @{const_name Ex}))
41001
11715564e2ad removed old baggage from monotonicity calculus -- the "calculus" option didn't really work anyway because of on-the-fly simplifications
blanchet
parents: 41000
diff changeset
  1017
            fun ann () = if quant_s = @{const_name Ex} then Fls else Tru
41000
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
  1018
          in
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1019
            accum ||> side_cond
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1020
                      ? add_mtype_is_complete [(x, (Plus, ann ()))] abs_M
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1021
                  |>> push_bound (V x) abs_T abs_M
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1022
                  |> do_formula sn body_t
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1023
                  |>> pop_bound
41000
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
  1024
          end
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1025
        fun do_connect spec neg1 t1 t2 =
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1026
          consider_connective mdata spec
41003
7e2a7bd55a00 proper handling of frames for connectives in monotonicity calculus
blanchet
parents: 41002
diff changeset
  1027
              (do_formula (sn |> neg1 ? negate_sign) t1) (do_formula sn t2)
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1028
        fun do_equals t1 t2 =
41000
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
  1029
          case sn of
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
  1030
            Plus => do_term t accum
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1031
          | Minus => consider_general_equals mdata false t1 t2 accum
41000
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
  1032
      in
41004
01f33bf79596 tune parentheses and indentation
blanchet
parents: 41003
diff changeset
  1033
        trace_msg (fn () => "  " ^ string_for_mcontext ctxt t gamma ^
01f33bf79596 tune parentheses and indentation
blanchet
parents: 41003
diff changeset
  1034
                            " \<turnstile> " ^ Syntax.string_of_term ctxt t ^
01f33bf79596 tune parentheses and indentation
blanchet
parents: 41003
diff changeset
  1035
                            " : o\<^sup>" ^ string_for_sign sn ^ "?");
01f33bf79596 tune parentheses and indentation
blanchet
parents: 41003
diff changeset
  1036
        case t of
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1037
          Const (s as @{const_name all}, _) $ Abs (_, T1, t1) =>
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1038
          do_quantifier s T1 t1
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1039
        | Const (@{const_name "=="}, _) $ t1 $ t2 => do_equals t1 t2
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1040
        | @{const Trueprop} $ t1 => do_formula sn t1 accum
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1041
        | Const (s as @{const_name All}, _) $ Abs (_, T1, t1) =>
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1042
          do_quantifier s T1 t1
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1043
        | Const (s as @{const_name Ex}, T0) $ (t1 as Abs (_, T1, t1')) =>
41004
01f33bf79596 tune parentheses and indentation
blanchet
parents: 41003
diff changeset
  1044
          (case sn of
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1045
             Plus => do_quantifier s T1 t1'
41004
01f33bf79596 tune parentheses and indentation
blanchet
parents: 41003
diff changeset
  1046
           | Minus =>
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1047
             (* FIXME: Needed? *)
41004
01f33bf79596 tune parentheses and indentation
blanchet
parents: 41003
diff changeset
  1048
             do_term (@{const Not}
01f33bf79596 tune parentheses and indentation
blanchet
parents: 41003
diff changeset
  1049
                      $ (HOLogic.eq_const (domain_type T0) $ t1
01f33bf79596 tune parentheses and indentation
blanchet
parents: 41003
diff changeset
  1050
                         $ Abs (Name.uu, T1, @{const False}))) accum)
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1051
        | Const (@{const_name HOL.eq}, _) $ t1 $ t2 => do_equals t1 t2
41004
01f33bf79596 tune parentheses and indentation
blanchet
parents: 41003
diff changeset
  1052
        | Const (@{const_name Let}, _) $ t1 $ t2 =>
01f33bf79596 tune parentheses and indentation
blanchet
parents: 41003
diff changeset
  1053
          do_formula sn (betapply (t2, t1)) accum
01f33bf79596 tune parentheses and indentation
blanchet
parents: 41003
diff changeset
  1054
        | @{const Pure.conjunction} $ t1 $ t2 =>
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1055
          do_connect meta_conj_spec false t1 t2 accum
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1056
        | @{const "==>"} $ t1 $ t2 => do_connect meta_imp_spec true t1 t2 accum
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1057
        | @{const Not} $ t1 => do_connect imp_spec true t1 @{const False} accum
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1058
        | @{const conj} $ t1 $ t2 => do_connect conj_spec false t1 t2 accum
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1059
        | @{const disj} $ t1 $ t2 => do_connect disj_spec false t1 t2 accum
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1060
        | @{const implies} $ t1 $ t2 => do_connect imp_spec true t1 t2 accum
41004
01f33bf79596 tune parentheses and indentation
blanchet
parents: 41003
diff changeset
  1061
        | _ => do_term t accum
41000
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
  1062
      end
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1063
      |> tap (fn (gamma, _) =>
41000
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
  1064
                 trace_msg (fn () => string_for_mcontext ctxt t gamma ^
4bbff1684465 implemented All rules from new monotonicity calculus
blanchet
parents: 40999
diff changeset
  1065
                                     " \<turnstile> " ^
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1066
                                     Syntax.string_of_term ctxt t ^
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1067
                                     " : o\<^sup>" ^ string_for_sign sn))
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
  1068
  in do_formula end
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
  1069
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
  1070
(* The harmless axiom optimization below is somewhat too aggressive in the face
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
  1071
   of (rather peculiar) user-defined axioms. *)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
  1072
val harmless_consts =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
  1073
  [@{const_name ord_class.less}, @{const_name ord_class.less_eq}]
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
  1074
val bounteous_consts = [@{const_name bisim}]
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
  1075
41109
97bf008b9cfe made smlnj happy
krauss
parents: 41054
diff changeset
  1076
fun is_harmless_axiom ({hol_ctxt = {thy, stds, ...}, ...} : mdata) t =
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
  1077
    Term.add_consts t []
39359
6f49c7fbb1b1 remove "fast_descs" option from Nitpick;
blanchet
parents: 39345
diff changeset
  1078
    |> filter_out (is_built_in_const thy stds)
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
  1079
    |> (forall (member (op =) harmless_consts o original_name o fst) orf
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
  1080
        exists (member (op =) bounteous_consts o fst))
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
  1081
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
  1082
fun consider_nondefinitional_axiom mdata t =
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1083
  if is_harmless_axiom mdata t then I
35386
45a4e19d3ebd more work on the new monotonicity stuff in Nitpick
blanchet
parents: 35385
diff changeset
  1084
  else consider_general_formula mdata Plus t
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
  1085
41109
97bf008b9cfe made smlnj happy
krauss
parents: 41054
diff changeset
  1086
fun consider_definitional_axiom (mdata as {hol_ctxt = {ctxt, ...}, ...} : mdata) t =
37256
0dca1ec52999 thread along context instead of theory for typedef lookup
blanchet
parents: 36385
diff changeset
  1087
  if not (is_constr_pattern_formula ctxt t) then
35386
45a4e19d3ebd more work on the new monotonicity stuff in Nitpick
blanchet
parents: 35385
diff changeset
  1088
    consider_nondefinitional_axiom mdata t
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
  1089
  else if is_harmless_axiom mdata t then
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1090
    I
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
  1091
  else
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
  1092
    let
35672
ff484d4f2e14 more work on Nitpick's finite sets
blanchet
parents: 35671
diff changeset
  1093
      val mtype_for = fresh_mtype_for_type mdata false
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1094
      val do_term = snd oo consider_term mdata
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1095
      fun do_all abs_T body_t accum =
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1096
        accum |>> push_bound (A Gen) abs_T (mtype_for abs_T)
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1097
              |> do_formula body_t
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1098
              |>> pop_bound
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1099
      and do_implies t1 t2 = do_term t1 #> do_formula t2
35812
394fe2b064cd solve error in "Nitpick_Mono" + short path when no finite functions are inferred
blanchet
parents: 35672
diff changeset
  1100
      and do_formula t accum =
41002
11a442b472c7 tune indentation
blanchet
parents: 41001
diff changeset
  1101
        case t of
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1102
          Const (@{const_name all}, _) $ Abs (_, T1, t1) => do_all T1 t1 accum
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1103
        | @{const Trueprop} $ t1 => do_formula t1 accum
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1104
        | Const (@{const_name "=="}, _) $ t1 $ t2 =>
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1105
          consider_general_equals mdata true t1 t2 accum
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1106
        | @{const "==>"} $ t1 $ t2 => do_implies t1 t2 accum
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1107
        | @{const Pure.conjunction} $ t1 $ t2 =>
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1108
          fold (do_formula) [t1, t2] accum
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1109
        | Const (@{const_name All}, _) $ Abs (_, T1, t1) => do_all T1 t1 accum
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1110
        | Const (@{const_name HOL.eq}, _) $ t1 $ t2 =>
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1111
          consider_general_equals mdata true t1 t2 accum
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1112
        | @{const conj} $ t1 $ t2 => fold (do_formula) [t1, t2] accum
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1113
        | @{const implies} $ t1 $ t2 => do_implies t1 t2 accum
41002
11a442b472c7 tune indentation
blanchet
parents: 41001
diff changeset
  1114
        | _ => raise TERM ("Nitpick_Mono.consider_definitional_axiom.\
11a442b472c7 tune indentation
blanchet
parents: 41001
diff changeset
  1115
                           \do_formula", [t])
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
  1116
    in do_formula t end
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
  1117
40989
ff08edbbc182 more monotonicity tuning
blanchet
parents: 40988
diff changeset
  1118
fun string_for_mtype_of_term ctxt asgs t M =
ff08edbbc182 more monotonicity tuning
blanchet
parents: 40988
diff changeset
  1119
  Syntax.string_of_term ctxt t ^ " : " ^ string_for_mtype (resolve_mtype asgs M)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
  1120
40998
bcd23ddeecef started implementing the new monotonicity rules for application
blanchet
parents: 40997
diff changeset
  1121
fun print_mcontext ctxt asgs ({frees, consts, ...} : mcontext) =
38179
7207321df8af make tracing monotonicity easier
blanchet
parents: 37704
diff changeset
  1122
  trace_msg (fn () =>
40989
ff08edbbc182 more monotonicity tuning
blanchet
parents: 40988
diff changeset
  1123
      map (fn (x, M) => string_for_mtype_of_term ctxt asgs (Free x) M) frees @
ff08edbbc182 more monotonicity tuning
blanchet
parents: 40988
diff changeset
  1124
      map (fn (x, M) => string_for_mtype_of_term ctxt asgs (Const x) M) consts
37476
0681e46b4022 optimized code generated for datatype cases + more;
blanchet
parents: 37267
diff changeset
  1125
      |> cat_lines)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
  1126
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1127
fun formulas_monotonic (hol_ctxt as {ctxt, tac_timeout, ...}) binarize alpha_T
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1128
                       (nondef_ts, def_ts) =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
  1129
  let
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1130
    val _ = trace_msg (fn () => "****** Monotonicity analysis: " ^
38179
7207321df8af make tracing monotonicity easier
blanchet
parents: 37704
diff changeset
  1131
                                string_for_mtype MAlpha ^ " is " ^
7207321df8af make tracing monotonicity easier
blanchet
parents: 37704
diff changeset
  1132
                                Syntax.string_of_typ ctxt alpha_T)
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1133
    val mdata as {max_fresh, ...} = initial_mdata hol_ctxt binarize alpha_T
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1134
    val (gamma, cset) =
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1135
      (initial_gamma, ([], []))
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1136
      |> consider_general_formula mdata Plus (hd nondef_ts)
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1137
      |> fold (consider_nondefinitional_axiom mdata) (tl nondef_ts)
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1138
      |> fold (consider_definitional_axiom mdata) def_ts
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
  1139
  in
41007
75275c796b46 use ML SAT solvers up to a certain time limit, then switch to faster solvers with a timeout -- this becomes necessary with the new, more powerful monotonicity calculus
blanchet
parents: 41005
diff changeset
  1140
    case solve tac_timeout (!max_fresh) cset of
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1141
      SOME asgs => (print_mcontext ctxt asgs gamma; true)
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1142
    | _ => false
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
  1143
  end
41054
e58d1cdda832 simplify monotonicity code after killing "fin_fun" optimization
blanchet
parents: 41052
diff changeset
  1144
  handle UNSOLVABLE () => false
35812
394fe2b064cd solve error in "Nitpick_Mono" + short path when no finite functions are inferred
blanchet
parents: 35672
diff changeset
  1145
       | MTYPE (loc, Ms, Ts) =>
35665
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
  1146
         raise BAD (loc, commas (map string_for_mtype Ms @
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
  1147
                                 map (Syntax.string_of_typ ctxt) Ts))
ff2bf50505ab added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
blanchet
parents: 35386
diff changeset
  1148
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
  1149
end;