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