src/HOL/Tools/Nitpick/nitpick_rep.ML
author wenzelm
Fri, 04 Jan 2019 23:22:53 +0100
changeset 69593 3dda49e08b9d
parent 59058 a78612c67ec0
permissions -rw-r--r--
isabelle update -u control_cartouches;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
33982
1ae222745c4a fixed paths in Nitpick's ML file headers
blanchet
parents: 33232
diff changeset
     1
(*  Title:      HOL/Tools/Nitpick/nitpick_rep.ML
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
     2
    Author:     Jasmin Blanchette, TU Muenchen
34982
7b8c366e34a2 added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
blanchet
parents: 34936
diff changeset
     3
    Copyright   2008, 2009, 2010
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
     4
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
     5
Kodkod representations of Nitpick terms.
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_REP =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
     9
sig
33232
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33192
diff changeset
    10
  type polarity = Nitpick_Util.polarity
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33192
diff changeset
    11
  type scope = Nitpick_Scope.scope
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    12
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    13
  datatype rep =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    14
    Any |
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    15
    Formula of polarity |
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    16
    Atom of int * int |
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    17
    Struct of rep list |
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    18
    Vect of int * rep |
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    19
    Func of rep * rep |
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    20
    Opt of rep
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    21
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    22
  exception REP of string * rep list
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    23
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    24
  val string_for_polarity : polarity -> string
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    25
  val string_for_rep : rep -> string
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    26
  val is_Func : rep -> bool
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    27
  val is_Opt : rep -> bool
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    28
  val is_opt_rep : rep -> bool
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    29
  val flip_rep_polarity : rep -> rep
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    30
  val card_of_rep : rep -> int
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    31
  val arity_of_rep : rep -> int
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    32
  val min_univ_card_of_rep : rep -> int
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    33
  val is_one_rep : rep -> bool
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    34
  val is_lone_rep : rep -> bool
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    35
  val dest_Func : rep -> rep * rep
36128
a3d8d5329438 make Nitpick output everything to tracing in debug mode;
blanchet
parents: 35665
diff changeset
    36
  val lazy_range_rep : int Typtab.table -> typ -> (unit -> int) -> rep -> rep
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    37
  val binder_reps : rep -> rep list
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    38
  val body_rep : rep -> rep
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    39
  val one_rep : int Typtab.table -> typ -> rep -> rep
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    40
  val optable_rep : int Typtab.table -> typ -> rep -> rep
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    41
  val opt_rep : int Typtab.table -> typ -> rep -> rep
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    42
  val unopt_rep : rep -> rep
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    43
  val min_rep : rep -> rep -> rep
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    44
  val min_reps : rep list -> rep list -> rep list
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    45
  val card_of_domain_from_rep : int -> rep -> int
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    46
  val rep_to_binary_rel_rep : int Typtab.table -> typ -> rep -> rep
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    47
  val best_one_rep_for_type : scope -> typ -> rep
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    48
  val best_opt_set_rep_for_type : scope -> typ -> rep
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    49
  val best_non_opt_set_rep_for_type : scope -> typ -> rep
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    50
  val best_set_rep_for_type : scope -> typ -> rep
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    51
  val best_non_opt_symmetric_reps_for_fun_type : scope -> typ -> rep * rep
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    52
  val atom_schema_of_rep : rep -> (int * int) list
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    53
  val atom_schema_of_reps : rep list -> (int * int) list
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    54
  val type_schema_of_rep : typ -> rep -> typ list
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    55
  val type_schema_of_reps : typ list -> rep list -> typ list
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    56
  val all_combinations_for_rep : rep -> int list list
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    57
  val all_combinations_for_reps : rep list -> int list list
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    58
end;
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    59
33232
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33192
diff changeset
    60
structure Nitpick_Rep : NITPICK_REP =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    61
struct
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    62
33232
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33192
diff changeset
    63
open Nitpick_Util
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33192
diff changeset
    64
open Nitpick_HOL
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33192
diff changeset
    65
open Nitpick_Scope
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    66
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    67
datatype rep =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    68
  Any |
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    69
  Formula of polarity |
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    70
  Atom of int * int |
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    71
  Struct of rep list |
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    72
  Vect of int * rep |
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    73
  Func of rep * rep |
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    74
  Opt of rep
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    75
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    76
exception REP of string * rep list
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    77
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    78
fun string_for_polarity Pos = "+"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    79
  | string_for_polarity Neg = "-"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    80
  | string_for_polarity Neut = "="
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    81
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    82
fun atomic_string_for_rep rep =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    83
  let val s = string_for_rep rep in
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    84
    if String.isPrefix "[" s orelse not (is_substring_of " " s) then s
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    85
    else "(" ^ s ^ ")"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    86
  end
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    87
and string_for_rep Any = "X"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    88
  | string_for_rep (Formula polar) = "F" ^ string_for_polarity polar
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    89
  | string_for_rep (Atom (k, j0)) =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    90
    "A" ^ string_of_int k ^ (if j0 = 0 then "" else "@" ^ string_of_int j0)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    91
  | string_for_rep (Struct rs) = "[" ^ commas (map string_for_rep rs) ^ "]"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    92
  | string_for_rep (Vect (k, R)) =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    93
    string_of_int k ^ " x " ^ atomic_string_for_rep R
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    94
  | string_for_rep (Func (R1, R2)) =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    95
    atomic_string_for_rep R1 ^ " => " ^ string_for_rep R2
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    96
  | string_for_rep (Opt R) = atomic_string_for_rep R ^ "?"
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    97
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    98
fun is_Func (Func _) = true
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
    99
  | is_Func _ = false
55889
6bfbec3dff62 tuned code
blanchet
parents: 46085
diff changeset
   100
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   101
fun is_Opt (Opt _) = true
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   102
  | is_Opt _ = false
55889
6bfbec3dff62 tuned code
blanchet
parents: 46085
diff changeset
   103
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   104
fun is_opt_rep (Func (_, R2)) = is_opt_rep R2
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   105
  | is_opt_rep (Opt _) = true
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   106
  | is_opt_rep _ = false
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   107
33232
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33192
diff changeset
   108
fun card_of_rep Any = raise REP ("Nitpick_Rep.card_of_rep", [Any])
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   109
  | card_of_rep (Formula _) = 2
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   110
  | card_of_rep (Atom (k, _)) = k
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   111
  | card_of_rep (Struct rs) = Integer.prod (map card_of_rep rs)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   112
  | card_of_rep (Vect (k, R)) = reasonable_power (card_of_rep R) k
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   113
  | card_of_rep (Func (R1, R2)) =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   114
    reasonable_power (card_of_rep R2) (card_of_rep R1)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   115
  | card_of_rep (Opt R) = card_of_rep R
55889
6bfbec3dff62 tuned code
blanchet
parents: 46085
diff changeset
   116
33232
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33192
diff changeset
   117
fun arity_of_rep Any = raise REP ("Nitpick_Rep.arity_of_rep", [Any])
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   118
  | arity_of_rep (Formula _) = 0
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   119
  | arity_of_rep (Atom _) = 1
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   120
  | arity_of_rep (Struct Rs) = Integer.sum (map arity_of_rep Rs)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   121
  | arity_of_rep (Vect (k, R)) = k * arity_of_rep R
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   122
  | arity_of_rep (Func (R1, R2)) = arity_of_rep R1 + arity_of_rep R2
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   123
  | arity_of_rep (Opt R) = arity_of_rep R
55889
6bfbec3dff62 tuned code
blanchet
parents: 46085
diff changeset
   124
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   125
fun min_univ_card_of_rep Any =
33232
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33192
diff changeset
   126
    raise REP ("Nitpick_Rep.min_univ_card_of_rep", [Any])
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   127
  | min_univ_card_of_rep (Formula _) = 0
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   128
  | min_univ_card_of_rep (Atom (k, j0)) = k + j0 + 1
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   129
  | min_univ_card_of_rep (Struct Rs) =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   130
    fold Integer.max (map min_univ_card_of_rep Rs) 0
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   131
  | min_univ_card_of_rep (Vect (_, R)) = min_univ_card_of_rep R
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   132
  | min_univ_card_of_rep (Func (R1, R2)) =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   133
    Int.max (min_univ_card_of_rep R1, min_univ_card_of_rep R2)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   134
  | min_univ_card_of_rep (Opt R) = min_univ_card_of_rep R
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   135
38190
b02e204b613a get rid of all "optimizations" regarding "unit" and other cardinality-1 types
blanchet
parents: 37678
diff changeset
   136
fun is_one_rep (Atom _) = true
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   137
  | is_one_rep (Struct _) = true
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   138
  | is_one_rep (Vect _) = true
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   139
  | is_one_rep _ = false
55889
6bfbec3dff62 tuned code
blanchet
parents: 46085
diff changeset
   140
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   141
fun is_lone_rep (Opt R) = is_one_rep R
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   142
  | is_lone_rep R = is_one_rep R
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   143
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   144
fun dest_Func (Func z) = z
33232
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33192
diff changeset
   145
  | dest_Func R = raise REP ("Nitpick_Rep.dest_Func", [R])
55889
6bfbec3dff62 tuned code
blanchet
parents: 46085
diff changeset
   146
38190
b02e204b613a get rid of all "optimizations" regarding "unit" and other cardinality-1 types
blanchet
parents: 37678
diff changeset
   147
fun lazy_range_rep _ _ _ (Vect (_, R)) = R
36128
a3d8d5329438 make Nitpick output everything to tracing in debug mode;
blanchet
parents: 35665
diff changeset
   148
  | lazy_range_rep _ _ _ (Func (_, R2)) = R2
a3d8d5329438 make Nitpick output everything to tracing in debug mode;
blanchet
parents: 35665
diff changeset
   149
  | lazy_range_rep ofs T ran_card (Opt R) =
a3d8d5329438 make Nitpick output everything to tracing in debug mode;
blanchet
parents: 35665
diff changeset
   150
    Opt (lazy_range_rep ofs T ran_card R)
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 59058
diff changeset
   151
  | lazy_range_rep ofs (Type (\<^type_name>\<open>fun\<close>, [_, T2])) _ (Atom (1, _)) =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   152
    Atom (1, offset_of_type ofs T2)
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 59058
diff changeset
   153
  | lazy_range_rep ofs (Type (\<^type_name>\<open>fun\<close>, [_, T2])) ran_card (Atom _) =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   154
    Atom (ran_card (), offset_of_type ofs T2)
36128
a3d8d5329438 make Nitpick output everything to tracing in debug mode;
blanchet
parents: 35665
diff changeset
   155
  | lazy_range_rep _ _ _ R = raise REP ("Nitpick_Rep.lazy_range_rep", [R])
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   156
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   157
fun binder_reps (Func (R1, R2)) = R1 :: binder_reps R2
35280
54ab4921f826 fixed a few bugs in Nitpick and removed unreferenced variables
blanchet
parents: 34982
diff changeset
   158
  | binder_reps _ = []
55889
6bfbec3dff62 tuned code
blanchet
parents: 46085
diff changeset
   159
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   160
fun body_rep (Func (_, R2)) = body_rep R2
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   161
  | body_rep R = R
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   162
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   163
fun flip_rep_polarity (Formula polar) = Formula (flip_polarity polar)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   164
  | flip_rep_polarity (Func (R1, R2)) = Func (R1, flip_rep_polarity R2)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   165
  | flip_rep_polarity R = R
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   166
33232
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33192
diff changeset
   167
fun one_rep _ _ Any = raise REP ("Nitpick_Rep.one_rep", [Any])
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   168
  | one_rep _ _ (Atom x) = Atom x
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   169
  | one_rep _ _ (Struct Rs) = Struct Rs
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   170
  | one_rep _ _ (Vect z) = Vect z
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   171
  | one_rep ofs T (Opt R) = one_rep ofs T R
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   172
  | one_rep ofs T R = Atom (card_of_rep R, offset_of_type ofs T)
55889
6bfbec3dff62 tuned code
blanchet
parents: 46085
diff changeset
   173
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 59058
diff changeset
   174
fun optable_rep ofs (Type (\<^type_name>\<open>fun\<close>, [_, T2])) (Func (R1, R2)) =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   175
    Func (R1, optable_rep ofs T2 R2)
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 59058
diff changeset
   176
  | optable_rep ofs (Type (\<^type_name>\<open>set\<close>, [T'])) R =
46083
efeaa79f021b port part of Nitpick to "set" type constructor
blanchet
parents: 39345
diff changeset
   177
    optable_rep ofs (T' --> bool_T) R
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   178
  | optable_rep ofs T R = one_rep ofs T R
55889
6bfbec3dff62 tuned code
blanchet
parents: 46085
diff changeset
   179
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 59058
diff changeset
   180
fun opt_rep ofs (Type (\<^type_name>\<open>fun\<close>, [_, T2])) (Func (R1, R2)) =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   181
    Func (R1, opt_rep ofs T2 R2)
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 59058
diff changeset
   182
  | opt_rep ofs (Type (\<^type_name>\<open>set\<close>, [T'])) R =
46083
efeaa79f021b port part of Nitpick to "set" type constructor
blanchet
parents: 39345
diff changeset
   183
    opt_rep ofs (T' --> bool_T) R
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   184
  | opt_rep ofs T R = Opt (optable_rep ofs T R)
55889
6bfbec3dff62 tuned code
blanchet
parents: 46085
diff changeset
   185
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   186
fun unopt_rep (Func (R1, R2)) = Func (R1, unopt_rep R2)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   187
  | unopt_rep (Opt R) = R
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   188
  | unopt_rep R = R
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   189
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   190
fun min_polarity polar1 polar2 =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   191
  if polar1 = polar2 then
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   192
    polar1
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   193
  else if polar1 = Neut then
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   194
    polar2
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   195
  else if polar2 = Neut then
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   196
    polar1
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   197
  else
33232
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33192
diff changeset
   198
    raise ARG ("Nitpick_Rep.min_polarity",
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   199
               commas (map (quote o string_for_polarity) [polar1, polar2]))
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   200
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   201
(* It's important that Func is before Vect, because if the range is Opt we
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   202
   could lose information by converting a Func to a Vect. *)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   203
fun min_rep (Opt R1) (Opt R2) = Opt (min_rep R1 R2)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   204
  | min_rep (Opt R) _ = Opt R
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   205
  | min_rep _ (Opt R) = Opt R
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   206
  | min_rep (Formula polar1) (Formula polar2) =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   207
    Formula (min_polarity polar1 polar2)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   208
  | min_rep (Formula polar) _ = Formula polar
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   209
  | min_rep _ (Formula polar) = Formula polar
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   210
  | min_rep (Atom x) _ = Atom x
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   211
  | min_rep _ (Atom x) = Atom x
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   212
  | min_rep (Struct Rs1) (Struct Rs2) = Struct (min_reps Rs1 Rs2)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   213
  | min_rep (Struct Rs) _ = Struct Rs
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   214
  | min_rep _ (Struct Rs) = Struct Rs
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   215
  | min_rep (R1 as Func (R11, R12)) (R2 as Func (R21, R22)) =
59058
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 55890
diff changeset
   216
    (case apply2 is_opt_rep (R12, R22) of
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   217
       (true, false) => R1
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   218
     | (false, true) => R2
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   219
     | _ => if R11 = R21 then Func (R11, min_rep R12 R22)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   220
            else if min_rep R11 R21 = R11 then R1
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   221
            else R2)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   222
  | min_rep (Func z) _ = Func z
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   223
  | min_rep _ (Func z) = Func z
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   224
  | min_rep (Vect (k1, R1)) (Vect (k2, R2)) =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   225
    if k1 < k2 then Vect (k1, R1)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   226
    else if k1 > k2 then Vect (k2, R2)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   227
    else Vect (k1, min_rep R1 R2)
33232
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33192
diff changeset
   228
  | min_rep R1 R2 = raise REP ("Nitpick_Rep.min_rep", [R1, R2])
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   229
and min_reps [] _ = []
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   230
  | min_reps _ [] = []
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   231
  | min_reps (R1 :: Rs1) (R2 :: Rs2) =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   232
    if R1 = R2 then R1 :: min_reps Rs1 Rs2
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   233
    else if min_rep R1 R2 = R1 then R1 :: Rs1
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   234
    else R2 :: Rs2
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   235
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   236
fun card_of_domain_from_rep ran_card R =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   237
  case R of
38190
b02e204b613a get rid of all "optimizations" regarding "unit" and other cardinality-1 types
blanchet
parents: 37678
diff changeset
   238
    Atom (k, _) => exact_log ran_card k
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   239
  | Vect (k, _) => k
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   240
  | Func (R1, _) => card_of_rep R1
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   241
  | Opt R => card_of_domain_from_rep ran_card R
33232
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33192
diff changeset
   242
  | _ => raise REP ("Nitpick_Rep.card_of_domain_from_rep", [R])
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   243
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   244
fun rep_to_binary_rel_rep ofs T R =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   245
  let
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   246
    val k = exact_root 2 (card_of_domain_from_rep 2 R)
46085
447cda88adfe fixed a few more bugs in \Nitpick's new "set" support
blanchet
parents: 46083
diff changeset
   247
    val j0 =
447cda88adfe fixed a few more bugs in \Nitpick's new "set" support
blanchet
parents: 46083
diff changeset
   248
      offset_of_type ofs (fst (HOLogic.dest_prodT (pseudo_domain_type T)))
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   249
  in Func (Struct [Atom (k, j0), Atom (k, j0)], Formula Neut) end
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   250
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   251
fun best_one_rep_for_type (scope as {card_assigns, ...} : scope)
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 59058
diff changeset
   252
                          (Type (\<^type_name>\<open>fun\<close>, [T1, T2])) =
38190
b02e204b613a get rid of all "optimizations" regarding "unit" and other cardinality-1 types
blanchet
parents: 37678
diff changeset
   253
    Vect (card_of_type card_assigns T1, (best_one_rep_for_type scope T2))
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 59058
diff changeset
   254
  | best_one_rep_for_type scope (Type (\<^type_name>\<open>set\<close>, [T'])) =
46083
efeaa79f021b port part of Nitpick to "set" type constructor
blanchet
parents: 39345
diff changeset
   255
    best_one_rep_for_type scope (T' --> bool_T)
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 59058
diff changeset
   256
  | best_one_rep_for_type scope (Type (\<^type_name>\<open>prod\<close>, Ts)) =
38190
b02e204b613a get rid of all "optimizations" regarding "unit" and other cardinality-1 types
blanchet
parents: 37678
diff changeset
   257
    Struct (map (best_one_rep_for_type scope) Ts)
39345
062c10ff848c remove unreferenced identifiers
blanchet
parents: 38190
diff changeset
   258
  | best_one_rep_for_type {card_assigns, ofs, ...} T =
38190
b02e204b613a get rid of all "optimizations" regarding "unit" and other cardinality-1 types
blanchet
parents: 37678
diff changeset
   259
    Atom (card_of_type card_assigns T, offset_of_type ofs T)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   260
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 59058
diff changeset
   261
fun best_opt_set_rep_for_type scope (Type (\<^type_name>\<open>fun\<close>, [T1, T2])) =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   262
    Func (best_one_rep_for_type scope T1, best_opt_set_rep_for_type scope T2)
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 59058
diff changeset
   263
  | best_opt_set_rep_for_type scope (Type (\<^type_name>\<open>set\<close>, [T'])) =
46083
efeaa79f021b port part of Nitpick to "set" type constructor
blanchet
parents: 39345
diff changeset
   264
    best_opt_set_rep_for_type scope (T' --> bool_T)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   265
  | best_opt_set_rep_for_type (scope as {ofs, ...}) T =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   266
    opt_rep ofs T (best_one_rep_for_type scope T)
55889
6bfbec3dff62 tuned code
blanchet
parents: 46085
diff changeset
   267
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 59058
diff changeset
   268
fun best_non_opt_set_rep_for_type scope (Type (\<^type_name>\<open>fun\<close>, [T1, T2])) =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   269
    (case (best_one_rep_for_type scope T1,
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   270
           best_non_opt_set_rep_for_type scope T2) of
38190
b02e204b613a get rid of all "optimizations" regarding "unit" and other cardinality-1 types
blanchet
parents: 37678
diff changeset
   271
       (R1, Atom (2, _)) => Func (R1, Formula Neut)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   272
     | z => Func z)
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 59058
diff changeset
   273
  | best_non_opt_set_rep_for_type scope (Type (\<^type_name>\<open>set\<close>, [T'])) =
46083
efeaa79f021b port part of Nitpick to "set" type constructor
blanchet
parents: 39345
diff changeset
   274
    best_non_opt_set_rep_for_type scope (T' --> bool_T)
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   275
  | best_non_opt_set_rep_for_type scope T = best_one_rep_for_type scope T
55889
6bfbec3dff62 tuned code
blanchet
parents: 46085
diff changeset
   276
55890
bd7927cca152 tuned ML names
blanchet
parents: 55889
diff changeset
   277
fun best_set_rep_for_type (scope as {data_types, ...}) T =
bd7927cca152 tuned ML names
blanchet
parents: 55889
diff changeset
   278
  (if is_exact_type data_types true T then best_non_opt_set_rep_for_type
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   279
   else best_opt_set_rep_for_type) scope T
55889
6bfbec3dff62 tuned code
blanchet
parents: 46085
diff changeset
   280
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   281
fun best_non_opt_symmetric_reps_for_fun_type (scope as {ofs, ...})
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 59058
diff changeset
   282
                                           (Type (\<^type_name>\<open>fun\<close>, [T1, T2])) =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   283
    (optable_rep ofs T1 (best_one_rep_for_type scope T1),
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   284
     optable_rep ofs T2 (best_one_rep_for_type scope T2))
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   285
  | best_non_opt_symmetric_reps_for_fun_type _ T =
33232
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33192
diff changeset
   286
    raise TYPE ("Nitpick_Rep.best_non_opt_symmetric_reps_for_fun_type", [T], [])
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   287
33232
f93390060bbe internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
blanchet
parents: 33192
diff changeset
   288
fun atom_schema_of_rep Any = raise REP ("Nitpick_Rep.atom_schema_of_rep", [Any])
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   289
  | atom_schema_of_rep (Formula _) = []
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   290
  | atom_schema_of_rep (Atom x) = [x]
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   291
  | atom_schema_of_rep (Struct Rs) = atom_schema_of_reps Rs
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   292
  | atom_schema_of_rep (Vect (k, R)) = replicate_list k (atom_schema_of_rep R)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   293
  | atom_schema_of_rep (Func (R1, R2)) =
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   294
    atom_schema_of_rep R1 @ atom_schema_of_rep R2
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   295
  | atom_schema_of_rep (Opt R) = atom_schema_of_rep R
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   296
and atom_schema_of_reps Rs = maps atom_schema_of_rep Rs
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   297
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   298
fun type_schema_of_rep _ (Formula _) = []
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   299
  | type_schema_of_rep T (Atom _) = [T]
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 59058
diff changeset
   300
  | type_schema_of_rep (Type (\<^type_name>\<open>prod\<close>, [T1, T2])) (Struct [R1, R2]) =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   301
    type_schema_of_reps [T1, T2] [R1, R2]
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 59058
diff changeset
   302
  | type_schema_of_rep (Type (\<^type_name>\<open>fun\<close>, [_, T2])) (Vect (k, R)) =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   303
    replicate_list k (type_schema_of_rep T2 R)
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 59058
diff changeset
   304
  | type_schema_of_rep (Type (\<^type_name>\<open>fun\<close>, [T1, T2])) (Func (R1, R2)) =
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   305
    type_schema_of_rep T1 R1 @ type_schema_of_rep T2 R2
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 59058
diff changeset
   306
  | type_schema_of_rep (Type (\<^type_name>\<open>set\<close>, [T'])) R =
46083
efeaa79f021b port part of Nitpick to "set" type constructor
blanchet
parents: 39345
diff changeset
   307
    type_schema_of_rep (T' --> bool_T) R
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   308
  | type_schema_of_rep T (Opt R) = type_schema_of_rep T R
35280
54ab4921f826 fixed a few bugs in Nitpick and removed unreferenced variables
blanchet
parents: 34982
diff changeset
   309
  | type_schema_of_rep _ R = raise REP ("Nitpick_Rep.type_schema_of_rep", [R])
33192
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   310
and type_schema_of_reps Ts Rs = flat (map2 type_schema_of_rep Ts Rs)
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   311
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   312
val all_combinations_for_rep = all_combinations o atom_schema_of_rep
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   313
val all_combinations_for_reps = all_combinations o atom_schema_of_reps
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   314
08a39a957ed7 added Nitpick's theory and ML files to Isabelle/HOL;
blanchet
parents:
diff changeset
   315
end;