src/Pure/Isar/expression.ML
author haftmann
Sat, 17 Jan 2009 08:29:40 +0100
changeset 29525 ad7991d7b5bb
parent 29510 6fe4200532b7
child 29559 fe9cfe076c23
permissions -rw-r--r--
explicit equation morphism
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
     1
(*  Title:      Pure/Isar/expression.ML
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
     2
    Author:     Clemens Ballarin, TU Muenchen
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
     3
29360
a5be60c3674e locale -> old_locale, new_locale -> locale
haftmann
parents: 29358
diff changeset
     4
Locale expressions.
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
     5
*)
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
     6
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
     7
signature EXPRESSION =
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
     8
sig
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
     9
  (* Locale expressions *)
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    10
  datatype 'term map = Positional of 'term option list | Named of (string * 'term) list
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    11
  type 'term expr = (string * ((string * bool) * 'term map)) list
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    12
  type expression_i = term expr * (Binding.T * typ option * mixfix) list
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    13
  type expression = string expr * (Binding.T * string option * mixfix) list
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    14
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
    15
  (* Processing of context statements *)
29441
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
    16
  val cert_statement: Element.context_i list -> (term * term list) list list ->
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    17
    Proof.context -> (term * term list) list list * Proof.context
28879
db2816a37a34 Read/cert_statement for theorem statements.
ballarin
parents: 28872
diff changeset
    18
  val read_statement: Element.context list -> (string * string list) list list ->
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    19
    Proof.context -> (term * term list) list list * Proof.context
28879
db2816a37a34 Read/cert_statement for theorem statements.
ballarin
parents: 28872
diff changeset
    20
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
    21
  (* Declaring locales *)
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    22
  val cert_declaration: expression_i -> Element.context_i list -> Proof.context ->
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    23
    ((Binding.T * typ option * mixfix) list * (string * morphism) list
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    24
      * Element.context_i list) * ((string * typ) list * Proof.context)
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    25
  val cert_read_declaration: expression_i -> Element.context list -> Proof.context ->
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    26
    ((Binding.T * typ option * mixfix) list * (string * morphism) list
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    27
      * Element.context_i list) * ((string * typ) list * Proof.context)
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    28
      (*FIXME*)
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    29
  val read_declaration: expression -> Element.context list -> Proof.context ->
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    30
    ((Binding.T * typ option * mixfix) list * (string * morphism) list
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    31
      * Element.context_i list) * ((string * typ) list * Proof.context)
29391
1f6e8c00dc3e tuned signature; changed locale predicate name convention
haftmann
parents: 29362
diff changeset
    32
  val add_locale: bstring -> bstring -> expression_i -> Element.context_i list ->
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    33
    theory -> string * local_theory
29391
1f6e8c00dc3e tuned signature; changed locale predicate name convention
haftmann
parents: 29362
diff changeset
    34
  val add_locale_cmd: bstring -> bstring -> expression -> Element.context list ->
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    35
    theory -> string * local_theory
28885
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
    36
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
    37
  (* Interpretation *)
29441
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
    38
  val cert_goal_expression: expression_i -> Proof.context ->
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    39
    (term list list * (string * morphism) list * morphism) * Proof.context
29496
d35769eb9fc9 tuned interpretation code
haftmann
parents: 29441
diff changeset
    40
  val read_goal_expression: expression -> Proof.context ->
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    41
    (term list list * (string * morphism) list * morphism) * Proof.context
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    42
  val sublocale: string -> expression_i -> theory -> Proof.state
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    43
  val sublocale_cmd: string -> expression -> theory -> Proof.state
29362
f9ded2d789b9 locale -> old_locale, new_locale -> locale
haftmann
parents: 29360
diff changeset
    44
  val interpretation: expression_i -> (Attrib.binding * term) list ->
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    45
    theory -> Proof.state
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
    46
  val interpretation_cmd: expression -> (Attrib.binding * string) list ->
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    47
    theory -> Proof.state
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    48
  val interpret: expression_i -> bool -> Proof.state -> Proof.state
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
    49
  val interpret_cmd: expression -> bool -> Proof.state -> Proof.state
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    50
end;
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    51
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    52
28885
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
    53
structure Expression : EXPRESSION =
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    54
struct
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    55
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
    56
datatype ctxt = datatype Element.ctxt;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
    57
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
    58
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
    59
(*** Expressions ***)
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    60
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
    61
datatype 'term map =
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
    62
  Positional of 'term option list |
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
    63
  Named of (string * 'term) list;
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    64
29214
76c7fc5ba849 Strict prefixes in locales expressions.
ballarin
parents: 29211
diff changeset
    65
type 'term expr = (string * ((string * bool) * 'term map)) list;
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    66
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28951
diff changeset
    67
type expression = string expr * (Binding.T * string option * mixfix) list;
1de908189869 cleaned up binding module and related code
haftmann
parents: 28951
diff changeset
    68
type expression_i = term expr * (Binding.T * typ option * mixfix) list;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
    69
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    70
28859
d50b523c55db Deleted debug message (PolyML).
ballarin
parents: 28852
diff changeset
    71
(** Internalise locale names in expr **)
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    72
29360
a5be60c3674e locale -> old_locale, new_locale -> locale
haftmann
parents: 29358
diff changeset
    73
fun intern thy instances =  map (apfst (Locale.intern thy)) instances;
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    74
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    75
28859
d50b523c55db Deleted debug message (PolyML).
ballarin
parents: 28852
diff changeset
    76
(** Parameters of expression.
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    77
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
    78
   Sanity check of instantiations and extraction of implicit parameters.
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
    79
   The latter only occurs iff strict = false.
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
    80
   Positional instantiations are extended to match full length of parameter list
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
    81
   of instantiated locale. **)
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
    82
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
    83
fun parameters_of thy strict (expr, fixed) =
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    84
  let
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    85
    fun reject_dups message xs =
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    86
      let val dups = duplicates (op =) xs
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    87
      in
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    88
        if null dups then () else error (message ^ commas dups)
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    89
      end;
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
    90
29006
abe0f11cfa4e Name.name_of -> Binding.base_name
haftmann
parents: 28994
diff changeset
    91
    fun match_bind (n, b) = (n = Binding.base_name b);
29288
253bcf2a5854 avoid polymorphic equality;
wenzelm
parents: 29272
diff changeset
    92
    fun parm_eq ((b1, mx1: mixfix), (b2, mx2)) =
29030
0ea94f540548 Order of implicit parameters in locale expression.
ballarin
parents: 29028
diff changeset
    93
      (* FIXME: cannot compare bindings for equality, instead check for equal name and syntax *)
0ea94f540548 Order of implicit parameters in locale expression.
ballarin
parents: 29028
diff changeset
    94
      (Binding.base_name b1 = Binding.base_name b2) andalso
0ea94f540548 Order of implicit parameters in locale expression.
ballarin
parents: 29028
diff changeset
    95
      (if mx1 = mx2 then true
0ea94f540548 Order of implicit parameters in locale expression.
ballarin
parents: 29028
diff changeset
    96
      else error ("Conflicting syntax for parameter" ^ quote (Binding.display b1) ^
0ea94f540548 Order of implicit parameters in locale expression.
ballarin
parents: 29028
diff changeset
    97
                    " in expression."));
0ea94f540548 Order of implicit parameters in locale expression.
ballarin
parents: 29028
diff changeset
    98
      
29006
abe0f11cfa4e Name.name_of -> Binding.base_name
haftmann
parents: 28994
diff changeset
    99
    fun bind_eq (b1, b2) = (Binding.base_name b1 = Binding.base_name b2);
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   100
      (* FIXME: cannot compare bindings for equality. *)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   101
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   102
    fun params_loc loc =
29360
a5be60c3674e locale -> old_locale, new_locale -> locale
haftmann
parents: 29358
diff changeset
   103
          (Locale.params_of thy loc |> map (fn (p, _, mx) => (p, mx)), loc);
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   104
    fun params_inst (expr as (loc, (prfx, Positional insts))) =
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
   105
          let
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   106
            val (ps, loc') = params_loc loc;
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
   107
            val d = length ps - length insts;
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
   108
            val insts' =
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
   109
              if d < 0 then error ("More arguments than parameters in instantiation of locale " ^
29360
a5be60c3674e locale -> old_locale, new_locale -> locale
haftmann
parents: 29358
diff changeset
   110
                quote (Locale.extern thy loc))
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
   111
              else insts @ replicate d NONE;
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
   112
            val ps' = (ps ~~ insts') |>
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
   113
              map_filter (fn (p, NONE) => SOME p | (_, SOME _) => NONE);
28885
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   114
          in (ps', (loc', (prfx, Positional insts'))) end
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   115
      | params_inst (expr as (loc, (prfx, Named insts))) =
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
   116
          let
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
   117
            val _ = reject_dups "Duplicate instantiation of the following parameter(s): "
28859
d50b523c55db Deleted debug message (PolyML).
ballarin
parents: 28852
diff changeset
   118
              (map fst insts);
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
   119
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   120
            val (ps, loc') = params_loc loc;
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
   121
            val ps' = fold (fn (p, _) => fn ps =>
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   122
              if AList.defined match_bind ps p then AList.delete match_bind p ps
28859
d50b523c55db Deleted debug message (PolyML).
ballarin
parents: 28852
diff changeset
   123
              else error (quote p ^" not a parameter of instantiated expression.")) insts ps;
28885
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   124
          in (ps', (loc', (prfx, Named insts))) end;
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   125
    fun params_expr is =
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
   126
          let
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
   127
            val (is', ps') = fold_map (fn i => fn ps =>
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
   128
              let
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   129
                val (ps', i') = params_inst i;
29030
0ea94f540548 Order of implicit parameters in locale expression.
ballarin
parents: 29028
diff changeset
   130
                val ps'' = distinct parm_eq (ps @ ps');
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
   131
              in (i', ps'') end) is []
28885
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   132
          in (ps', is') end;
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
   133
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   134
    val (implicit, expr') = params_expr expr;
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
   135
29006
abe0f11cfa4e Name.name_of -> Binding.base_name
haftmann
parents: 28994
diff changeset
   136
    val implicit' = map (#1 #> Binding.base_name) implicit;
abe0f11cfa4e Name.name_of -> Binding.base_name
haftmann
parents: 28994
diff changeset
   137
    val fixed' = map (#1 #> Binding.base_name) fixed;
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
   138
    val _ = reject_dups "Duplicate fixed parameter(s): " fixed';
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   139
    val implicit'' = if strict then []
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   140
      else let val _ = reject_dups
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   141
          "Parameter(s) declared simultaneously in expression and for clause: " (implicit' @ fixed')
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   142
        in map (fn (b, mx) => (b, NONE, mx)) implicit end;
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
   143
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   144
  in (expr', implicit'' @ fixed) end;
28697
140bfb63f893 New-style locale expressions with instantiation (new file expression.ML).
ballarin
parents:
diff changeset
   145
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   146
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   147
(** Read instantiation **)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   148
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   149
(* Parse positional or named instantiation *)
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   150
28859
d50b523c55db Deleted debug message (PolyML).
ballarin
parents: 28852
diff changeset
   151
local
d50b523c55db Deleted debug message (PolyML).
ballarin
parents: 28852
diff changeset
   152
29510
6fe4200532b7 corrected preparation of instances: parameters are proper names, not raw terms
haftmann
parents: 29501
diff changeset
   153
fun prep_inst parse_term ctxt parms (Positional insts) =
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   154
      (insts ~~ parms) |> map (fn
29510
6fe4200532b7 corrected preparation of instances: parameters are proper names, not raw terms
haftmann
parents: 29501
diff changeset
   155
        (NONE, p) => Free (p, the (Variable.default_type ctxt p)) |
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   156
        (SOME t, _) => parse_term ctxt t)
29510
6fe4200532b7 corrected preparation of instances: parameters are proper names, not raw terms
haftmann
parents: 29501
diff changeset
   157
  | prep_inst parse_term ctxt parms (Named insts) =
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   158
      parms |> map (fn p => case AList.lookup (op =) insts p of
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   159
        SOME t => parse_term ctxt t |
29510
6fe4200532b7 corrected preparation of instances: parameters are proper names, not raw terms
haftmann
parents: 29501
diff changeset
   160
        NONE => Free (p, the (Variable.default_type ctxt p)));
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   161
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   162
in
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   163
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   164
fun parse_inst x = prep_inst Syntax.parse_term x;
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   165
fun make_inst x = prep_inst (K I) x;
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   166
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   167
end;
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   168
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   169
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   170
(* Instantiation morphism *)
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   171
29214
76c7fc5ba849 Strict prefixes in locales expressions.
ballarin
parents: 29211
diff changeset
   172
fun inst_morph (parm_names, parm_types) ((prfx, strict), insts') ctxt =
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   173
  let
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   174
    (* parameters *)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   175
    val type_parm_names = fold Term.add_tfreesT parm_types [] |> map fst;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   176
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   177
    (* type inference and contexts *)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   178
    val parm_types' = map (TypeInfer.paramify_vars o Logic.varifyT) parm_types;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   179
    val type_parms = fold Term.add_tvarsT parm_types' [] |> map (Logic.mk_type o TVar);
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   180
    val arg = type_parms @ map2 TypeInfer.constrain parm_types' insts';
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   181
    val res = Syntax.check_terms ctxt arg;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   182
    val ctxt' = ctxt |> fold Variable.auto_fixes res;
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   183
    
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   184
    (* instantiation *)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   185
    val (type_parms'', res') = chop (length type_parms) res;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   186
    val insts'' = (parm_names ~~ res') |> map_filter
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   187
      (fn (inst as (x, Free (y, _))) => if x = y then NONE else SOME inst |
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   188
        inst => SOME inst);
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   189
    val instT = Symtab.make (type_parm_names ~~ map Logic.dest_type type_parms'');
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   190
    val inst = Symtab.make insts'';
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   191
  in
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   192
    (Element.inst_morphism (ProofContext.theory_of ctxt) (instT, inst) $>
29214
76c7fc5ba849 Strict prefixes in locales expressions.
ballarin
parents: 29211
diff changeset
   193
      Morphism.binding_morphism (Binding.add_prefix strict prfx), ctxt')
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   194
  end;
28859
d50b523c55db Deleted debug message (PolyML).
ballarin
parents: 28852
diff changeset
   195
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   196
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   197
(*** Locale processing ***)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   198
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   199
(** Parsing **)
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   200
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   201
fun parse_elem prep_typ prep_term ctxt elem =
29215
f98862eb0591 Use correct mode when parsing elements and conclusion.
ballarin
parents: 29214
diff changeset
   202
  Element.map_ctxt' {binding = I, var = I, typ = prep_typ ctxt,
f98862eb0591 Use correct mode when parsing elements and conclusion.
ballarin
parents: 29214
diff changeset
   203
  term = prep_term (ProofContext.set_mode ProofContext.mode_schematic ctxt), (* FIXME ?? *)
f98862eb0591 Use correct mode when parsing elements and conclusion.
ballarin
parents: 29214
diff changeset
   204
  pat = prep_term (ProofContext.set_mode ProofContext.mode_pattern ctxt),
f98862eb0591 Use correct mode when parsing elements and conclusion.
ballarin
parents: 29214
diff changeset
   205
  fact = I, attrib = I} elem;
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   206
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   207
fun parse_concl prep_term ctxt concl =
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   208
  (map o map) (fn (t, ps) =>
29215
f98862eb0591 Use correct mode when parsing elements and conclusion.
ballarin
parents: 29214
diff changeset
   209
    (prep_term (ProofContext.set_mode ProofContext.mode_schematic ctxt) t, (* FIXME ?? *)
f98862eb0591 Use correct mode when parsing elements and conclusion.
ballarin
parents: 29214
diff changeset
   210
      map (prep_term (ProofContext.set_mode ProofContext.mode_pattern ctxt)) ps)) concl;
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   211
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   212
28885
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   213
(** Simultaneous type inference: instantiations + elements + conclusion **)
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   214
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   215
local
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   216
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   217
fun mk_type T = (Logic.mk_type T, []);
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   218
fun mk_term t = (t, []);
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   219
fun mk_propp (p, pats) = (Syntax.type_constraint propT p, pats);
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   220
28885
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   221
fun dest_type (T, []) = Logic.dest_type T;
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   222
fun dest_term (t, []) = t;
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   223
fun dest_propp (p, pats) = (p, pats);
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   224
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   225
fun extract_inst (_, (_, ts)) = map mk_term ts;
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   226
fun restore_inst ((l, (p, _)), cs) = (l, (p, map dest_term cs));
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   227
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   228
fun extract_elem (Fixes fixes) = map (#2 #> the_list #> map mk_type) fixes
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   229
  | extract_elem (Constrains csts) = map (#2 #> single #> map mk_type) csts
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   230
  | extract_elem (Assumes asms) = map (#2 #> map mk_propp) asms
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   231
  | extract_elem (Defines defs) = map (fn (_, (t, ps)) => [mk_propp (t, ps)]) defs
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   232
  | extract_elem (Notes _) = [];
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   233
28885
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   234
fun restore_elem (Fixes fixes, css) =
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   235
      (fixes ~~ css) |> map (fn ((x, _, mx), cs) =>
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   236
        (x, cs |> map dest_type |> try hd, mx)) |> Fixes
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   237
  | restore_elem (Constrains csts, css) =
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   238
      (csts ~~ css) |> map (fn ((x, _), cs) =>
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   239
        (x, cs |> map dest_type |> hd)) |> Constrains
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   240
  | restore_elem (Assumes asms, css) =
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   241
      (asms ~~ css) |> map (fn ((b, _), cs) => (b, map dest_propp cs)) |> Assumes
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   242
  | restore_elem (Defines defs, css) =
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   243
      (defs ~~ css) |> map (fn ((b, _), [c]) => (b, dest_propp c)) |> Defines
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   244
  | restore_elem (Notes notes, _) = Notes notes;
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   245
28885
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   246
fun check cs context =
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   247
  let
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   248
    fun prep (_, pats) (ctxt, t :: ts) =
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   249
      let val ctxt' = Variable.auto_fixes t ctxt
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   250
      in
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   251
        ((t, Syntax.check_props (ProofContext.set_mode ProofContext.mode_pattern ctxt') pats),
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   252
          (ctxt', ts))
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   253
      end
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   254
    val (cs', (context', _)) = fold_map prep cs
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   255
      (context, Syntax.check_terms
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   256
        (ProofContext.set_mode ProofContext.mode_schematic context) (map fst cs));
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   257
  in (cs', context') end;
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   258
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   259
in
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   260
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   261
fun check_autofix insts elems concl ctxt =
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   262
  let
28885
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   263
    val inst_cs = map extract_inst insts;
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   264
    val elem_css = map extract_elem elems;
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   265
    val concl_cs = (map o map) mk_propp concl;
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   266
    (* Type inference *)
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   267
    val (inst_cs' :: css', ctxt') =
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   268
      (fold_burrow o fold_burrow) check (inst_cs :: elem_css @ [concl_cs]) ctxt;
28936
f1647bf418f5 No resolution of patterns within context statements.
ballarin
parents: 28903
diff changeset
   269
    val (elem_css', [concl_cs']) = chop (length elem_css) css';
28885
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   270
  in
28936
f1647bf418f5 No resolution of patterns within context statements.
ballarin
parents: 28903
diff changeset
   271
    (map restore_inst (insts ~~ inst_cs'), map restore_elem (elems ~~ elem_css'),
f1647bf418f5 No resolution of patterns within context statements.
ballarin
parents: 28903
diff changeset
   272
      concl_cs', ctxt')
28885
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   273
  end;
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   274
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   275
end;
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   276
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   277
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   278
(** Prepare locale elements **)
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   279
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   280
fun declare_elem prep_vars (Fixes fixes) ctxt =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   281
      let val (vars, _) = prep_vars fixes ctxt
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   282
      in ctxt |> ProofContext.add_fixes_i vars |> snd end
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   283
  | declare_elem prep_vars (Constrains csts) ctxt =
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28951
diff changeset
   284
      ctxt |> prep_vars (map (fn (x, T) => (Binding.name x, SOME T, NoSyn)) csts) |> snd
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   285
  | declare_elem _ (Assumes _) ctxt = ctxt
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   286
  | declare_elem _ (Defines _) ctxt = ctxt
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   287
  | declare_elem _ (Notes _) ctxt = ctxt;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   288
29221
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   289
(** Finish locale elements **)
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   290
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   291
fun closeup _ _ false elem = elem
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   292
  | closeup ctxt parms true elem =
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   293
      let
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   294
        fun close_frees t =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   295
          let
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   296
            val rev_frees =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   297
              Term.fold_aterms (fn Free (x, T) =>
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   298
                if AList.defined (op =) parms x then I else insert (op =) (x, T) | _ => I) t [];
29021
ce100fbc3c8e Proper shape of assumptions generated from Defines elements.
ballarin
parents: 29020
diff changeset
   299
          in Term.list_all_free (rev rev_frees, t) end; (* FIXME use fold Logic.all *)
29019
8e7d6f959bd7 Explicitly close up defines.
ballarin
parents: 29018
diff changeset
   300
  (* FIXME consider closing in syntactic phase *)
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   301
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   302
        fun no_binds [] = []
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   303
          | no_binds _ = error "Illegal term bindings in context element";
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   304
      in
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   305
        (case elem of
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   306
          Assumes asms => Assumes (asms |> map (fn (a, propps) =>
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   307
            (a, map (fn (t, ps) => (close_frees t, no_binds ps)) propps)))
29022
54d3a31ca0f6 Default names for definitions.
ballarin
parents: 29021
diff changeset
   308
        | Defines defs => Defines (defs |> map (fn ((name, atts), (t, ps)) =>
54d3a31ca0f6 Default names for definitions.
ballarin
parents: 29021
diff changeset
   309
            let val ((c, _), t') = LocalDefs.cert_def ctxt (close_frees t)
54d3a31ca0f6 Default names for definitions.
ballarin
parents: 29021
diff changeset
   310
            in
54d3a31ca0f6 Default names for definitions.
ballarin
parents: 29021
diff changeset
   311
              ((Binding.map_base (Thm.def_name_optional c) name, atts), (t', no_binds ps))
54d3a31ca0f6 Default names for definitions.
ballarin
parents: 29021
diff changeset
   312
            end))
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   313
        | e => e)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   314
      end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   315
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   316
fun finish_primitive parms _ (Fixes fixes) = Fixes (map (fn (binding, _, mx) =>
29006
abe0f11cfa4e Name.name_of -> Binding.base_name
haftmann
parents: 28994
diff changeset
   317
      let val x = Binding.base_name binding
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   318
      in (binding, AList.lookup (op =) parms x, mx) end) fixes)
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   319
  | finish_primitive _ _ (Constrains _) = Constrains []
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   320
  | finish_primitive _ close (Assumes asms) = close (Assumes asms)
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   321
  | finish_primitive _ close (Defines defs) = close (Defines defs)
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   322
  | finish_primitive _ _ (Notes facts) = Notes facts;
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   323
29221
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   324
fun finish_inst ctxt parms do_close (loc, (prfx, inst)) =
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   325
  let
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   326
    val thy = ProofContext.theory_of ctxt;
29360
a5be60c3674e locale -> old_locale, new_locale -> locale
haftmann
parents: 29358
diff changeset
   327
    val (parm_names, parm_types) = Locale.params_of thy loc |>
29510
6fe4200532b7 corrected preparation of instances: parameters are proper names, not raw terms
haftmann
parents: 29501
diff changeset
   328
      map_split (fn (b, SOME T, _) => (Binding.base_name b, T));
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   329
    val (morph, _) = inst_morph (parm_names, parm_types) (prfx, inst) ctxt;
29221
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   330
  in (loc, morph) end;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   331
29221
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   332
fun finish_elem ctxt parms do_close elem =
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   333
  let
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   334
    val elem' = finish_primitive parms (closeup ctxt parms do_close) elem;
29221
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   335
  in elem' end
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   336
  
29221
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   337
fun finish ctxt parms do_close insts elems =
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   338
  let
29221
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   339
    val deps = map (finish_inst ctxt parms do_close) insts;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   340
    val elems' = map (finish_elem ctxt parms do_close) elems;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   341
  in (deps, elems') end;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   342
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   343
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   344
(** Process full context statement: instantiations + elements + conclusion **)
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   345
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   346
(* Interleave incremental parsing and type inference over entire parsed stretch. *)
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   347
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   348
local
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   349
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   350
fun prep_full_context_statement parse_typ parse_prop prep_vars_elem parse_inst prep_vars_inst prep_expr
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
   351
    strict do_close raw_import raw_elems raw_concl ctxt1 =
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   352
  let
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
   353
    val thy = ProofContext.theory_of ctxt1;
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   354
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   355
    val (raw_insts, fixed) = parameters_of thy strict (apfst (prep_expr thy) raw_import);
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   356
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28936
diff changeset
   357
    fun prep_inst (loc, (prfx, inst)) (i, insts, ctxt) =
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   358
      let
29360
a5be60c3674e locale -> old_locale, new_locale -> locale
haftmann
parents: 29358
diff changeset
   359
        val (parm_names, parm_types) = Locale.params_of thy loc |>
29510
6fe4200532b7 corrected preparation of instances: parameters are proper names, not raw terms
haftmann
parents: 29501
diff changeset
   360
          map_split (fn (b, SOME T, _) => (Binding.base_name b, T))
6fe4200532b7 corrected preparation of instances: parameters are proper names, not raw terms
haftmann
parents: 29501
diff changeset
   361
            (*FIXME return value of Locale.params_of has strange type*)
6fe4200532b7 corrected preparation of instances: parameters are proper names, not raw terms
haftmann
parents: 29501
diff changeset
   362
        val inst' = parse_inst ctxt parm_names inst;
28885
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   363
        val parm_types' = map (TypeInfer.paramify_vars o
6f6bf52e75bb Expression types cleaned up, proper treatment of term patterns.
ballarin
parents: 28879
diff changeset
   364
          Term.map_type_tvar (fn ((x, _), S) => TVar ((x, i), S)) o Logic.varifyT) parm_types;
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   365
        val inst'' = map2 TypeInfer.constrain parm_types' inst';
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   366
        val insts' = insts @ [(loc, (prfx, inst''))];
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28936
diff changeset
   367
        val (insts'', _, _, ctxt' (* FIXME not used *) ) = check_autofix insts' [] [] ctxt;
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   368
        val inst''' = insts'' |> List.last |> snd |> snd;
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   369
        val (morph, _) = inst_morph (parm_names, parm_types) (prfx, inst''') ctxt;
29360
a5be60c3674e locale -> old_locale, new_locale -> locale
haftmann
parents: 29358
diff changeset
   370
        val ctxt'' = Locale.activate_declarations thy (loc, morph) ctxt;
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28936
diff changeset
   371
      in (i+1, insts', ctxt'') end;
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   372
  
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   373
    fun prep_elem insts raw_elem (elems, ctxt) =
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   374
      let
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   375
        val ctxt' = declare_elem prep_vars_elem raw_elem ctxt;
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   376
        val elems' = elems @ [parse_elem parse_typ parse_prop ctxt' raw_elem];
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   377
        val (_, _, _, ctxt'') = check_autofix insts elems' [] ctxt';
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   378
      in (elems', ctxt') end;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   379
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   380
    fun prep_concl raw_concl (insts, elems, ctxt) =
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   381
      let
29215
f98862eb0591 Use correct mode when parsing elements and conclusion.
ballarin
parents: 29214
diff changeset
   382
        val concl = parse_concl parse_prop ctxt raw_concl;
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   383
      in check_autofix insts elems concl ctxt end;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   384
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   385
    val fors = prep_vars_inst fixed ctxt1 |> fst;
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
   386
    val ctxt2 = ctxt1 |> ProofContext.add_fixes_i fors |> snd;
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
   387
    val (_, insts', ctxt3) = fold prep_inst raw_insts (0, [], ctxt2);
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   388
    val (elems, ctxt4) = fold (prep_elem insts') raw_elems ([], ctxt3);
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   389
    val (insts, elems', concl, ctxt5) =
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   390
      prep_concl raw_concl (insts', elems, ctxt4);
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   391
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   392
    (* Retrieve parameter types *)
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   393
    val xs = fold (fn Fixes fixes => (fn ps => ps @ map (Binding.base_name o #1) fixes)
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   394
      | _ => fn ps => ps) (Fixes fors :: elems') [];
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
   395
    val (Ts, ctxt6) = fold_map ProofContext.inferred_param xs ctxt5; 
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   396
    val parms = xs ~~ Ts;  (* params from expression and elements *)
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   397
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   398
    val Fixes fors' = finish_primitive parms I (Fixes fors);
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   399
    val (deps, elems'') = finish ctxt6 parms do_close insts elems';
28852
5ddea758679b Type inference for elements through syntax module.
ballarin
parents: 28832
diff changeset
   400
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   401
  in ((fors', deps, elems'', concl), (parms, ctxt6)) end
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   402
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   403
in
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   404
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   405
fun cert_full_context_statement x =
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   406
  prep_full_context_statement (K I) (K I) ProofContext.cert_vars
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   407
  make_inst ProofContext.cert_vars (K I) x;
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   408
fun cert_read_full_context_statement x =
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   409
  prep_full_context_statement Syntax.parse_typ Syntax.parse_prop ProofContext.read_vars
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   410
  make_inst ProofContext.cert_vars (K I) x;
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   411
fun read_full_context_statement x =
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   412
  prep_full_context_statement Syntax.parse_typ Syntax.parse_prop ProofContext.read_vars
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   413
  parse_inst ProofContext.read_vars intern x;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   414
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   415
end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   416
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   417
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   418
(* Context statement: elements + conclusion *)
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   419
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   420
local
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   421
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   422
fun prep_statement prep activate raw_elems raw_concl context =
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   423
  let
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
   424
     val ((_, _, elems, concl), _) =
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   425
       prep true false ([], []) raw_elems raw_concl context;
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   426
     val (_, context') = context |>
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   427
       ProofContext.set_stmt true |>
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   428
       activate elems;
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   429
  in (concl, context') end;
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   430
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   431
in
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   432
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   433
fun cert_statement x = prep_statement cert_full_context_statement Element.activate_i x;
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   434
fun read_statement x = prep_statement read_full_context_statement Element.activate x;
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   435
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   436
end;
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   437
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   438
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   439
(* Locale declaration: import + elements *)
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   440
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   441
local
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   442
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   443
fun prep_declaration prep activate raw_import raw_elems context =
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   444
  let
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
   445
    val ((fixed, deps, elems, _), (parms, ctxt')) =
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
   446
      prep false true raw_import raw_elems [] context ;
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   447
    (* Declare parameters and imported facts *)
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   448
    val context' = context |>
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   449
      ProofContext.add_fixes_i fixed |> snd |>
29360
a5be60c3674e locale -> old_locale, new_locale -> locale
haftmann
parents: 29358
diff changeset
   450
      fold Locale.activate_local_facts deps;
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   451
    val (elems', _) = context' |>
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   452
      ProofContext.set_stmt true |>
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   453
      activate elems;
29221
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   454
  in ((fixed, deps, elems'), (parms, ctxt')) end;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   455
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   456
in
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   457
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   458
fun cert_declaration x = prep_declaration cert_full_context_statement Element.activate_i x;
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   459
fun cert_read_declaration x = prep_declaration cert_read_full_context_statement Element.activate x;
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   460
fun read_declaration x = prep_declaration read_full_context_statement Element.activate x;
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   461
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   462
end;
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   463
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   464
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   465
(* Locale expression to set up a goal *)
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   466
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   467
local
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   468
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   469
fun props_of thy (name, morph) =
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   470
  let
29360
a5be60c3674e locale -> old_locale, new_locale -> locale
haftmann
parents: 29358
diff changeset
   471
    val (asm, defs) = Locale.specification_of thy name;
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   472
  in
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   473
    (case asm of NONE => defs | SOME asm => asm :: defs) |> map (Morphism.term morph)
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   474
  end;
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   475
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   476
fun prep_goal_expression prep expression context =
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   477
  let
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   478
    val thy = ProofContext.theory_of context;
28879
db2816a37a34 Read/cert_statement for theorem statements.
ballarin
parents: 28872
diff changeset
   479
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
   480
    val ((fixed, deps, _, _), _) =
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
   481
      prep true true expression [] [] context;
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   482
    (* proof obligations *)
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   483
    val propss = map (props_of thy) deps;
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   484
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   485
    val goal_ctxt = context |>
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   486
      ProofContext.add_fixes_i fixed |> snd |>
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   487
      (fold o fold) Variable.auto_fixes propss;
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   488
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   489
    val export = Variable.export_morphism goal_ctxt context;
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   490
    val exp_fact = Drule.zero_var_indexes_list o map Thm.strip_shyps o Morphism.fact export;
29245
19728ee2b1ba Intro_locales_tac knows about defines elements; more robust export morphism.
ballarin
parents: 29241
diff changeset
   491
    val exp_term = TermSubst.zero_var_indexes o Morphism.term export;
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   492
    val exp_typ = Logic.type_map exp_term;
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   493
    val export' =
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28951
diff changeset
   494
      Morphism.morphism {binding = I, var = I, typ = exp_typ, term = exp_term, fact = exp_fact};
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   495
  in ((propss, deps, export'), goal_ctxt) end;
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   496
    
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   497
in
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   498
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   499
fun cert_goal_expression x = prep_goal_expression cert_full_context_statement x;
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   500
fun read_goal_expression x = prep_goal_expression read_full_context_statement x;
28879
db2816a37a34 Read/cert_statement for theorem statements.
ballarin
parents: 28872
diff changeset
   501
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   502
end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   503
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   504
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   505
(*** Locale declarations ***)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   506
29221
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   507
(* extract specification text *)
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   508
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   509
val norm_term = Envir.beta_norm oo Term.subst_atomic;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   510
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   511
fun bind_def ctxt eq (xs, env, eqs) =
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   512
  let
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   513
    val _ = LocalDefs.cert_def ctxt eq;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   514
    val ((y, T), b) = LocalDefs.abs_def eq;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   515
    val b' = norm_term env b;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   516
    fun err msg = error (msg ^ ": " ^ quote y);
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   517
  in
29250
96b1b4d5157d More liberal consistency check for defines elements.
ballarin
parents: 29248
diff changeset
   518
    case filter (fn (Free (y', _), _) => y = y' | _ => false) env of
96b1b4d5157d More liberal consistency check for defines elements.
ballarin
parents: 29248
diff changeset
   519
      [] => (Term.add_frees b' xs, (Free (y, T), b') :: env, eq :: eqs) |
96b1b4d5157d More liberal consistency check for defines elements.
ballarin
parents: 29248
diff changeset
   520
      dups => if forall (fn (_, b'') => b' aconv b'') dups
96b1b4d5157d More liberal consistency check for defines elements.
ballarin
parents: 29248
diff changeset
   521
        then (xs, env, eqs)
96b1b4d5157d More liberal consistency check for defines elements.
ballarin
parents: 29248
diff changeset
   522
        else err "Attempt to redefine variable"
29221
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   523
  end;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   524
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   525
(* text has the following structure:
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   526
       (((exts, exts'), (ints, ints')), (xs, env, defs))
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   527
   where
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   528
     exts: external assumptions (terms in assumes elements)
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   529
     exts': dito, normalised wrt. env
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   530
     ints: internal assumptions (terms in assumptions from insts)
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   531
     ints': dito, normalised wrt. env
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   532
     xs: the free variables in exts' and ints' and rhss of definitions,
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   533
       this includes parameters except defined parameters
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   534
     env: list of term pairs encoding substitutions, where the first term
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   535
       is a free variable; substitutions represent defines elements and
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   536
       the rhs is normalised wrt. the previous env
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   537
     defs: the equations from the defines elements
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   538
   *)
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   539
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   540
fun eval_text _ _ (Fixes _) text = text
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   541
  | eval_text _ _ (Constrains _) text = text
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   542
  | eval_text _ is_ext (Assumes asms)
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   543
        (((exts, exts'), (ints, ints')), (xs, env, defs)) =
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   544
      let
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   545
        val ts = maps (map #1 o #2) asms;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   546
        val ts' = map (norm_term env) ts;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   547
        val spec' =
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   548
          if is_ext then ((exts @ ts, exts' @ ts'), (ints, ints'))
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   549
          else ((exts, exts'), (ints @ ts, ints' @ ts'));
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   550
      in (spec', (fold Term.add_frees ts' xs, env, defs)) end
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   551
  | eval_text ctxt _ (Defines defs) (spec, binds) =
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   552
      (spec, fold (bind_def ctxt o #1 o #2) defs binds)
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   553
  | eval_text _ _ (Notes _) text = text;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   554
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   555
fun eval_inst ctxt (loc, morph) text =
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   556
  let
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   557
    val thy = ProofContext.theory_of ctxt;
29360
a5be60c3674e locale -> old_locale, new_locale -> locale
haftmann
parents: 29358
diff changeset
   558
    val (asm, defs) = Locale.specification_of thy loc;
29221
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   559
    val asm' = Option.map (Morphism.term morph) asm;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   560
    val defs' = map (Morphism.term morph) defs;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   561
    val text' = text |>
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   562
      (if is_some asm
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   563
        then eval_text ctxt false (Assumes [(Attrib.empty_binding, [(the asm', [])])])
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   564
        else I) |>
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   565
      (if not (null defs)
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   566
        then eval_text ctxt false (Defines (map (fn def => (Attrib.empty_binding, (def, []))) defs'))
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   567
        else I)
29360
a5be60c3674e locale -> old_locale, new_locale -> locale
haftmann
parents: 29358
diff changeset
   568
(* FIXME clone from locale.ML *)
29221
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   569
  in text' end;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   570
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   571
fun eval_elem ctxt elem text =
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   572
  let
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   573
    val text' = eval_text ctxt true elem text;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   574
  in text' end;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   575
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   576
fun eval ctxt deps elems =
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   577
  let
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   578
    val text' = fold (eval_inst ctxt) deps ((([], []), ([], [])), ([], [], []));
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   579
    val ((spec, (_, _, defs))) = fold (eval_elem ctxt) elems text';
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   580
  in (spec, defs) end;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   581
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   582
(* axiomsN: name of theorem set with destruct rules for locale predicates,
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   583
     also name suffix of delta predicates and assumptions. *)
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   584
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   585
val axiomsN = "axioms";
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   586
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   587
local
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   588
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   589
(* introN: name of theorems for introduction rules of locale and
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   590
     delta predicates *)
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   591
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   592
val introN = "intro";
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   593
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   594
fun atomize_spec thy ts =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   595
  let
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   596
    val t = Logic.mk_conjunction_balanced ts;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   597
    val body = ObjectLogic.atomize_term thy t;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   598
    val bodyT = Term.fastype_of body;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   599
  in
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   600
    if bodyT = propT then (t, propT, Thm.reflexive (Thm.cterm_of thy t))
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   601
    else (body, bodyT, ObjectLogic.atomize (Thm.cterm_of thy t))
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   602
  end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   603
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   604
(* achieve plain syntax for locale predicates (without "PROP") *)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   605
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   606
fun aprop_tr' n c = (Syntax.constN ^ c, fn ctxt => fn args =>
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   607
  if length args = n then
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   608
    Syntax.const "_aprop" $
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   609
      Term.list_comb (Syntax.free (Consts.extern (ProofContext.consts_of ctxt) c), args)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   610
  else raise Match);
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   611
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   612
(* define one predicate including its intro rule and axioms
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   613
   - bname: predicate name
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   614
   - parms: locale parameters
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   615
   - defs: thms representing substitutions from defines elements
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   616
   - ts: terms representing locale assumptions (not normalised wrt. defs)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   617
   - norm_ts: terms representing locale assumptions (normalised wrt. defs)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   618
   - thy: the theory
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   619
*)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   620
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   621
fun def_pred bname parms defs ts norm_ts thy =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   622
  let
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28951
diff changeset
   623
    val name = Sign.full_bname thy bname;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   624
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   625
    val (body, bodyT, body_eq) = atomize_spec thy norm_ts;
29272
fb3ccf499df5 use regular Term.add_XXX etc.;
wenzelm
parents: 29254
diff changeset
   626
    val env = Term.add_free_names body [];
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   627
    val xs = filter (member (op =) env o #1) parms;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   628
    val Ts = map #2 xs;
29272
fb3ccf499df5 use regular Term.add_XXX etc.;
wenzelm
parents: 29254
diff changeset
   629
    val extraTs =
fb3ccf499df5 use regular Term.add_XXX etc.;
wenzelm
parents: 29254
diff changeset
   630
      (Term.add_tfrees body [] \\ fold Term.add_tfreesT Ts [])
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   631
      |> Library.sort_wrt #1 |> map TFree;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   632
    val predT = map Term.itselfT extraTs ---> Ts ---> bodyT;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   633
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   634
    val args = map Logic.mk_type extraTs @ map Free xs;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   635
    val head = Term.list_comb (Const (name, predT), args);
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   636
    val statement = ObjectLogic.ensure_propT thy head;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   637
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   638
    val ([pred_def], defs_thy) =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   639
      thy
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   640
      |> bodyT = propT ? Sign.add_advanced_trfuns ([], [], [aprop_tr' (length args) name], [])
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28951
diff changeset
   641
      |> Sign.declare_const [] ((Binding.name bname, predT), NoSyn) |> snd
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   642
      |> PureThy.add_defs false
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   643
        [((Thm.def_name bname, Logic.mk_equals (head, body)), [Thm.kind_internal])];
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   644
    val defs_ctxt = ProofContext.init defs_thy |> Variable.declare_term head;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   645
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   646
    val cert = Thm.cterm_of defs_thy;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   647
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   648
    val intro = Goal.prove_global defs_thy [] norm_ts statement (fn _ =>
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   649
      MetaSimplifier.rewrite_goals_tac [pred_def] THEN
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   650
      Tactic.compose_tac (false, body_eq RS Drule.equal_elim_rule1, 1) 1 THEN
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   651
      Tactic.compose_tac (false,
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   652
        Conjunction.intr_balanced (map (Thm.assume o cert) norm_ts), 0) 1);
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   653
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   654
    val conjuncts =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   655
      (Drule.equal_elim_rule2 OF [body_eq,
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   656
        MetaSimplifier.rewrite_rule [pred_def] (Thm.assume (cert statement))])
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   657
      |> Conjunction.elim_balanced (length ts);
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   658
    val axioms = ts ~~ conjuncts |> map (fn (t, ax) =>
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   659
      Element.prove_witness defs_ctxt t
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   660
       (MetaSimplifier.rewrite_goals_tac defs THEN
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   661
        Tactic.compose_tac (false, ax, 0) 1));
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   662
  in ((statement, intro, axioms), defs_thy) end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   663
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   664
in
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   665
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   666
(* CB: main predicate definition function *)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   667
29221
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   668
fun define_preds pname parms (((exts, exts'), (ints, ints')), defs) thy =
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   669
  let
29031
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29030
diff changeset
   670
    val defs' = map (cterm_of thy #> Assumption.assume #> Drule.gen_all #> Drule.abs_def) defs;
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29030
diff changeset
   671
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   672
    val (a_pred, a_intro, a_axioms, thy'') =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   673
      if null exts then (NONE, NONE, [], thy)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   674
      else
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   675
        let
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   676
          val aname = if null ints then pname else pname ^ "_" ^ axiomsN;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   677
          val ((statement, intro, axioms), thy') =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   678
            thy
29031
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29030
diff changeset
   679
            |> def_pred aname parms defs' exts exts';
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   680
          val (_, thy'') =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   681
            thy'
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   682
            |> Sign.add_path aname
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   683
            |> Sign.no_base_names
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   684
            |> PureThy.note_thmss Thm.internalK
29360
a5be60c3674e locale -> old_locale, new_locale -> locale
haftmann
parents: 29358
diff changeset
   685
              [((Binding.name introN, []), [([intro], [Locale.unfold_attrib])])]
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   686
            ||> Sign.restore_naming thy';
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   687
          in (SOME statement, SOME intro, axioms, thy'') end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   688
    val (b_pred, b_intro, b_axioms, thy'''') =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   689
      if null ints then (NONE, NONE, [], thy'')
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   690
      else
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   691
        let
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   692
          val ((statement, intro, axioms), thy''') =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   693
            thy''
29031
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29030
diff changeset
   694
            |> def_pred pname parms defs' (ints @ the_list a_pred) (ints' @ the_list a_pred);
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   695
          val (_, thy'''') =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   696
            thy'''
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   697
            |> Sign.add_path pname
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   698
            |> Sign.no_base_names
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   699
            |> PureThy.note_thmss Thm.internalK
29360
a5be60c3674e locale -> old_locale, new_locale -> locale
haftmann
parents: 29358
diff changeset
   700
                 [((Binding.name introN, []), [([intro], [Locale.intro_attrib])]),
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28951
diff changeset
   701
                  ((Binding.name axiomsN, []),
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   702
                    [(map (Drule.standard o Element.conclude_witness) axioms, [])])]
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   703
            ||> Sign.restore_naming thy''';
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   704
        in (SOME statement, SOME intro, axioms, thy'''') end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   705
  in ((a_pred, a_intro, a_axioms), (b_pred, b_intro, b_axioms), thy'''') end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   706
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   707
end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   708
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   709
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   710
local
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   711
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   712
fun assumes_to_notes (Assumes asms) axms =
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   713
      fold_map (fn (a, spec) => fn axs =>
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   714
          let val (ps, qs) = chop (length spec) axs
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   715
          in ((a, [(ps, [])]), qs) end) asms axms
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   716
      |> apfst (curry Notes Thm.assumptionK)
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   717
  | assumes_to_notes e axms = (e, axms);
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   718
29031
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29030
diff changeset
   719
fun defines_to_notes thy (Defines defs) =
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29030
diff changeset
   720
      Notes (Thm.definitionK, map (fn (a, (def, _)) =>
29245
19728ee2b1ba Intro_locales_tac knows about defines elements; more robust export morphism.
ballarin
parents: 29241
diff changeset
   721
        (a, [([Assumption.assume (cterm_of thy def)],
29360
a5be60c3674e locale -> old_locale, new_locale -> locale
haftmann
parents: 29358
diff changeset
   722
          [(Attrib.internal o K) Locale.witness_attrib])])) defs)
29031
e74341997a48 Pass on defines in inheritance; reject illicit defines created by instantiation.
ballarin
parents: 29030
diff changeset
   723
  | defines_to_notes _ e = e;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   724
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   725
fun gen_add_locale prep_decl
29391
1f6e8c00dc3e tuned signature; changed locale predicate name convention
haftmann
parents: 29362
diff changeset
   726
    bname raw_predicate_bname raw_imprt raw_body thy =
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   727
  let
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28951
diff changeset
   728
    val name = Sign.full_bname thy bname;
29391
1f6e8c00dc3e tuned signature; changed locale predicate name convention
haftmann
parents: 29362
diff changeset
   729
    val _ = Locale.defined thy name andalso
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   730
      error ("Duplicate definition of locale " ^ quote name);
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   731
29221
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   732
    val ((fixed, deps, body_elems), (parms, ctxt')) =
29021
ce100fbc3c8e Proper shape of assumptions generated from Defines elements.
ballarin
parents: 29020
diff changeset
   733
      prep_decl raw_imprt raw_body (ProofContext.init thy);
29221
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   734
    val text as (((_, exts'), _), defs) = eval ctxt' deps body_elems;
918687637307 Refactored: evaluate specification text only in locale declarations.
ballarin
parents: 29217
diff changeset
   735
29391
1f6e8c00dc3e tuned signature; changed locale predicate name convention
haftmann
parents: 29362
diff changeset
   736
    val predicate_bname = if raw_predicate_bname = "" then bname
1f6e8c00dc3e tuned signature; changed locale predicate name convention
haftmann
parents: 29362
diff changeset
   737
      else raw_predicate_bname;
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   738
    val ((a_statement, a_intro, a_axioms), (b_statement, b_intro, b_axioms), thy') =
29391
1f6e8c00dc3e tuned signature; changed locale predicate name convention
haftmann
parents: 29362
diff changeset
   739
      define_preds predicate_bname parms text thy;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   740
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   741
    val extraTs = fold Term.add_tfrees exts' [] \\ fold Term.add_tfreesT (map snd parms) [];
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   742
    val _ = if null extraTs then ()
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   743
      else warning ("Additional type variable(s) in locale specification " ^ quote bname);
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   744
29035
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29034
diff changeset
   745
    val a_satisfy = Element.satisfy_morphism a_axioms;
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29034
diff changeset
   746
    val b_satisfy = Element.satisfy_morphism b_axioms;
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   747
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   748
    val params = fixed @
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   749
      (body_elems |> map_filter (fn Fixes fixes => SOME fixes | _ => NONE) |> flat);
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   750
    val asm = if is_some b_statement then b_statement else a_statement;
29028
b5dad96c755a When adding locales, delay notes until local theory is built.
ballarin
parents: 29022
diff changeset
   751
b5dad96c755a When adding locales, delay notes until local theory is built.
ballarin
parents: 29022
diff changeset
   752
    val notes =
b5dad96c755a When adding locales, delay notes until local theory is built.
ballarin
parents: 29022
diff changeset
   753
        if is_some asm
b5dad96c755a When adding locales, delay notes until local theory is built.
ballarin
parents: 29022
diff changeset
   754
        then [(Thm.internalK, [((Binding.name (bname ^ "_" ^ axiomsN), []),
b5dad96c755a When adding locales, delay notes until local theory is built.
ballarin
parents: 29022
diff changeset
   755
          [([Assumption.assume (cterm_of thy' (the asm))],
29360
a5be60c3674e locale -> old_locale, new_locale -> locale
haftmann
parents: 29358
diff changeset
   756
            [(Attrib.internal o K) Locale.witness_attrib])])])]
29028
b5dad96c755a When adding locales, delay notes until local theory is built.
ballarin
parents: 29022
diff changeset
   757
        else [];
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   758
29035
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29034
diff changeset
   759
    val notes' = body_elems |>
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29034
diff changeset
   760
      map (defines_to_notes thy') |>
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29034
diff changeset
   761
      map (Element.morph_ctxt a_satisfy) |>
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29034
diff changeset
   762
      (fn elems => fold_map assumes_to_notes elems (map Element.conclude_witness a_axioms)) |>
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29034
diff changeset
   763
      fst |>
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29034
diff changeset
   764
      map (Element.morph_ctxt b_satisfy) |>
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29034
diff changeset
   765
      map_filter (fn Notes notes => SOME notes | _ => NONE);
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29034
diff changeset
   766
b0a0843dfd99 Satisfy a_axioms.
ballarin
parents: 29034
diff changeset
   767
    val deps' = map (fn (l, morph) => (l, morph $> b_satisfy)) deps;
29441
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   768
    val axioms = map Element.conclude_witness b_axioms;
28872
686963dbf6cd add_locale functional.
ballarin
parents: 28862
diff changeset
   769
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
   770
    val loc_ctxt = thy'
29360
a5be60c3674e locale -> old_locale, new_locale -> locale
haftmann
parents: 29358
diff changeset
   771
      |> Locale.register_locale bname (extraTs, params)
29441
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   772
          (asm, rev defs) (a_intro, b_intro) axioms ([], []) 
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
   773
          (map (fn n => (n, stamp ())) notes |> rev) (map (fn d => (d, stamp ())) deps' |> rev)
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
   774
      |> TheoryTarget.init (SOME name)
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
   775
      |> fold (fn (kind, facts) => LocalTheory.notes kind facts #> snd) notes';
29028
b5dad96c755a When adding locales, delay notes until local theory is built.
ballarin
parents: 29022
diff changeset
   776
29358
efdfe5dfe008 rearranged target theories
haftmann
parents: 29288
diff changeset
   777
  in (name, loc_ctxt) end;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   778
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   779
in
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   780
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   781
val add_locale = gen_add_locale cert_declaration;
28902
2019bcc9d8bf Ahere to modern naming conventions; proper treatment of internal vs external names.
ballarin
parents: 28898
diff changeset
   782
val add_locale_cmd = gen_add_locale read_declaration;
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   783
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   784
end;
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   785
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   786
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   787
(*** Interpretation ***)
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   788
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   789
(** Witnesses and goals **)
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   790
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   791
fun prep_propp propss = propss |> map (map (rpair [] o Element.mark_witness));
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   792
29254
ef3e2c3399d7 prep_result: Thm.close_derivation of witness theorem avoids performance issues with proof terms;
wenzelm
parents: 29250
diff changeset
   793
val prep_result = map2 (fn props => fn thms =>
ef3e2c3399d7 prep_result: Thm.close_derivation of witness theorem avoids performance issues with proof terms;
wenzelm
parents: 29250
diff changeset
   794
  map2 Element.make_witness props (map Thm.close_derivation thms));
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   795
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   796
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   797
(** Interpretation between locales: declaring sublocale relationships **)
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   798
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   799
local
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   800
28902
2019bcc9d8bf Ahere to modern naming conventions; proper treatment of internal vs external names.
ballarin
parents: 28898
diff changeset
   801
fun gen_sublocale prep_expr intern
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28936
diff changeset
   802
    raw_target expression thy =
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   803
  let
28902
2019bcc9d8bf Ahere to modern naming conventions; proper treatment of internal vs external names.
ballarin
parents: 28898
diff changeset
   804
    val target = intern thy raw_target;
29360
a5be60c3674e locale -> old_locale, new_locale -> locale
haftmann
parents: 29358
diff changeset
   805
    val target_ctxt = Locale.init target thy;
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   806
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   807
    val ((propss, deps, export), goal_ctxt) = prep_expr expression target_ctxt;
28898
530c7d28a962 Proper treatment of expressions with free arguments.
ballarin
parents: 28895
diff changeset
   808
    
28902
2019bcc9d8bf Ahere to modern naming conventions; proper treatment of internal vs external names.
ballarin
parents: 28898
diff changeset
   809
    fun store_dep ((name, morph), thms) =
29360
a5be60c3674e locale -> old_locale, new_locale -> locale
haftmann
parents: 29358
diff changeset
   810
      Locale.add_dependency target (name, morph $> Element.satisfy_morphism thms $> export);
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   811
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   812
    fun after_qed results =
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   813
      ProofContext.theory (
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   814
        (* store dependencies *)
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   815
        fold store_dep (deps ~~ prep_result propss results) #>
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   816
        (* propagate registrations *)
29360
a5be60c3674e locale -> old_locale, new_locale -> locale
haftmann
parents: 29358
diff changeset
   817
        (fn thy => fold_rev (fn reg => Locale.activate_global_facts reg)
29391
1f6e8c00dc3e tuned signature; changed locale predicate name convention
haftmann
parents: 29362
diff changeset
   818
          (Locale.get_registrations thy) thy));
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   819
  in
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   820
    goal_ctxt |>
28951
e89dde5f365c Sublocale: removed public after_qed; identifiers private to NewLocale.
ballarin
parents: 28936
diff changeset
   821
      Proof.theorem_i NONE after_qed (prep_propp propss) |>
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   822
      Element.refine_witness |> Seq.hd
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   823
  end;
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   824
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   825
in
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   826
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   827
fun sublocale x = gen_sublocale cert_goal_expression (K I) x;
29360
a5be60c3674e locale -> old_locale, new_locale -> locale
haftmann
parents: 29358
diff changeset
   828
fun sublocale_cmd x = gen_sublocale read_goal_expression Locale.intern x;
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   829
28795
6891e273c33b Initial part of locale reimplementation.
ballarin
parents: 28701
diff changeset
   830
end;
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   831
29018
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   832
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   833
(** Interpretation in theories **)
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   834
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   835
local
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   836
29211
ab99da3854af Equations in interpretation as goals.
ballarin
parents: 29210
diff changeset
   837
fun gen_interpretation prep_expr parse_prop prep_attr
29496
d35769eb9fc9 tuned interpretation code
haftmann
parents: 29441
diff changeset
   838
    expression equations theory =
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   839
  let
29496
d35769eb9fc9 tuned interpretation code
haftmann
parents: 29441
diff changeset
   840
    val ((propss, regs, export), expr_ctxt) = ProofContext.init theory
d35769eb9fc9 tuned interpretation code
haftmann
parents: 29441
diff changeset
   841
      |> prep_expr expression;
29441
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   842
29211
ab99da3854af Equations in interpretation as goals.
ballarin
parents: 29210
diff changeset
   843
    val eqns = map (parse_prop expr_ctxt o snd) equations |> Syntax.check_terms expr_ctxt;
29496
d35769eb9fc9 tuned interpretation code
haftmann
parents: 29441
diff changeset
   844
    val eq_attns = map ((apsnd o map) (prep_attr theory) o fst) equations;
29211
ab99da3854af Equations in interpretation as goals.
ballarin
parents: 29210
diff changeset
   845
    val goal_ctxt = fold Variable.auto_fixes eqns expr_ctxt;
ab99da3854af Equations in interpretation as goals.
ballarin
parents: 29210
diff changeset
   846
    val export' = Variable.export_morphism goal_ctxt expr_ctxt;
29210
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29208
diff changeset
   847
29441
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   848
    fun store_reg ((name, morph), thms) thy =
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   849
      let
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   850
        val thms' = map (Element.morph_witness export') thms;
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   851
        val morph' = morph $> Element.satisfy_morphism thms';
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   852
      in
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   853
        thy
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   854
        |> Locale.add_registration (name, (morph', export))
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   855
        |> pair (name, morph')
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   856
      end;
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   857
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   858
    fun store_eqns_activate regs [] thy =
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   859
          thy
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   860
          |> fold (fn (name, morph) =>
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   861
               Locale.activate_global_facts (name, morph $> export)) regs
29496
d35769eb9fc9 tuned interpretation code
haftmann
parents: 29441
diff changeset
   862
      | store_eqns_activate regs thms thy =
29441
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   863
          let
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   864
            val thms' = thms |> map (Element.conclude_witness #>
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   865
              Morphism.thm (export' $> export) #>
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   866
              LocalDefs.meta_rewrite_rule (ProofContext.init thy) #>
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   867
              Drule.abs_def);
29525
ad7991d7b5bb explicit equation morphism
haftmann
parents: 29510
diff changeset
   868
            val eq_morph = Element.eq_morphism thy thms';
29441
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   869
            val eq_attns' = map ((apsnd o map) (Attrib.attribute_i thy)) eq_attns;
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   870
          in
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   871
            thy
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   872
            |> fold (fn (name, morph) =>
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   873
                Locale.amend_registration eq_morph (name, morph) #>
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   874
                Locale.activate_global_facts (name, morph $> eq_morph $> export)) regs
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   875
            |> PureThy.note_thmss Thm.lemmaK (eq_attns' ~~ map (fn th => [([th], [])]) thms')
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   876
            |> snd
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   877
          end;
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   878
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   879
    fun after_qed results =
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   880
      let
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   881
        val (wits_reg, wits_eq) = split_last (prep_result (propss @ [eqns]) results);
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   882
      in ProofContext.theory (fold_map store_reg (regs ~~ wits_reg)
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   883
        #-> (fn regs => store_eqns_activate regs wits_eq))
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   884
      end;
28d7d7572b81 explicit bookkeeping of intro rules and axiom
haftmann
parents: 29394
diff changeset
   885
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   886
  in
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   887
    goal_ctxt |>
29211
ab99da3854af Equations in interpretation as goals.
ballarin
parents: 29210
diff changeset
   888
      Proof.theorem_i NONE after_qed (prep_propp (propss @ [eqns])) |>
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   889
      Element.refine_witness |> Seq.hd
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   890
  end;
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   891
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   892
in
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   893
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   894
fun interpretation x = gen_interpretation cert_goal_expression (K I) (K I) x;
29210
4025459e3f83 Interpretation in theories: first version with equations.
ballarin
parents: 29208
diff changeset
   895
fun interpretation_cmd x = gen_interpretation read_goal_expression
29211
ab99da3854af Equations in interpretation as goals.
ballarin
parents: 29210
diff changeset
   896
  Syntax.parse_prop Attrib.intern_src x;
28895
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   897
4e2914c2f8c5 Sublocale command.
ballarin
parents: 28885
diff changeset
   898
end;
28903
b3fc3a62247a Intro_locales_tac to simplify goals involving locale predicates.
ballarin
parents: 28902
diff changeset
   899
29018
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   900
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   901
(** Interpretation in proof contexts **)
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   902
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   903
local
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   904
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   905
fun gen_interpret prep_expr
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   906
    expression int state =
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   907
  let
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   908
    val _ = Proof.assert_forward_or_chain state;
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   909
    val ctxt = Proof.context_of state;
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   910
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   911
    val ((propss, regs, export), goal_ctxt) = prep_expr expression ctxt;
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   912
    
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   913
    fun store_reg ((name, morph), thms) =
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   914
      let
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   915
        val morph' = morph $> Element.satisfy_morphism thms $> export;
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   916
      in
29360
a5be60c3674e locale -> old_locale, new_locale -> locale
haftmann
parents: 29358
diff changeset
   917
        Locale.activate_local_facts (name, morph')
29018
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   918
      end;
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   919
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   920
    fun after_qed results =
29383
223f18cfbb32 qed/after_qed: singleton result;
wenzelm
parents: 29362
diff changeset
   921
      Proof.map_context (fold store_reg (regs ~~ prep_result propss results));
29018
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   922
  in
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   923
    state |> Proof.map_context (K goal_ctxt) |>
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   924
      Proof.local_goal (ProofDisplay.print_results int) (K I) ProofContext.bind_propp_i
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   925
      "interpret" NONE after_qed (map (pair (Binding.empty, [])) (prep_propp propss)) |>
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   926
      Element.refine_witness |> Seq.hd
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   927
  end;
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   928
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   929
in
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   930
29501
08df2e51cb80 added cert_read_declaration; more exports; tuned signature
haftmann
parents: 29496
diff changeset
   931
fun interpret x = gen_interpret cert_goal_expression x;
29018
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   932
fun interpret_cmd x = gen_interpret read_goal_expression x;
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   933
28993
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   934
end;
829e684b02ef Interpretation in theories including interaction with subclass relation.
ballarin
parents: 28951
diff changeset
   935
29018
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   936
end;
17538bdef546 Interpretation in proof contexts.
ballarin
parents: 28994
diff changeset
   937