src/Tools/subtyping.ML
author wenzelm
Wed, 28 Dec 2011 13:00:51 +0100
changeset 46003 c0fe5e8e4864
parent 45935 32f769f94ea4
child 46614 165886a4fe64
permissions -rw-r--r--
print case syntax depending on "show_cases" configuration option;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
     1
(*  Title:      Tools/subtyping.ML
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
     2
    Author:     Dmitriy Traytel, TU Muenchen
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
     3
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
     4
Coercive subtyping via subtype constraints.
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
     5
*)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
     6
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
     7
signature SUBTYPING =
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
     8
sig
40939
2c150063cd4d setup subtyping/coercions once in HOL.thy, but enable it only later via configuration option;
wenzelm
parents: 40938
diff changeset
     9
  val coercion_enabled: bool Config.T
40284
c9acf88447e6 export declarations by default, to allow other ML packages by-pass concrete syntax;
wenzelm
parents: 40283
diff changeset
    10
  val add_type_map: term -> Context.generic -> Context.generic
c9acf88447e6 export declarations by default, to allow other ML packages by-pass concrete syntax;
wenzelm
parents: 40283
diff changeset
    11
  val add_coercion: term -> Context.generic -> Context.generic
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
    12
  val print_coercions: Proof.context -> unit
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
    13
  val print_coercion_maps: Proof.context -> unit
40283
805ce1d64af0 proper signature constraint for ML structure;
wenzelm
parents: 40282
diff changeset
    14
  val setup: theory -> theory
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    15
end;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    16
40283
805ce1d64af0 proper signature constraint for ML structure;
wenzelm
parents: 40282
diff changeset
    17
structure Subtyping: SUBTYPING =
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    18
struct
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    19
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    20
(** coercions data **)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    21
41353
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
    22
datatype variance = COVARIANT | CONTRAVARIANT | INVARIANT | INVARIANT_TO of typ;
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    23
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    24
datatype data = Data of
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    25
  {coes: (term * ((typ list * typ list) * term list)) Symreltab.table,  (*coercions table*)
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    26
   (*full coercions graph - only used at coercion declaration/deletion*)
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    27
   full_graph: int Graph.T,
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    28
   (*coercions graph restricted to base types - for efficiency reasons strored in the context*)
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    29
   coes_graph: int Graph.T,
40282
329cd9dd5949 proper header;
wenzelm
parents: 40281
diff changeset
    30
   tmaps: (term * variance list) Symtab.table};  (*map functions*)
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    31
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    32
fun make_data (coes, full_graph, coes_graph, tmaps) =
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    33
  Data {coes = coes, full_graph = full_graph, coes_graph = coes_graph, tmaps = tmaps};
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    34
45935
32f769f94ea4 meaningful error message on failing merges of coercion tables
traytel
parents: 45429
diff changeset
    35
fun merge_error_coes (a, b) =
32f769f94ea4 meaningful error message on failing merges of coercion tables
traytel
parents: 45429
diff changeset
    36
  error ("Cannot merge coercion tables.\nConflicting declarations for coercions from " ^
32f769f94ea4 meaningful error message on failing merges of coercion tables
traytel
parents: 45429
diff changeset
    37
    quote a ^ " to " ^ quote b ^ ".");
32f769f94ea4 meaningful error message on failing merges of coercion tables
traytel
parents: 45429
diff changeset
    38
32f769f94ea4 meaningful error message on failing merges of coercion tables
traytel
parents: 45429
diff changeset
    39
fun merge_error_tmaps C =
32f769f94ea4 meaningful error message on failing merges of coercion tables
traytel
parents: 45429
diff changeset
    40
  error ("Cannot merge coercion map tables.\nConflicting declarations for the constructor " ^
32f769f94ea4 meaningful error message on failing merges of coercion tables
traytel
parents: 45429
diff changeset
    41
    quote C ^ ".");
32f769f94ea4 meaningful error message on failing merges of coercion tables
traytel
parents: 45429
diff changeset
    42
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    43
structure Data = Generic_Data
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    44
(
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    45
  type T = data;
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    46
  val empty = make_data (Symreltab.empty, Graph.empty, Graph.empty, Symtab.empty);
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    47
  val extend = I;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    48
  fun merge
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    49
    (Data {coes = coes1, full_graph = full_graph1, coes_graph = coes_graph1, tmaps = tmaps1},
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    50
      Data {coes = coes2, full_graph = full_graph2, coes_graph = coes_graph2, tmaps = tmaps2}) =
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    51
    make_data (Symreltab.merge (eq_pair (op aconv)
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    52
        (eq_pair (eq_pair (eq_list (op =)) (eq_list (op =))) (eq_list (op aconv))))
45935
32f769f94ea4 meaningful error message on failing merges of coercion tables
traytel
parents: 45429
diff changeset
    53
        (coes1, coes2) handle Symreltab.DUP key => merge_error_coes key,
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    54
      Graph.merge (op =) (full_graph1, full_graph2),
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    55
      Graph.merge (op =) (coes_graph1, coes_graph2),
45935
32f769f94ea4 meaningful error message on failing merges of coercion tables
traytel
parents: 45429
diff changeset
    56
      Symtab.merge (eq_pair (op aconv) (op =)) (tmaps1, tmaps2)
32f769f94ea4 meaningful error message on failing merges of coercion tables
traytel
parents: 45429
diff changeset
    57
        handle Symtab.DUP key => merge_error_tmaps key);
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    58
);
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    59
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    60
fun map_data f =
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    61
  Data.map (fn Data {coes, full_graph, coes_graph, tmaps} =>
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    62
    make_data (f (coes, full_graph, coes_graph, tmaps)));
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    63
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    64
fun map_coes f =
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    65
  map_data (fn (coes, full_graph, coes_graph, tmaps) =>
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    66
    (f coes, full_graph, coes_graph, tmaps));
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    67
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    68
fun map_coes_graph f =
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    69
  map_data (fn (coes, full_graph, coes_graph, tmaps) =>
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    70
    (coes, full_graph, f coes_graph, tmaps));
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    71
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    72
fun map_coes_and_graphs f =
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    73
  map_data (fn (coes, full_graph, coes_graph, tmaps) =>
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    74
    let val (coes', full_graph', coes_graph') = f (coes, full_graph, coes_graph);
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    75
    in (coes', full_graph', coes_graph', tmaps) end);
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    76
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    77
fun map_tmaps f =
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    78
  map_data (fn (coes, full_graph, coes_graph, tmaps) =>
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    79
    (coes, full_graph, coes_graph, f tmaps));
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    80
40285
80136c4240cc simplified data lookup;
wenzelm
parents: 40284
diff changeset
    81
val rep_data = (fn Data args => args) o Data.get o Context.Proof;
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    82
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    83
val coes_of = #coes o rep_data;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    84
val coes_graph_of = #coes_graph o rep_data;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    85
val tmaps_of = #tmaps o rep_data;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    86
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    87
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    88
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    89
(** utils **)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    90
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    91
fun restrict_graph G =
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    92
  Graph.subgraph (fn key => if Graph.get_node G key = 0 then true else false) G;
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
    93
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    94
fun nameT (Type (s, [])) = s;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    95
fun t_of s = Type (s, []);
40286
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
    96
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    97
fun sort_of (TFree (_, S)) = SOME S
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    98
  | sort_of (TVar (_, S)) = SOME S
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
    99
  | sort_of _ = NONE;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   100
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   101
val is_typeT = fn (Type _) => true | _ => false;
41353
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   102
val is_stypeT = fn (Type (_, [])) => true | _ => false;
40282
329cd9dd5949 proper header;
wenzelm
parents: 40281
diff changeset
   103
val is_compT = fn (Type (_, _ :: _)) => true | _ => false;
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   104
val is_freeT = fn (TFree _) => true | _ => false;
40286
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
   105
val is_fixedvarT = fn (TVar (xi, _)) => not (Type_Infer.is_param xi) | _ => false;
41353
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   106
val is_funtype = fn (Type ("fun", [_, _])) => true | _ => false;
43591
d4cbd6feffdf collapse map functions with identity subcoercions to identities;
traytel
parents: 43278
diff changeset
   107
val is_identity = fn (Abs (_, _, Bound 0)) => true | _ => false;
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   108
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   109
fun instantiate t Ts = Term.subst_TVars
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   110
  ((Term.add_tvar_namesT (fastype_of t) []) ~~ rev Ts) t;
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   111
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   112
exception COERCION_GEN_ERROR of unit -> string;
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   113
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   114
fun inst_collect tye err T U =
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   115
  (case (T, Type_Infer.deref tye U) of
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   116
    (TVar (xi, S), U) => [(xi, U)]
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   117
  | (Type (a, Ts), Type (b, Us)) =>
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   118
      if a <> b then raise error (err ()) else inst_collects tye err Ts Us
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   119
  | (_, U') => if T <> U' then error (err ()) else [])
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   120
and inst_collects tye err Ts Us =
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   121
  fold2 (fn T => fn U => fn is => inst_collect tye err T U @ is) Ts Us [];
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   122
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   123
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   124
(* unification *)
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   125
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   126
exception NO_UNIFIER of string * typ Vartab.table;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   127
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   128
fun unify weak ctxt =
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   129
  let
42361
23f352990944 modernized structure Proof_Context;
wenzelm
parents: 42284
diff changeset
   130
    val thy = Proof_Context.theory_of ctxt;
42386
wenzelm
parents: 42383
diff changeset
   131
    val arity_sorts = Type.arity_sorts (Context.pretty ctxt) (Sign.tsig_of thy);
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   132
40282
329cd9dd5949 proper header;
wenzelm
parents: 40281
diff changeset
   133
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   134
    (* adjust sorts of parameters *)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   135
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   136
    fun not_of_sort x S' S =
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   137
      "Variable " ^ x ^ "::" ^ Syntax.string_of_sort ctxt S' ^ " not of sort " ^
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   138
        Syntax.string_of_sort ctxt S;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   139
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   140
    fun meet (_, []) tye_idx = tye_idx
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   141
      | meet (Type (a, Ts), S) (tye_idx as (tye, _)) =
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   142
          meets (Ts, arity_sorts a S handle ERROR msg => raise NO_UNIFIER (msg, tye)) tye_idx
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   143
      | meet (TFree (x, S'), S) (tye_idx as (tye, _)) =
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   144
          if Sign.subsort thy (S', S) then tye_idx
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   145
          else raise NO_UNIFIER (not_of_sort x S' S, tye)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   146
      | meet (TVar (xi, S'), S) (tye_idx as (tye, idx)) =
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   147
          if Sign.subsort thy (S', S) then tye_idx
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   148
          else if Type_Infer.is_param xi then
40286
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
   149
            (Vartab.update_new
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
   150
              (xi, Type_Infer.mk_param idx (Sign.inter_sort thy (S', S))) tye, idx + 1)
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   151
          else raise NO_UNIFIER (not_of_sort (Term.string_of_vname xi) S' S, tye)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   152
    and meets (T :: Ts, S :: Ss) (tye_idx as (tye, _)) =
40286
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
   153
          meets (Ts, Ss) (meet (Type_Infer.deref tye T, S) tye_idx)
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   154
      | meets _ tye_idx = tye_idx;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   155
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   156
    val weak_meet = if weak then fn _ => I else meet
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   157
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   158
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   159
    (* occurs check and assignment *)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   160
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   161
    fun occurs_check tye xi (TVar (xi', _)) =
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   162
          if xi = xi' then raise NO_UNIFIER ("Occurs check!", tye)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   163
          else
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   164
            (case Vartab.lookup tye xi' of
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   165
              NONE => ()
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   166
            | SOME T => occurs_check tye xi T)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   167
      | occurs_check tye xi (Type (_, Ts)) = List.app (occurs_check tye xi) Ts
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   168
      | occurs_check _ _ _ = ();
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   169
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   170
    fun assign xi (T as TVar (xi', _)) S env =
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   171
          if xi = xi' then env
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   172
          else env |> weak_meet (T, S) |>> Vartab.update_new (xi, T)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   173
      | assign xi T S (env as (tye, _)) =
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   174
          (occurs_check tye xi T; env |> weak_meet (T, S) |>> Vartab.update_new (xi, T));
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   175
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   176
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   177
    (* unification *)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   178
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   179
    fun show_tycon (a, Ts) =
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   180
      quote (Syntax.string_of_typ ctxt (Type (a, replicate (length Ts) dummyT)));
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   181
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   182
    fun unif (T1, T2) (env as (tye, _)) =
40286
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
   183
      (case pairself (`Type_Infer.is_paramT o Type_Infer.deref tye) (T1, T2) of
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   184
        ((true, TVar (xi, S)), (_, T)) => assign xi T S env
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   185
      | ((_, T), (true, TVar (xi, S))) => assign xi T S env
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   186
      | ((_, Type (a, Ts)), (_, Type (b, Us))) =>
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   187
          if weak andalso null Ts andalso null Us then env
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   188
          else if a <> b then
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   189
            raise NO_UNIFIER
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   190
              ("Clash of types " ^ show_tycon (a, Ts) ^ " and " ^ show_tycon (b, Us), tye)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   191
          else fold unif (Ts ~~ Us) env
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   192
      | ((_, T), (_, U)) => if T = U then env else raise NO_UNIFIER ("", tye));
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   193
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   194
  in unif end;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   195
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   196
val weak_unify = unify true;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   197
val strong_unify = unify false;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   198
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   199
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   200
(* Typ_Graph shortcuts *)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   201
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   202
fun get_preds G T = Typ_Graph.all_preds G [T];
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   203
fun get_succs G T = Typ_Graph.all_succs G [T];
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   204
fun maybe_new_typnode T G = perhaps (try (Typ_Graph.new_node (T, ()))) G;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   205
fun maybe_new_typnodes Ts G = fold maybe_new_typnode Ts G;
44338
700008399ee5 refined Graph implementation: more abstract/scalable Graph.Keys instead of plain lists -- order of adjacency is now standardized wrt. Key.ord;
wenzelm
parents: 43591
diff changeset
   206
fun new_imm_preds G Ts =  (* FIXME inefficient *)
700008399ee5 refined Graph implementation: more abstract/scalable Graph.Keys instead of plain lists -- order of adjacency is now standardized wrt. Key.ord;
wenzelm
parents: 43591
diff changeset
   207
  subtract (op =) Ts (distinct (op =) (maps (Typ_Graph.immediate_preds G) Ts));
700008399ee5 refined Graph implementation: more abstract/scalable Graph.Keys instead of plain lists -- order of adjacency is now standardized wrt. Key.ord;
wenzelm
parents: 43591
diff changeset
   208
fun new_imm_succs G Ts =  (* FIXME inefficient *)
700008399ee5 refined Graph implementation: more abstract/scalable Graph.Keys instead of plain lists -- order of adjacency is now standardized wrt. Key.ord;
wenzelm
parents: 43591
diff changeset
   209
  subtract (op =) Ts (distinct (op =) (maps (Typ_Graph.immediate_succs G) Ts));
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   210
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   211
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   212
(* Graph shortcuts *)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   213
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   214
fun maybe_new_node s G = perhaps (try (Graph.new_node s)) G
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   215
fun maybe_new_nodes ss G = fold maybe_new_node ss G
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   216
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   217
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   218
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   219
(** error messages **)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   220
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   221
infixr ++> (* lazy error msg composition *)
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   222
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   223
fun err ++> str = err #> suffix str
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   224
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   225
fun gen_msg err msg =
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   226
  err () ^ "\nNow trying to infer coercions globally.\n\nCoercion inference failed" ^
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   227
  (if msg = "" then "" else ":\n" ^ msg) ^ "\n";
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   228
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   229
fun prep_output ctxt tye bs ts Ts =
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   230
  let
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   231
    val (Ts_bTs', ts') = Type_Infer.finish ctxt tye (Ts @ map snd bs, ts);
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   232
    val (Ts', Ts'') = chop (length Ts) Ts_bTs';
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   233
    fun prep t =
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   234
      let val xs = rev (Term.variant_frees t (rev (map fst bs ~~ Ts'')))
42284
326f57825e1a explicit structure Syntax_Trans;
wenzelm
parents: 41353
diff changeset
   235
      in Term.subst_bounds (map Syntax_Trans.mark_boundT xs, t) end;
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   236
  in (map prep ts', Ts') end;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   237
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   238
fun err_loose i = error ("Loose bound variable: B." ^ string_of_int i);
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   239
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   240
fun unif_failed msg =
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   241
  "Type unification failed" ^ (if msg = "" then "" else ": " ^ msg) ^ "\n\n";
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   242
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   243
fun err_appl_msg ctxt msg tye bs t T u U () =
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   244
  let val ([t', u'], [T', U']) = prep_output ctxt tye bs [t, u] [T, U]
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   245
  in unif_failed msg ^ Type.appl_error ctxt t' T' u' U' ^ "\n" end;
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   246
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   247
fun err_list ctxt msg tye Ts =
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   248
  let
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   249
    val (_, Ts') = prep_output ctxt tye [] [] Ts;
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   250
    val text =
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   251
      msg ^ "\nCannot unify a list of types that should be the same:\n" ^
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   252
        Pretty.string_of (Pretty.list "[" "]" (map (Syntax.pretty_typ ctxt) Ts'));
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   253
  in
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   254
    error text
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   255
  end;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   256
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   257
fun err_bound ctxt msg tye packs =
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   258
  let
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   259
    val (ts, Ts) = fold
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   260
      (fn (bs, t $ u, U, _, U') => fn (ts, Ts) =>
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   261
        let val (t', T') = prep_output ctxt tye bs [t, u] [U', U]
40282
329cd9dd5949 proper header;
wenzelm
parents: 40281
diff changeset
   262
        in (t' :: ts, T' :: Ts) end)
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   263
      packs ([], []);
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   264
    val text = msg ^ "\n" ^ Pretty.string_of (
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   265
        Pretty.big_list "Cannot fulfil subtype constraints:"
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   266
        (map2 (fn [t, u] => fn [T, U] =>
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   267
          Pretty.block [
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   268
            Syntax.pretty_typ ctxt T, Pretty.brk 2, Pretty.str "<:", Pretty.brk 2,
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   269
            Syntax.pretty_typ ctxt U, Pretty.brk 3,
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   270
            Pretty.str "from function application", Pretty.brk 2,
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   271
            Pretty.block [Syntax.pretty_term ctxt (t $ u)]])
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   272
        ts Ts))
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   273
  in
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   274
    error text
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   275
  end;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   276
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   277
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   278
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   279
(** constraint generation **)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   280
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   281
fun generate_constraints ctxt err =
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   282
  let
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   283
    fun gen cs _ (Const (_, T)) tye_idx = (T, tye_idx, cs)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   284
      | gen cs _ (Free (_, T)) tye_idx = (T, tye_idx, cs)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   285
      | gen cs _ (Var (_, T)) tye_idx = (T, tye_idx, cs)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   286
      | gen cs bs (Bound i) tye_idx =
43278
1fbdcebb364b more robust exception pattern General.Subscript;
wenzelm
parents: 42616
diff changeset
   287
          (snd (nth bs i handle General.Subscript => err_loose i), tye_idx, cs)
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   288
      | gen cs bs (Abs (x, T, t)) tye_idx =
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   289
          let val (U, tye_idx', cs') = gen cs ((x, T) :: bs) t tye_idx
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   290
          in (T --> U, tye_idx', cs') end
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   291
      | gen cs bs (t $ u) tye_idx =
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   292
          let
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   293
            val (T, tye_idx', cs') = gen cs bs t tye_idx;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   294
            val (U', (tye, idx), cs'') = gen cs' bs u tye_idx';
40286
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
   295
            val U = Type_Infer.mk_param idx [];
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
   296
            val V = Type_Infer.mk_param (idx + 1) [];
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   297
            val tye_idx'' = strong_unify ctxt (U --> V, T) (tye, idx + 2)
41353
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   298
              handle NO_UNIFIER (msg, _) => error (gen_msg err msg);
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   299
            val error_pack = (bs, t $ u, U, V, U');
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   300
          in (V, (tye_idx''),
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   301
            ((U', U), error_pack) :: cs'') end;
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   302
  in
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   303
    gen [] []
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   304
  end;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   305
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   306
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   307
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   308
(** constraint resolution **)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   309
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   310
exception BOUND_ERROR of string;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   311
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   312
fun process_constraints ctxt err cs tye_idx =
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   313
  let
42388
a44b0fdaa6c2 standardized aliases of operations on tsig;
wenzelm
parents: 42386
diff changeset
   314
    val thy = Proof_Context.theory_of ctxt;
a44b0fdaa6c2 standardized aliases of operations on tsig;
wenzelm
parents: 42386
diff changeset
   315
40285
80136c4240cc simplified data lookup;
wenzelm
parents: 40284
diff changeset
   316
    val coes_graph = coes_graph_of ctxt;
80136c4240cc simplified data lookup;
wenzelm
parents: 40284
diff changeset
   317
    val tmaps = tmaps_of ctxt;
42388
a44b0fdaa6c2 standardized aliases of operations on tsig;
wenzelm
parents: 42386
diff changeset
   318
    val arity_sorts = Type.arity_sorts (Context.pretty ctxt) (Sign.tsig_of thy);
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   319
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   320
    fun split_cs _ [] = ([], [])
40282
329cd9dd5949 proper header;
wenzelm
parents: 40281
diff changeset
   321
      | split_cs f (c :: cs) =
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   322
          (case pairself f (fst c) of
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   323
            (false, false) => apsnd (cons c) (split_cs f cs)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   324
          | _ => apfst (cons c) (split_cs f cs));
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   325
41353
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   326
    fun unify_list (T :: Ts) tye_idx =
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   327
      fold (fn U => fn tye_idx' => strong_unify ctxt (T, U) tye_idx') Ts tye_idx;
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   328
40282
329cd9dd5949 proper header;
wenzelm
parents: 40281
diff changeset
   329
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   330
    (* check whether constraint simplification will terminate using weak unification *)
40282
329cd9dd5949 proper header;
wenzelm
parents: 40281
diff changeset
   331
41353
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   332
    val _ = fold (fn (TU, _) => fn tye_idx =>
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   333
      weak_unify ctxt TU tye_idx handle NO_UNIFIER (msg, _) =>
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   334
        error (gen_msg err ("weak unification of subtype constraints fails\n" ^ msg))) cs tye_idx;
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   335
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   336
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   337
    (* simplify constraints *)
40282
329cd9dd5949 proper header;
wenzelm
parents: 40281
diff changeset
   338
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   339
    fun simplify_constraints cs tye_idx =
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   340
      let
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   341
        fun contract a Ts Us error_pack done todo tye idx =
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   342
          let
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   343
            val arg_var =
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   344
              (case Symtab.lookup tmaps a of
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   345
                (*everything is invariant for unknown constructors*)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   346
                NONE => replicate (length Ts) INVARIANT
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   347
              | SOME av => snd av);
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   348
            fun new_constraints (variance, constraint) (cs, tye_idx) =
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   349
              (case variance of
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   350
                COVARIANT => (constraint :: cs, tye_idx)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   351
              | CONTRAVARIANT => (swap constraint :: cs, tye_idx)
41353
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   352
              | INVARIANT_TO T => (cs, unify_list [T, fst constraint, snd constraint] tye_idx
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   353
                  handle NO_UNIFIER (msg, _) =>
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   354
                    err_list ctxt (gen_msg err
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   355
                      "failed to unify invariant arguments w.r.t. to the known map function" ^ msg)
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   356
                      (fst tye_idx) (T :: Ts))
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   357
              | INVARIANT => (cs, strong_unify ctxt constraint tye_idx
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   358
                  handle NO_UNIFIER (msg, _) =>
41353
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   359
                    error (gen_msg err ("failed to unify invariant arguments" ^ msg))));
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   360
            val (new, (tye', idx')) = apfst (fn cs => (cs ~~ replicate (length cs) error_pack))
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   361
              (fold new_constraints (arg_var ~~ (Ts ~~ Us)) ([], (tye, idx)));
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   362
            val test_update = is_compT orf is_freeT orf is_fixedvarT;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   363
            val (ch, done') =
40286
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
   364
              if not (null new) then ([], done)
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
   365
              else split_cs (test_update o Type_Infer.deref tye') done;
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   366
            val todo' = ch @ todo;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   367
          in
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   368
            simplify done' (new @ todo') (tye', idx')
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   369
          end
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   370
        (*xi is definitely a parameter*)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   371
        and expand varleq xi S a Ts error_pack done todo tye idx =
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   372
          let
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   373
            val n = length Ts;
40286
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
   374
            val args = map2 Type_Infer.mk_param (idx upto idx + n - 1) (arity_sorts a S);
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   375
            val tye' = Vartab.update_new (xi, Type(a, args)) tye;
40286
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
   376
            val (ch, done') = split_cs (is_compT o Type_Infer.deref tye') done;
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   377
            val todo' = ch @ todo;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   378
            val new =
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   379
              if varleq then (Type(a, args), Type (a, Ts))
40286
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
   380
              else (Type (a, Ts), Type (a, args));
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   381
          in
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   382
            simplify done' ((new, error_pack) :: todo') (tye', idx + n)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   383
          end
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   384
        (*TU is a pair of a parameter and a free/fixed variable*)
41353
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   385
        and eliminate TU done todo tye idx =
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   386
          let
40286
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
   387
            val [TVar (xi, S)] = filter Type_Infer.is_paramT TU;
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
   388
            val [T] = filter_out Type_Infer.is_paramT TU;
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   389
            val SOME S' = sort_of T;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   390
            val test_update = if is_freeT T then is_freeT else is_fixedvarT;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   391
            val tye' = Vartab.update_new (xi, T) tye;
40286
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
   392
            val (ch, done') = split_cs (test_update o Type_Infer.deref tye') done;
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   393
            val todo' = ch @ todo;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   394
          in
42388
a44b0fdaa6c2 standardized aliases of operations on tsig;
wenzelm
parents: 42386
diff changeset
   395
            if Sign.subsort thy (S', S) (*TODO check this*)
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   396
            then simplify done' todo' (tye', idx)
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   397
            else error (gen_msg err "sort mismatch")
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   398
          end
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   399
        and simplify done [] tye_idx = (done, tye_idx)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   400
          | simplify done (((T, U), error_pack) :: todo) (tye_idx as (tye, idx)) =
40286
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
   401
              (case (Type_Infer.deref tye T, Type_Infer.deref tye U) of
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   402
                (T1 as Type (a, []), T2 as Type (b, [])) =>
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   403
                  if a = b then simplify done todo tye_idx
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   404
                  else if Graph.is_edge coes_graph (a, b) then simplify done todo tye_idx
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   405
                  else error (gen_msg err (quote (Syntax.string_of_typ ctxt T1) ^
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   406
                    " is not a subtype of " ^ quote (Syntax.string_of_typ ctxt T2)))
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   407
              | (Type (a, Ts), Type (b, Us)) =>
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   408
                  if a <> b then error (gen_msg err "different constructors")
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   409
                    (fst tye_idx) error_pack
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   410
                  else contract a Ts Us error_pack done todo tye idx
40282
329cd9dd5949 proper header;
wenzelm
parents: 40281
diff changeset
   411
              | (TVar (xi, S), Type (a, Ts as (_ :: _))) =>
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   412
                  expand true xi S a Ts error_pack done todo tye idx
40282
329cd9dd5949 proper header;
wenzelm
parents: 40281
diff changeset
   413
              | (Type (a, Ts as (_ :: _)), TVar (xi, S)) =>
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   414
                  expand false xi S a Ts error_pack done todo tye idx
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   415
              | (T, U) =>
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   416
                  if T = U then simplify done todo tye_idx
40282
329cd9dd5949 proper header;
wenzelm
parents: 40281
diff changeset
   417
                  else if exists (is_freeT orf is_fixedvarT) [T, U] andalso
40286
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
   418
                    exists Type_Infer.is_paramT [T, U]
41353
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   419
                  then eliminate [T, U] done todo tye idx
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   420
                  else if exists (is_freeT orf is_fixedvarT) [T, U]
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   421
                  then error (gen_msg err "not eliminated free/fixed variables")
40282
329cd9dd5949 proper header;
wenzelm
parents: 40281
diff changeset
   422
                  else simplify (((T, U), error_pack) :: done) todo tye_idx);
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   423
      in
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   424
        simplify [] cs tye_idx
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   425
      end;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   426
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   427
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   428
    (* do simplification *)
40282
329cd9dd5949 proper header;
wenzelm
parents: 40281
diff changeset
   429
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   430
    val (cs', tye_idx') = simplify_constraints cs tye_idx;
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   431
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   432
    fun find_error_pack lower T' = map_filter
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   433
      (fn ((T, U), pack) => if if lower then T' = U else T' = T then SOME pack else NONE) cs';
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   434
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   435
    fun find_cycle_packs nodes =
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   436
      let
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   437
        val (but_last, last) = split_last nodes
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   438
        val pairs = (last, hd nodes) :: (but_last ~~ tl nodes);
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   439
      in
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   440
        map_filter
40838
d9bd6df700a8 simplified equality on pairs of types;
wenzelm
parents: 40836
diff changeset
   441
          (fn (TU, pack) => if member (op =) pairs TU then SOME pack else NONE)
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   442
          cs'
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   443
      end;
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   444
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   445
    (*styps stands either for supertypes or for subtypes of a type T
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   446
      in terms of the subtype-relation (excluding T itself)*)
40282
329cd9dd5949 proper header;
wenzelm
parents: 40281
diff changeset
   447
    fun styps super T =
44338
700008399ee5 refined Graph implementation: more abstract/scalable Graph.Keys instead of plain lists -- order of adjacency is now standardized wrt. Key.ord;
wenzelm
parents: 43591
diff changeset
   448
      (if super then Graph.immediate_succs else Graph.immediate_preds) coes_graph T
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   449
        handle Graph.UNDEF _ => [];
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   450
40282
329cd9dd5949 proper header;
wenzelm
parents: 40281
diff changeset
   451
    fun minmax sup (T :: Ts) =
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   452
      let
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   453
        fun adjust T U = if sup then (T, U) else (U, T);
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   454
        fun extract T [] = T
40282
329cd9dd5949 proper header;
wenzelm
parents: 40281
diff changeset
   455
          | extract T (U :: Us) =
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   456
              if Graph.is_edge coes_graph (adjust T U) then extract T Us
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   457
              else if Graph.is_edge coes_graph (adjust U T) then extract U Us
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   458
              else raise BOUND_ERROR "uncomparable types in type list";
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   459
      in
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   460
        t_of (extract T Ts)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   461
      end;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   462
40282
329cd9dd5949 proper header;
wenzelm
parents: 40281
diff changeset
   463
    fun ex_styp_of_sort super T styps_and_sorts =
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   464
      let
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   465
        fun adjust T U = if super then (T, U) else (U, T);
40282
329cd9dd5949 proper header;
wenzelm
parents: 40281
diff changeset
   466
        fun styp_test U Ts = forall
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   467
          (fn T => T = U orelse Graph.is_edge coes_graph (adjust U T)) Ts;
42388
a44b0fdaa6c2 standardized aliases of operations on tsig;
wenzelm
parents: 42386
diff changeset
   468
        fun fitting Ts S U = Sign.of_sort thy (t_of U, S) andalso styp_test U Ts
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   469
      in
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   470
        forall (fn (Ts, S) => exists (fitting Ts S) (T :: styps super T)) styps_and_sorts
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   471
      end;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   472
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   473
    (* computes the tightest possible, correct assignment for 'a::S
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   474
       e.g. in the supremum case (sup = true):
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   475
               ------- 'a::S---
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   476
              /        /    \  \
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   477
             /        /      \  \
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   478
        'b::C1   'c::C2 ...  T1 T2 ...
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   479
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   480
       sorts - list of sorts [C1, C2, ...]
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   481
       T::Ts - non-empty list of base types [T1, T2, ...]
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   482
    *)
40282
329cd9dd5949 proper header;
wenzelm
parents: 40281
diff changeset
   483
    fun tightest sup S styps_and_sorts (T :: Ts) =
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   484
      let
42388
a44b0fdaa6c2 standardized aliases of operations on tsig;
wenzelm
parents: 42386
diff changeset
   485
        fun restriction T = Sign.of_sort thy (t_of T, S)
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   486
          andalso ex_styp_of_sort (not sup) T styps_and_sorts;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   487
        fun candidates T = inter (op =) (filter restriction (T :: styps sup T));
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   488
      in
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   489
        (case fold candidates Ts (filter restriction (T :: styps sup T)) of
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   490
          [] => raise BOUND_ERROR ("no " ^ (if sup then "supremum" else "infimum"))
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   491
        | [T] => t_of T
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   492
        | Ts => minmax sup Ts)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   493
      end;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   494
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   495
    fun build_graph G [] tye_idx = (G, tye_idx)
40282
329cd9dd5949 proper header;
wenzelm
parents: 40281
diff changeset
   496
      | build_graph G ((T, U) :: cs) tye_idx =
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   497
        if T = U then build_graph G cs tye_idx
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   498
        else
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   499
          let
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   500
            val G' = maybe_new_typnodes [T, U] G;
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   501
            val (G'', tye_idx') = (Typ_Graph.add_edge_acyclic (T, U) G', tye_idx)
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   502
              handle Typ_Graph.CYCLES cycles =>
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   503
                let
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   504
                  val (tye, idx) =
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   505
                    fold
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   506
                      (fn cycle => fn tye_idx' => (unify_list cycle tye_idx'
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   507
                        handle NO_UNIFIER (msg, _) =>
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   508
                          err_bound ctxt
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   509
                            (gen_msg err ("constraint cycle not unifiable" ^ msg)) (fst tye_idx)
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   510
                            (find_cycle_packs cycle)))
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   511
                      cycles tye_idx
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   512
                in
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   513
                  collapse (tye, idx) cycles G
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   514
                end
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   515
          in
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   516
            build_graph G'' cs tye_idx'
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   517
          end
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   518
    and collapse (tye, idx) cycles G = (*nodes non-empty list*)
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   519
      let
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   520
        (*all cycles collapse to one node,
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   521
          because all of them share at least the nodes x and y*)
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   522
        val nodes = (distinct (op =) (flat cycles));
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   523
        val T = Type_Infer.deref tye (hd nodes);
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   524
        val P = new_imm_preds G nodes;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   525
        val S = new_imm_succs G nodes;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   526
        val G' = Typ_Graph.del_nodes (tl nodes) G;
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   527
        fun check_and_gen super T' =
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   528
          let val U = Type_Infer.deref tye T';
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   529
          in
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   530
            if not (is_typeT T) orelse not (is_typeT U) orelse T = U
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   531
            then if super then (hd nodes, T') else (T', hd nodes)
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   532
            else
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   533
              if super andalso
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   534
                Graph.is_edge coes_graph (nameT T, nameT U) then (hd nodes, T')
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   535
              else if not super andalso
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   536
                Graph.is_edge coes_graph (nameT U, nameT T) then (T', hd nodes)
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   537
              else err_bound ctxt (gen_msg err "cycle elimination produces inconsistent graph")
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   538
                    (fst tye_idx)
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   539
                    (maps find_cycle_packs cycles @ find_error_pack super T')
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   540
          end;
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   541
      in
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   542
        build_graph G' (map (check_and_gen false) P @ map (check_and_gen true) S) (tye, idx)
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   543
      end;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   544
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   545
    fun assign_bound lower G key (tye_idx as (tye, _)) =
40286
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
   546
      if Type_Infer.is_paramT (Type_Infer.deref tye key) then
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   547
        let
40286
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
   548
          val TVar (xi, S) = Type_Infer.deref tye key;
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   549
          val get_bound = if lower then get_preds else get_succs;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   550
          val raw_bound = get_bound G key;
40286
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
   551
          val bound = map (Type_Infer.deref tye) raw_bound;
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
   552
          val not_params = filter_out Type_Infer.is_paramT bound;
40282
329cd9dd5949 proper header;
wenzelm
parents: 40281
diff changeset
   553
          fun to_fulfil T =
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   554
            (case sort_of T of
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   555
              NONE => NONE
40282
329cd9dd5949 proper header;
wenzelm
parents: 40281
diff changeset
   556
            | SOME S =>
40286
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
   557
                SOME
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
   558
                  (map nameT
42405
13ecdb3057d8 split Type_Infer into early and late part, after Proof_Context;
wenzelm
parents: 42402
diff changeset
   559
                    (filter_out Type_Infer.is_paramT
13ecdb3057d8 split Type_Infer into early and late part, after Proof_Context;
wenzelm
parents: 42402
diff changeset
   560
                      (map (Type_Infer.deref tye) (get_bound G T))), S));
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   561
          val styps_and_sorts = distinct (op =) (map_filter to_fulfil raw_bound);
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   562
          val assignment =
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   563
            if null bound orelse null not_params then NONE
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   564
            else SOME (tightest lower S styps_and_sorts (map nameT not_params)
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   565
                handle BOUND_ERROR msg =>
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   566
                  err_bound ctxt (gen_msg err msg) tye (find_error_pack lower key))
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   567
        in
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   568
          (case assignment of
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   569
            NONE => tye_idx
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   570
          | SOME T =>
40286
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
   571
              if Type_Infer.is_paramT T then tye_idx
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   572
              else if lower then (*upper bound check*)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   573
                let
40286
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
   574
                  val other_bound = map (Type_Infer.deref tye) (get_succs G key);
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   575
                  val s = nameT T;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   576
                in
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   577
                  if subset (op = o apfst nameT) (filter is_typeT other_bound, s :: styps true s)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   578
                  then apfst (Vartab.update (xi, T)) tye_idx
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   579
                  else err_bound ctxt (gen_msg err ("assigned base type " ^
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   580
                    quote (Syntax.string_of_typ ctxt T) ^
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   581
                    " clashes with the upper bound of variable " ^
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   582
                    Syntax.string_of_typ ctxt (TVar(xi, S)))) tye (find_error_pack (not lower) key)
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   583
                end
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   584
              else apfst (Vartab.update (xi, T)) tye_idx)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   585
        end
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   586
      else tye_idx;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   587
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   588
    val assign_lb = assign_bound true;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   589
    val assign_ub = assign_bound false;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   590
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   591
    fun assign_alternating ts' ts G tye_idx =
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   592
      if ts' = ts then tye_idx
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   593
      else
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   594
        let
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   595
          val (tye_idx' as (tye, _)) = fold (assign_lb G) ts tye_idx
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   596
            |> fold (assign_ub G) ts;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   597
        in
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   598
          assign_alternating ts
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   599
            (filter (Type_Infer.is_paramT o Type_Infer.deref tye) ts) G tye_idx'
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   600
        end;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   601
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   602
    (*Unify all weakly connected components of the constraint forest,
40282
329cd9dd5949 proper header;
wenzelm
parents: 40281
diff changeset
   603
      that contain only params. These are the only WCCs that contain
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   604
      params anyway.*)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   605
    fun unify_params G (tye_idx as (tye, _)) =
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   606
      let
40286
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
   607
        val max_params =
b928e3960446 more sharing of operations, without aliases;
wenzelm
parents: 40285
diff changeset
   608
          filter (Type_Infer.is_paramT o Type_Infer.deref tye) (Typ_Graph.maximals G);
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   609
        val to_unify = map (fn T => T :: get_preds G T) max_params;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   610
      in
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   611
        fold
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   612
          (fn Ts => fn tye_idx' => unify_list Ts tye_idx'
41353
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   613
            handle NO_UNIFIER (msg, _) => err_list ctxt (gen_msg err msg) (fst tye_idx) Ts)
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   614
          to_unify tye_idx
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   615
      end;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   616
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   617
    fun solve_constraints G tye_idx = tye_idx
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   618
      |> assign_alternating [] (Typ_Graph.keys G) G
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   619
      |> unify_params G;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   620
  in
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   621
    build_graph Typ_Graph.empty (map fst cs') tye_idx'
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   622
      |-> solve_constraints
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   623
  end;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   624
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   625
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   626
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   627
(** coercion insertion **)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   628
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   629
fun gen_coercion ctxt err tye TU =
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   630
  let
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   631
    fun gen (T1, T2) = (case pairself (Type_Infer.deref tye) (T1, T2) of
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   632
        (T1 as (Type (a, [])), T2 as (Type (b, []))) =>
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   633
            if a = b
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   634
            then Abs (Name.uu, Type (a, []), Bound 0)
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   635
            else
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   636
              (case Symreltab.lookup (coes_of ctxt) (a, b) of
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   637
                NONE => raise COERCION_GEN_ERROR (err ++> quote (Syntax.string_of_typ ctxt T1) ^
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   638
                  " is not a subtype of " ^ quote (Syntax.string_of_typ ctxt T2))
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   639
              | SOME (co, _) => co)
45102
7bb89635eb51 correct coercion generation in case of unknown map functions
traytel
parents: 45060
diff changeset
   640
      | (T1 as Type (a, Ts), T2 as Type (b, Us)) =>
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   641
            if a <> b
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   642
            then
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   643
              (case Symreltab.lookup (coes_of ctxt) (a, b) of
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   644
                (*immediate error - cannot fix complex coercion with the global algorithm*)
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   645
                NONE => error (err () ^ "No coercion known for type constructors: " ^
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   646
                  quote a ^ " and " ^ quote b)
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   647
              | SOME (co, ((Ts', Us'), _)) =>
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   648
                  let
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   649
                    val co_before = gen (T1, Type (a, Ts'));
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   650
                    val coT = range_type (fastype_of co_before);
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   651
                    val insts = inst_collect tye (err ++> "Could not insert complex coercion")
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   652
                      (domain_type (fastype_of co)) coT;
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   653
                    val co' = Term.subst_TVars insts co;
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   654
                    val co_after = gen (Type (b, (map (typ_subst_TVars insts) Us')), T2);
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   655
                  in
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   656
                    Abs (Name.uu, T1, Library.foldr (op $)
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   657
                      (filter (not o is_identity) [co_after, co', co_before], Bound 0))
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   658
                  end)
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   659
            else
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   660
              let
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   661
                fun sub_co (COVARIANT, TU) = SOME (gen TU)
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   662
                  | sub_co (CONTRAVARIANT, TU) = SOME (gen (swap TU))
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   663
                  | sub_co (INVARIANT_TO _, _) = NONE;
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   664
                fun ts_of [] = []
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   665
                  | ts_of (Type ("fun", [x1, x2]) :: xs) = x1 :: x2 :: (ts_of xs);
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   666
              in
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   667
                (case Symtab.lookup (tmaps_of ctxt) a of
45102
7bb89635eb51 correct coercion generation in case of unknown map functions
traytel
parents: 45060
diff changeset
   668
                  NONE =>
7bb89635eb51 correct coercion generation in case of unknown map functions
traytel
parents: 45060
diff changeset
   669
                    if Type.could_unify (T1, T2)
7bb89635eb51 correct coercion generation in case of unknown map functions
traytel
parents: 45060
diff changeset
   670
                    then Abs (Name.uu, T1, Bound 0)
7bb89635eb51 correct coercion generation in case of unknown map functions
traytel
parents: 45060
diff changeset
   671
                    else raise COERCION_GEN_ERROR
7bb89635eb51 correct coercion generation in case of unknown map functions
traytel
parents: 45060
diff changeset
   672
                      (err ++> "No map function for " ^ quote a ^ " known")
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   673
                | SOME tmap =>
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   674
                    let
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   675
                      val used_coes = map_filter sub_co ((snd tmap) ~~ (Ts ~~ Us));
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   676
                    in
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   677
                      if null (filter (not o is_identity) used_coes)
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   678
                      then Abs (Name.uu, Type (a, Ts), Bound 0)
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   679
                      else Term.list_comb
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   680
                        (instantiate (fst tmap) (ts_of (map fastype_of used_coes)), used_coes)
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   681
                    end)
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   682
              end
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   683
      | (T, U) =>
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   684
            if Type.could_unify (T, U)
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   685
            then Abs (Name.uu, T, Bound 0)
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   686
            else raise COERCION_GEN_ERROR (err ++> "Cannot generate coercion from " ^
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   687
              quote (Syntax.string_of_typ ctxt T) ^ " to " ^
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   688
              quote (Syntax.string_of_typ ctxt U)));
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   689
  in
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   690
    gen TU
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   691
  end;
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   692
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   693
fun function_of ctxt err tye T =
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   694
  (case Type_Infer.deref tye T of
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   695
    Type (C, Ts) =>
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   696
      (case Symreltab.lookup (coes_of ctxt) (C, "fun") of
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   697
        NONE => error (err () ^ "No complex coercion from " ^ quote C ^ " to fun")
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   698
      | SOME (co, ((Ts', _), _)) =>
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   699
        let
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   700
          val co_before = gen_coercion ctxt err tye (Type (C, Ts), Type (C, Ts'));
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   701
          val coT = range_type (fastype_of co_before);
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   702
          val insts = inst_collect tye (err ++> "Could not insert complex coercion")
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   703
            (domain_type (fastype_of co)) coT;
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   704
          val co' = Term.subst_TVars insts co;
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   705
        in
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   706
          Abs (Name.uu, Type (C, Ts), Library.foldr (op $)
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   707
            (filter (not o is_identity) [co', co_before], Bound 0))
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   708
        end)
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   709
  | T' => error (err () ^ "No complex coercion from " ^
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   710
      quote (Syntax.string_of_typ ctxt T') ^ " to fun"));
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   711
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   712
fun insert_coercions ctxt (tye, idx) ts =
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   713
  let
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   714
    fun insert _ (Const (c, T)) = (Const (c, T), T)
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   715
      | insert _ (Free (x, T)) = (Free (x, T), T)
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   716
      | insert _ (Var (xi, T)) = (Var (xi, T), T)
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   717
      | insert bs (Bound i) =
43278
1fbdcebb364b more robust exception pattern General.Subscript;
wenzelm
parents: 42616
diff changeset
   718
          let val T = nth bs i handle General.Subscript => err_loose i;
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   719
          in (Bound i, T) end
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   720
      | insert bs (Abs (x, T, t)) =
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   721
          let val (t', T') = insert (T :: bs) t;
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   722
          in (Abs (x, T, t'), T --> T') end
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   723
      | insert bs (t $ u) =
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   724
          let
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   725
            val (t', Type ("fun", [U, T])) = apsnd (Type_Infer.deref tye) (insert bs t);
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   726
            val (u', U') = insert bs u;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   727
          in
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   728
            if can (fn TU => strong_unify ctxt TU (tye, 0)) (U, U')
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   729
            then (t' $ u', T)
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   730
            else (t' $ (gen_coercion ctxt (K "") tye (U', U) $ u'), T)
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   731
          end
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   732
  in
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   733
    map (fst o insert []) ts
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   734
  end;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   735
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   736
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   737
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   738
(** assembling the pipeline **)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   739
42398
919e17c0358e tuned signature;
wenzelm
parents: 42388
diff changeset
   740
fun coercion_infer_types ctxt raw_ts =
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   741
  let
42405
13ecdb3057d8 split Type_Infer into early and late part, after Proof_Context;
wenzelm
parents: 42402
diff changeset
   742
    val (idx, ts) = Type_Infer_Context.prepare ctxt raw_ts;
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   743
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   744
    fun inf _ (t as (Const (_, T))) tye_idx = (t, T, tye_idx)
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   745
      | inf _ (t as (Free (_, T))) tye_idx = (t, T, tye_idx)
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   746
      | inf _ (t as (Var (_, T))) tye_idx = (t, T, tye_idx)
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   747
      | inf bs (t as (Bound i)) tye_idx =
43278
1fbdcebb364b more robust exception pattern General.Subscript;
wenzelm
parents: 42616
diff changeset
   748
          (t, snd (nth bs i handle General.Subscript => err_loose i), tye_idx)
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   749
      | inf bs (Abs (x, T, t)) tye_idx =
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   750
          let val (t', U, tye_idx') = inf ((x, T) :: bs) t tye_idx
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   751
          in (Abs (x, T, t'), T --> U, tye_idx') end
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   752
      | inf bs (t $ u) tye_idx =
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   753
          let
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   754
            val (t', T, tye_idx') = inf bs t tye_idx;
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   755
            val (u', U, (tye, idx)) = inf bs u tye_idx';
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   756
            val V = Type_Infer.mk_param idx [];
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   757
            val (tu, tye_idx'') = (t' $ u', strong_unify ctxt (U --> V, T) (tye, idx + 1))
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   758
              handle NO_UNIFIER (msg, tye') =>
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   759
                let
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   760
                  val err = err_appl_msg ctxt msg tye' bs t T u U;
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   761
                  val W = Type_Infer.mk_param (idx + 1) [];
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   762
                  val (t'', (tye', idx')) =
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   763
                    (t', strong_unify ctxt (W --> V, T) (tye, idx + 2))
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   764
                      handle NO_UNIFIER _ =>
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   765
                        let
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   766
                          val err' =
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   767
                            err ++> "\nLocal coercion insertion on the operator failed:\n";
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   768
                          val co = function_of ctxt err' tye T;
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   769
                          val (t'', T'', tye_idx'') = inf bs (co $ t') (tye, idx + 2);
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   770
                        in
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   771
                          (t'', strong_unify ctxt (W --> V, T'') tye_idx''
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   772
                             handle NO_UNIFIER (msg, _) => error (err' () ^ msg))
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   773
                        end;
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   774
                  val err' = err ++> (if t' aconv t'' then ""
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   775
                    else "\nSuccessfully coerced the operand to a function of type:\n" ^
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   776
                      Syntax.string_of_typ ctxt
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   777
                        (the_single (snd (prep_output ctxt tye' bs [] [W --> V]))) ^ "\n") ^
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   778
                      "\nLocal coercion insertion on the operand failed:\n";
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   779
                  val co = gen_coercion ctxt err' tye' (U, W);
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   780
                  val (u'', U', tye_idx') =
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   781
                    inf bs (if is_identity co then u else co $ u) (tye', idx');
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   782
                in
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   783
                  (t'' $ u'', strong_unify ctxt (U', W) tye_idx'
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   784
                    handle NO_UNIFIER (msg, _) => raise COERCION_GEN_ERROR (err' ++> msg))
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   785
                end;
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   786
          in (tu, V, tye_idx'') end;
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   787
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   788
    fun infer_single t tye_idx =
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   789
      let val (t, _, tye_idx') = inf [] t tye_idx
40938
e258f6817add use "fold_map" instead of "fold (fn .. => .. (ts @ [t], ..)) .."
traytel
parents: 40840
diff changeset
   790
      in (t, tye_idx') end;
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   791
40938
e258f6817add use "fold_map" instead of "fold (fn .. => .. (ts @ [t], ..)) .."
traytel
parents: 40840
diff changeset
   792
    val (ts', (tye, _)) = (fold_map infer_single ts (Vartab.empty, idx)
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   793
      handle COERCION_GEN_ERROR err =>
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   794
        let
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   795
          fun gen_single t (tye_idx, constraints) =
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   796
            let val (_, tye_idx', constraints') =
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   797
              generate_constraints ctxt (err ++> "\n") t tye_idx
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   798
            in (tye_idx', constraints' @ constraints) end;
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   799
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   800
          val (tye_idx, constraints) = fold gen_single ts ((Vartab.empty, idx), []);
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   801
          val (tye, idx) = process_constraints ctxt (err ++> "\n") constraints tye_idx;
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   802
        in
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   803
          (insert_coercions ctxt (tye, idx) ts, (tye, idx))
40836
a81d66d72e70 two-staged architecture for subtyping;
traytel
parents: 40297
diff changeset
   804
        end);
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   805
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   806
    val (_, ts'') = Type_Infer.finish ctxt tye ([], ts');
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   807
  in ts'' end;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   808
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   809
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   810
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   811
(** installation **)
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   812
40283
805ce1d64af0 proper signature constraint for ML structure;
wenzelm
parents: 40282
diff changeset
   813
(* term check *)
805ce1d64af0 proper signature constraint for ML structure;
wenzelm
parents: 40282
diff changeset
   814
42616
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 42405
diff changeset
   815
val coercion_enabled = Attrib.setup_config_bool @{binding coercion_enabled} (K false);
40939
2c150063cd4d setup subtyping/coercions once in HOL.thy, but enable it only later via configuration option;
wenzelm
parents: 40938
diff changeset
   816
40283
805ce1d64af0 proper signature constraint for ML structure;
wenzelm
parents: 40282
diff changeset
   817
val add_term_check =
45429
fd58cbf8cae3 tuned signature;
wenzelm
parents: 45102
diff changeset
   818
  Syntax_Phases.term_check ~100 "coercions"
42402
c7139609b67d simplified check/uncheck interfaces: result comparison is hardwired by default;
wenzelm
parents: 42398
diff changeset
   819
    (fn ctxt => Config.get ctxt coercion_enabled ? coercion_infer_types ctxt);
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   820
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   821
40283
805ce1d64af0 proper signature constraint for ML structure;
wenzelm
parents: 40282
diff changeset
   822
(* declarations *)
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   823
40284
c9acf88447e6 export declarations by default, to allow other ML packages by-pass concrete syntax;
wenzelm
parents: 40283
diff changeset
   824
fun add_type_map raw_t context =
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   825
  let
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   826
    val ctxt = Context.proof_of context;
40284
c9acf88447e6 export declarations by default, to allow other ML packages by-pass concrete syntax;
wenzelm
parents: 40283
diff changeset
   827
    val t = singleton (Variable.polymorphic ctxt) raw_t;
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   828
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   829
    fun err_str t = "\n\nThe provided function has the type:\n" ^
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   830
      Syntax.string_of_typ ctxt (fastype_of t) ^
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   831
      "\n\nThe general type signature of a map function is:" ^
41353
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   832
      "\nf1 => f2 => ... => fn => C [x1, ..., xn] => C [y1, ..., yn]" ^
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   833
      "\nwhere C is a constructor and fi is of type (xi => yi) or (yi => xi).";
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   834
41353
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   835
    val ((fis, T1), T2) = apfst split_last (strip_type (fastype_of t))
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   836
      handle Empty => error ("Not a proper map function:" ^ err_str t);
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   837
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   838
    fun gen_arg_var ([], []) = []
40282
329cd9dd5949 proper header;
wenzelm
parents: 40281
diff changeset
   839
      | gen_arg_var ((T, T') :: Ts, (U, U') :: Us) =
41353
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   840
          if U = U' then
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   841
            if is_stypeT U then INVARIANT_TO U :: gen_arg_var ((T, T') :: Ts, Us)
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   842
            else error ("Invariant xi and yi should be base types:" ^ err_str t)
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   843
          else if T = U andalso T' = U' then COVARIANT :: gen_arg_var (Ts, Us)
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   844
          else if T = U' andalso T' = U then CONTRAVARIANT :: gen_arg_var (Ts, Us)
41353
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   845
          else error ("Functions do not apply to arguments correctly:" ^ err_str t)
42383
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   846
      | gen_arg_var (_, Ts) =
0ae4ad40d7b5 simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents: 42361
diff changeset
   847
          if forall (op = andf is_stypeT o fst) Ts
41353
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   848
          then map (INVARIANT_TO o fst) Ts
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   849
          else error ("Different numbers of functions and variant arguments\n" ^ err_str t);
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   850
41353
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   851
    (*retry flag needed to adjust the type lists, when given a map over type constructor fun*)
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   852
    fun check_map_fun fis (Type (C1, Ts)) (Type (C2, Us)) retry =
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   853
          if C1 = C2 andalso not (null fis) andalso forall is_funtype fis
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   854
          then ((map dest_funT fis, Ts ~~ Us), C1)
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   855
          else error ("Not a proper map function:" ^ err_str t)
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   856
      | check_map_fun fis T1 T2 true =
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   857
          let val (fis', T') = split_last fis
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   858
          in check_map_fun fis' T' (T1 --> T2) false end
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   859
      | check_map_fun _ _ _ _ = error ("Not a proper map function:" ^ err_str t);
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   860
41353
684003dbda54 Enabled non fully polymorphic map functions in subtyping
traytel
parents: 40939
diff changeset
   861
    val res = check_map_fun fis T1 T2 true;
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   862
    val res_av = gen_arg_var (fst res);
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   863
  in
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   864
    map_tmaps (Symtab.update (snd res, (t, res_av))) context
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   865
  end;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   866
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   867
fun transitive_coercion ctxt tab G (a, b) =
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   868
  let
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   869
    fun safe_app t (Abs (x, T', u)) =
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   870
      let
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   871
        val t' = map_types Type_Infer.paramify_vars t;
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   872
      in
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   873
        singleton (coercion_infer_types ctxt) (Abs(x, T', (t' $ u)))
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   874
      end;
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   875
    val path = hd (Graph.irreducible_paths G (a, b));
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   876
    val path' = fst (split_last path) ~~ tl path;
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   877
    val coercions = map (fst o the o Symreltab.lookup tab) path';
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   878
    val trans_co = singleton (Variable.polymorphic ctxt)
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   879
      (fold safe_app coercions (Abs (Name.uu, dummyT, Bound 0)));
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   880
    val (Ts, Us) = pairself (snd o Term.dest_Type) (Term.dest_funT (type_of trans_co))
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   881
  in
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   882
    (trans_co, ((Ts, Us), coercions))
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   883
  end;
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   884
40284
c9acf88447e6 export declarations by default, to allow other ML packages by-pass concrete syntax;
wenzelm
parents: 40283
diff changeset
   885
fun add_coercion raw_t context =
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   886
  let
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   887
    val ctxt = Context.proof_of context;
40284
c9acf88447e6 export declarations by default, to allow other ML packages by-pass concrete syntax;
wenzelm
parents: 40283
diff changeset
   888
    val t = singleton (Variable.polymorphic ctxt) raw_t;
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   889
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   890
    fun err_coercion () = error ("Bad type for a coercion:\n" ^
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   891
        Syntax.string_of_term ctxt t ^ " :: " ^
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   892
        Syntax.string_of_typ ctxt (fastype_of t));
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   893
40840
2f97215e79bf just one Term.dest_funT;
wenzelm
parents: 40838
diff changeset
   894
    val (T1, T2) = Term.dest_funT (fastype_of t)
2f97215e79bf just one Term.dest_funT;
wenzelm
parents: 40838
diff changeset
   895
      handle TYPE _ => err_coercion ();
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   896
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   897
    val (a, Ts) = Term.dest_Type T1
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   898
      handle TYPE _ => err_coercion ();
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   899
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   900
    val (b, Us) = Term.dest_Type T2
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   901
      handle TYPE _ => err_coercion ();
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   902
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   903
    fun coercion_data_update (tab, G, _) =
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   904
      let
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   905
        val G' = maybe_new_nodes [(a, length Ts), (b, length Us)] G
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   906
        val G'' = Graph.add_edge_trans_acyclic (a, b) G'
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   907
          handle Graph.CYCLES _ => error (
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   908
            Syntax.string_of_typ ctxt T2 ^ " is already a subtype of " ^
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   909
            Syntax.string_of_typ ctxt T1 ^ "!\n\nCannot add coercion of type: " ^
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   910
            Syntax.string_of_typ ctxt (T1 --> T2));
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   911
        val new_edges =
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   912
          flat (Graph.dest G'' |> map (fn (x, ys) => ys |> map_filter (fn y =>
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   913
            if Graph.is_edge G' (x, y) then NONE else SOME (x, y))));
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   914
        val G_and_new = Graph.add_edge (a, b) G';
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   915
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   916
        val tab' = fold
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   917
          (fn pair => fn tab =>
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   918
            Symreltab.update (pair, transitive_coercion ctxt tab G_and_new pair) tab)
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   919
          (filter (fn pair => pair <> (a, b)) new_edges)
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   920
          (Symreltab.update ((a, b), (t, ((Ts, Us), []))) tab);
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   921
      in
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   922
        (tab', G'', restrict_graph G'')
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   923
      end;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   924
  in
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   925
    map_coes_and_graphs coercion_data_update context
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   926
  end;
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
   927
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   928
fun delete_coercion raw_t context =
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   929
  let
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   930
    val ctxt = Context.proof_of context;
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   931
    val t = singleton (Variable.polymorphic ctxt) raw_t;
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   932
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   933
    fun err_coercion the = error ("Not" ^
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   934
        (if the then " the defined " else  " a ") ^ "coercion:\n" ^
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   935
        Syntax.string_of_term ctxt t ^ " :: " ^
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   936
        Syntax.string_of_typ ctxt (fastype_of t));
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   937
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   938
    val (T1, T2) = Term.dest_funT (fastype_of t)
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   939
      handle TYPE _ => err_coercion false;
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   940
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   941
    val (a, Ts) = dest_Type T1
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   942
      handle TYPE _ => err_coercion false;
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   943
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   944
    val (b, Us) = dest_Type T2
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   945
      handle TYPE _ => err_coercion false;
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   946
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   947
    fun delete_and_insert tab G =
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   948
      let
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   949
        val pairs =
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   950
          Symreltab.fold (fn ((a, b), (_, (_, ts))) => fn pairs =>
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   951
            if member (op aconv) ts t then (a, b) :: pairs else pairs) tab [(a, b)];
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   952
        fun delete pair (G, tab) = (Graph.del_edge pair G, Symreltab.delete_safe pair tab);
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   953
        val (G', tab') = fold delete pairs (G, tab);
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   954
        fun reinsert pair (G, xs) = (case (Graph.irreducible_paths G pair) of
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   955
              [] => (G, xs)
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   956
            | _ => (Graph.add_edge pair G, (pair, transitive_coercion ctxt tab' G' pair) :: xs));
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   957
        val (G'', ins) = fold reinsert pairs (G', []);
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   958
      in
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   959
        (fold Symreltab.update ins tab', G'', restrict_graph G'')
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   960
      end
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   961
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   962
    fun show_term t = Pretty.block [Syntax.pretty_term ctxt t,
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   963
      Pretty.str " :: ", Syntax.pretty_typ ctxt (fastype_of t)]
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   964
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   965
    fun coercion_data_update (tab, G, _) =
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   966
        (case Symreltab.lookup tab (a, b) of
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   967
          NONE => err_coercion false
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   968
        | SOME (t', (_, [])) => if t aconv t'
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   969
            then delete_and_insert tab G
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   970
            else err_coercion true
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   971
        | SOME (t', (_, ts)) => if t aconv t'
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   972
            then error ("Cannot delete the automatically derived coercion:\n" ^
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   973
              Syntax.string_of_term ctxt t ^ " :: " ^
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   974
              Syntax.string_of_typ ctxt (fastype_of t) ^
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   975
              Pretty.string_of (Pretty.big_list "\n\nDeleting one of the coercions:"
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   976
                (map show_term ts)) ^
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   977
              "\nwill also remove the transitive coercion.")
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   978
            else err_coercion true);
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   979
  in
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   980
    map_coes_and_graphs coercion_data_update context
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   981
  end;
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   982
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   983
fun print_coercions ctxt =
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   984
  let
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   985
    fun separate _ [] = ([], [])
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   986
      | separate P (x::xs) = (if P x then apfst else apsnd) (cons x) (separate P xs);
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   987
    val (simple, complex) =
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   988
      separate (fn (_, (_, ((Ts, Us), _))) => null Ts andalso null Us)
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   989
        (Symreltab.dest (coes_of ctxt));
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   990
    fun show_coercion ((a, b), (t, ((Ts, Us), _))) = Pretty.block [
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   991
      Syntax.pretty_typ ctxt (Type (a, Ts)),
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   992
      Pretty.brk 1, Pretty.str "<:", Pretty.brk 1,
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   993
      Syntax.pretty_typ ctxt (Type (b, Us)),
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   994
      Pretty.brk 3, Pretty.block [Pretty.str "using", Pretty.brk 1,
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   995
      Pretty.quote (Syntax.pretty_term ctxt t)]];
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
   996
  in
45060
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   997
    Pretty.big_list "Coercions:"
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   998
    [Pretty.big_list "between base types:" (map show_coercion simple),
9c2568c0a504 local coercion insertion algorithm to support complex coercions
traytel
parents: 45059
diff changeset
   999
     Pretty.big_list "other:" (map show_coercion complex)]
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
  1000
    |> Pretty.writeln
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
  1001
  end;
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
  1002
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
  1003
fun print_coercion_maps ctxt =
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
  1004
  let
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
  1005
    fun show_map (x, (t, _)) = Pretty.block [
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
  1006
      Pretty.str x, Pretty.str ":", Pretty.brk 1,
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
  1007
      Pretty.quote (Syntax.pretty_term ctxt t)];
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
  1008
  in
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
  1009
    Pretty.big_list "Coercion maps:" (map show_map (Symtab.dest (tmaps_of ctxt)))
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
  1010
    |> Pretty.writeln
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
  1011
  end;
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
  1012
40283
805ce1d64af0 proper signature constraint for ML structure;
wenzelm
parents: 40282
diff changeset
  1013
805ce1d64af0 proper signature constraint for ML structure;
wenzelm
parents: 40282
diff changeset
  1014
(* theory setup *)
805ce1d64af0 proper signature constraint for ML structure;
wenzelm
parents: 40282
diff changeset
  1015
805ce1d64af0 proper signature constraint for ML structure;
wenzelm
parents: 40282
diff changeset
  1016
val setup =
805ce1d64af0 proper signature constraint for ML structure;
wenzelm
parents: 40282
diff changeset
  1017
  Context.theory_map add_term_check #>
40284
c9acf88447e6 export declarations by default, to allow other ML packages by-pass concrete syntax;
wenzelm
parents: 40283
diff changeset
  1018
  Attrib.setup @{binding coercion}
c9acf88447e6 export declarations by default, to allow other ML packages by-pass concrete syntax;
wenzelm
parents: 40283
diff changeset
  1019
    (Args.term >> (fn t => Thm.declaration_attribute (K (add_coercion t))))
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
  1020
    "declaration of new coercions" #>
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
  1021
  Attrib.setup @{binding coercion_delete}
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
  1022
    (Args.term >> (fn t => Thm.declaration_attribute (K (delete_coercion t))))
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
  1023
    "deletion of coercions" #>
40297
c753e3f8b4d6 Attribute map_function -> coercion_map;
traytel
parents: 40286
diff changeset
  1024
  Attrib.setup @{binding coercion_map}
40284
c9acf88447e6 export declarations by default, to allow other ML packages by-pass concrete syntax;
wenzelm
parents: 40283
diff changeset
  1025
    (Args.term >> (fn t => Thm.declaration_attribute (K (add_type_map t))))
40283
805ce1d64af0 proper signature constraint for ML structure;
wenzelm
parents: 40282
diff changeset
  1026
    "declaration of new map functions";
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
  1027
45059
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
  1028
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
  1029
(* outer syntax commands *)
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
  1030
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
  1031
val _ =
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
  1032
  Outer_Syntax.improper_command "print_coercions" "print all coercions" Keyword.diag
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
  1033
    (Scan.succeed (Toplevel.keep (print_coercions o Toplevel.context_of)))
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
  1034
val _ =
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
  1035
  Outer_Syntax.improper_command "print_coercion_maps" "print all coercion maps" Keyword.diag
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
  1036
    (Scan.succeed (Toplevel.keep (print_coercion_maps o Toplevel.context_of)))
28d3e387f22e printing and deleting of coercions
traytel
parents: 44338
diff changeset
  1037
40281
3c6198fd0937 Coercive subtyping via subtype constraints, by Dmitriy Traytel (21-Oct-2010).
wenzelm
parents:
diff changeset
  1038
end;