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