src/Pure/facts.ML
author traytel
Tue, 04 Mar 2014 13:38:02 +0100
changeset 55900 21aa30ea6806
parent 55740 11dd48f84441
child 56003 eccac152ffb4
permissions -rw-r--r--
propagate the exception that is expected later on
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
26281
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/facts.ML
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
     3
26307
27d3de85c266 replaced generic add by add_local/add_global;
wenzelm
parents: 26290
diff changeset
     4
Environment of named facts, optionally indexed by proposition.
26281
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
     5
*)
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
     6
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
     7
signature FACTS =
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
     8
sig
55740
11dd48f84441 more positions;
wenzelm
parents: 49887
diff changeset
     9
  val the_single: string * Position.T -> thm list -> thm
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    10
  datatype interval = FromTo of int * int | From of int | Single of int
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    11
  datatype ref =
26361
7946f459c6c8 Facts.Named: include position;
wenzelm
parents: 26336
diff changeset
    12
    Named of (string * Position.T) * interval list option |
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    13
    Fact of string
26361
7946f459c6c8 Facts.Named: include position;
wenzelm
parents: 26336
diff changeset
    14
  val named: string -> ref
49887
1a173b2503c0 tuned signature;
wenzelm
parents: 49747
diff changeset
    15
  val string_of_selection: interval list option -> string
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    16
  val string_of_ref: ref -> string
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    17
  val name_of_ref: ref -> string
26366
5c089f4219c2 added pos_of_ref;
wenzelm
parents: 26361
diff changeset
    18
  val pos_of_ref: ref -> Position.T
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    19
  val map_name_of_ref: (string -> string) -> ref -> ref
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    20
  val select: ref -> thm list -> thm list
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    21
  val selections: string * thm list -> (ref * thm) list
26281
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
    22
  type T
26393
42febbed5460 support dynamic facts;
wenzelm
parents: 26366
diff changeset
    23
  val empty: T
33095
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 33093
diff changeset
    24
  val space_of: T -> Name_Space.T
33163
351fc13613f2 export is_concealed;
wenzelm
parents: 33096
diff changeset
    25
  val is_concealed: T -> string -> bool
26664
167d879a89b0 renamed dest to dest_table, and extern to extern table;
wenzelm
parents: 26654
diff changeset
    26
  val intern: T -> xstring -> string
42358
b47d41d9f4b5 Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
wenzelm
parents: 35408
diff changeset
    27
  val extern: Proof.context -> T -> string -> xstring
27738
66596d7aa899 Facts.lookup: return static/dynamic status;
wenzelm
parents: 27175
diff changeset
    28
  val lookup: Context.generic -> T -> string -> (bool * thm list) option
26692
3f48d4f4229f removed unused space_of;
wenzelm
parents: 26664
diff changeset
    29
  val defined: T -> string -> bool
3f48d4f4229f removed unused space_of;
wenzelm
parents: 26664
diff changeset
    30
  val fold_static: (string * thm list -> 'a -> 'a) -> T -> 'a -> 'a
27175
620295a57106 dest/export_static: content difference;
wenzelm
parents: 26692
diff changeset
    31
  val dest_static: T list -> T -> (string * thm list) list
42358
b47d41d9f4b5 Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
wenzelm
parents: 35408
diff changeset
    32
  val extern_static: Proof.context -> T list -> T -> (xstring * thm list) list
26281
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
    33
  val props: T -> thm list
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
    34
  val could_unify: T -> term -> thm list
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
    35
  val merge: T * T -> T
49747
2cf86639b77e more explicit flags for facts table;
wenzelm
parents: 48992
diff changeset
    36
  val add_static: Context.generic -> {strict: bool, index: bool} ->
2cf86639b77e more explicit flags for facts table;
wenzelm
parents: 48992
diff changeset
    37
    binding * thm list -> T -> string * T
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 42375
diff changeset
    38
  val add_dynamic: Context.generic -> binding * (Context.generic -> thm list) -> T -> string * T
26654
1f711934f221 disallow duplicate entries (weak version for merge);
wenzelm
parents: 26393
diff changeset
    39
  val del: string -> T -> T
1f711934f221 disallow duplicate entries (weak version for merge);
wenzelm
parents: 26393
diff changeset
    40
  val hide: bool -> string -> T -> T
26281
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
    41
end;
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
    42
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
    43
structure Facts: FACTS =
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
    44
struct
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
    45
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    46
(** fact references **)
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    47
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    48
fun the_single _ [th] : thm = th
55740
11dd48f84441 more positions;
wenzelm
parents: 49887
diff changeset
    49
  | the_single (name, pos) ths =
11dd48f84441 more positions;
wenzelm
parents: 49887
diff changeset
    50
      error ("Expected singleton fact " ^ quote name ^
11dd48f84441 more positions;
wenzelm
parents: 49887
diff changeset
    51
        " (length " ^ string_of_int (length ths) ^ ")" ^ Position.here pos);
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    52
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    53
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    54
(* datatype interval *)
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    55
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    56
datatype interval =
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    57
  FromTo of int * int |
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    58
  From of int |
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    59
  Single of int;
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    60
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    61
fun string_of_interval (FromTo (i, j)) = string_of_int i ^ "-" ^ string_of_int j
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    62
  | string_of_interval (From i) = string_of_int i ^ "-"
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    63
  | string_of_interval (Single i) = string_of_int i;
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    64
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    65
fun interval n iv =
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    66
  let fun err () = raise Fail ("Bad interval specification " ^ string_of_interval iv) in
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    67
    (case iv of
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    68
      FromTo (i, j) => if i <= j then i upto j else err ()
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    69
    | From i => if i <= n then i upto n else err ()
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    70
    | Single i => [i])
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    71
  end;
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    72
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    73
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    74
(* datatype ref *)
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    75
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    76
datatype ref =
26361
7946f459c6c8 Facts.Named: include position;
wenzelm
parents: 26336
diff changeset
    77
  Named of (string * Position.T) * interval list option |
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    78
  Fact of string;
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    79
26361
7946f459c6c8 Facts.Named: include position;
wenzelm
parents: 26336
diff changeset
    80
fun named name = Named ((name, Position.none), NONE);
7946f459c6c8 Facts.Named: include position;
wenzelm
parents: 26336
diff changeset
    81
55740
11dd48f84441 more positions;
wenzelm
parents: 49887
diff changeset
    82
fun name_of_ref (Named ((name, _), _)) = name
11dd48f84441 more positions;
wenzelm
parents: 49887
diff changeset
    83
  | name_of_ref (Fact _) = raise Fail "Illegal literal fact";
11dd48f84441 more positions;
wenzelm
parents: 49887
diff changeset
    84
11dd48f84441 more positions;
wenzelm
parents: 49887
diff changeset
    85
fun pos_of_ref (Named ((_, pos), _)) = pos
11dd48f84441 more positions;
wenzelm
parents: 49887
diff changeset
    86
  | pos_of_ref (Fact _) = Position.none;
11dd48f84441 more positions;
wenzelm
parents: 49887
diff changeset
    87
26366
5c089f4219c2 added pos_of_ref;
wenzelm
parents: 26361
diff changeset
    88
fun name_pos_of_ref (Named (name_pos, _)) = name_pos
49887
1a173b2503c0 tuned signature;
wenzelm
parents: 49747
diff changeset
    89
  | name_pos_of_ref (Fact _) = raise Fail "Illegal literal fact";
26366
5c089f4219c2 added pos_of_ref;
wenzelm
parents: 26361
diff changeset
    90
26361
7946f459c6c8 Facts.Named: include position;
wenzelm
parents: 26336
diff changeset
    91
fun map_name_of_ref f (Named ((name, pos), is)) = Named ((f name, pos), is)
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    92
  | map_name_of_ref _ r = r;
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    93
49887
1a173b2503c0 tuned signature;
wenzelm
parents: 49747
diff changeset
    94
fun string_of_selection NONE = ""
1a173b2503c0 tuned signature;
wenzelm
parents: 49747
diff changeset
    95
  | string_of_selection (SOME is) = enclose "(" ")" (commas (map string_of_interval is));
1a173b2503c0 tuned signature;
wenzelm
parents: 49747
diff changeset
    96
1a173b2503c0 tuned signature;
wenzelm
parents: 49747
diff changeset
    97
fun string_of_ref (Named ((name, _), sel)) = name ^ string_of_selection sel
1a173b2503c0 tuned signature;
wenzelm
parents: 49747
diff changeset
    98
  | string_of_ref (Fact _) = raise Fail "Illegal literal fact";
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
    99
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
   100
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
   101
(* select *)
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
   102
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
   103
fun select (Fact _) ths = ths
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
   104
  | select (Named (_, NONE)) ths = ths
26361
7946f459c6c8 Facts.Named: include position;
wenzelm
parents: 26336
diff changeset
   105
  | select (Named ((name, pos), SOME ivs)) ths =
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
   106
      let
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
   107
        val n = length ths;
26361
7946f459c6c8 Facts.Named: include position;
wenzelm
parents: 26336
diff changeset
   108
        fun err msg =
55740
11dd48f84441 more positions;
wenzelm
parents: 49887
diff changeset
   109
          error (msg ^ " for fact " ^ quote name ^ " (length " ^ string_of_int n ^ ")" ^
48992
0518bf89c777 renamed Position.str_of to Position.here;
wenzelm
parents: 47005
diff changeset
   110
            Position.here pos);
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
   111
        fun sel i =
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
   112
          if i < 1 orelse i > n then err ("Bad subscript " ^ string_of_int i)
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
   113
          else nth ths (i - 1);
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
   114
        val is = maps (interval n) ivs handle Fail msg => err msg;
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
   115
      in map sel is end;
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
   116
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
   117
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
   118
(* selections *)
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
   119
26361
7946f459c6c8 Facts.Named: include position;
wenzelm
parents: 26336
diff changeset
   120
fun selections (name, [th]) = [(Named ((name, Position.none), NONE), th)]
7946f459c6c8 Facts.Named: include position;
wenzelm
parents: 26336
diff changeset
   121
  | selections (name, ths) = map2 (fn i => fn th =>
7946f459c6c8 Facts.Named: include position;
wenzelm
parents: 26336
diff changeset
   122
      (Named ((name, Position.none), SOME [Single i]), th)) (1 upto length ths) ths;
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
   123
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
   124
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
   125
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
   126
(** fact environment **)
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26307
diff changeset
   127
26393
42febbed5460 support dynamic facts;
wenzelm
parents: 26366
diff changeset
   128
(* datatypes *)
42febbed5460 support dynamic facts;
wenzelm
parents: 26366
diff changeset
   129
42febbed5460 support dynamic facts;
wenzelm
parents: 26366
diff changeset
   130
datatype fact = Static of thm list | Dynamic of Context.generic -> thm list;
26281
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   131
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   132
datatype T = Facts of
33095
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 33093
diff changeset
   133
 {facts: fact Name_Space.table,
26281
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   134
  props: thm Net.net};
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   135
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   136
fun make_facts facts props = Facts {facts = facts, props = props};
33163
351fc13613f2 export is_concealed;
wenzelm
parents: 33096
diff changeset
   137
33096
db3c18fd9708 maintain explicit name space kind;
wenzelm
parents: 33095
diff changeset
   138
val empty = make_facts (Name_Space.empty_table "fact") Net.empty;
26281
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   139
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   140
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   141
(* named facts *)
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   142
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   143
fun facts_of (Facts {facts, ...}) = facts;
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   144
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   145
val space_of = #1 o facts_of;
26393
42febbed5460 support dynamic facts;
wenzelm
parents: 26366
diff changeset
   146
val table_of = #2 o facts_of;
42febbed5460 support dynamic facts;
wenzelm
parents: 26366
diff changeset
   147
33163
351fc13613f2 export is_concealed;
wenzelm
parents: 33096
diff changeset
   148
val is_concealed = Name_Space.is_concealed o space_of;
351fc13613f2 export is_concealed;
wenzelm
parents: 33096
diff changeset
   149
33095
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 33093
diff changeset
   150
val intern = Name_Space.intern o space_of;
42358
b47d41d9f4b5 Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
wenzelm
parents: 35408
diff changeset
   151
fun extern ctxt = Name_Space.extern ctxt o space_of;
26664
167d879a89b0 renamed dest to dest_table, and extern to extern table;
wenzelm
parents: 26654
diff changeset
   152
26692
3f48d4f4229f removed unused space_of;
wenzelm
parents: 26664
diff changeset
   153
val defined = Symtab.defined o table_of;
3f48d4f4229f removed unused space_of;
wenzelm
parents: 26664
diff changeset
   154
26393
42febbed5460 support dynamic facts;
wenzelm
parents: 26366
diff changeset
   155
fun lookup context facts name =
42febbed5460 support dynamic facts;
wenzelm
parents: 26366
diff changeset
   156
  (case Symtab.lookup (table_of facts) name of
42febbed5460 support dynamic facts;
wenzelm
parents: 26366
diff changeset
   157
    NONE => NONE
33093
d010f61d3702 eliminated separate stamp -- NameSpace.define/merge etc. ensure uniqueness already;
wenzelm
parents: 29848
diff changeset
   158
  | SOME (Static ths) => SOME (true, ths)
d010f61d3702 eliminated separate stamp -- NameSpace.define/merge etc. ensure uniqueness already;
wenzelm
parents: 29848
diff changeset
   159
  | SOME (Dynamic f) => SOME (false, f context));
26393
42febbed5460 support dynamic facts;
wenzelm
parents: 26366
diff changeset
   160
33093
d010f61d3702 eliminated separate stamp -- NameSpace.define/merge etc. ensure uniqueness already;
wenzelm
parents: 29848
diff changeset
   161
fun fold_static f =
d010f61d3702 eliminated separate stamp -- NameSpace.define/merge etc. ensure uniqueness already;
wenzelm
parents: 29848
diff changeset
   162
  Symtab.fold (fn (name, Static ths) => f (name, ths) | _ => I) o table_of;
26393
42febbed5460 support dynamic facts;
wenzelm
parents: 26366
diff changeset
   163
27175
620295a57106 dest/export_static: content difference;
wenzelm
parents: 26692
diff changeset
   164
620295a57106 dest/export_static: content difference;
wenzelm
parents: 26692
diff changeset
   165
(* content difference *)
620295a57106 dest/export_static: content difference;
wenzelm
parents: 26692
diff changeset
   166
620295a57106 dest/export_static: content difference;
wenzelm
parents: 26692
diff changeset
   167
fun diff_table prev_facts facts =
620295a57106 dest/export_static: content difference;
wenzelm
parents: 26692
diff changeset
   168
  fold_static (fn (name, ths) =>
620295a57106 dest/export_static: content difference;
wenzelm
parents: 26692
diff changeset
   169
    if exists (fn prev => defined prev name) prev_facts then I
620295a57106 dest/export_static: content difference;
wenzelm
parents: 26692
diff changeset
   170
    else cons (name, ths)) facts [];
620295a57106 dest/export_static: content difference;
wenzelm
parents: 26692
diff changeset
   171
620295a57106 dest/export_static: content difference;
wenzelm
parents: 26692
diff changeset
   172
fun dest_static prev_facts facts =
620295a57106 dest/export_static: content difference;
wenzelm
parents: 26692
diff changeset
   173
  sort_wrt #1 (diff_table prev_facts facts);
620295a57106 dest/export_static: content difference;
wenzelm
parents: 26692
diff changeset
   174
42358
b47d41d9f4b5 Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
wenzelm
parents: 35408
diff changeset
   175
fun extern_static ctxt prev_facts facts =
b47d41d9f4b5 Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
wenzelm
parents: 35408
diff changeset
   176
  sort_wrt #1 (diff_table prev_facts facts |> map (apfst (extern ctxt facts)));
26281
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   177
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   178
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   179
(* indexed props *)
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   180
35408
b48ab741683b modernized structure Term_Ord;
wenzelm
parents: 33163
diff changeset
   181
val prop_ord = Term_Ord.term_ord o pairself Thm.full_prop_of;
26281
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   182
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   183
fun props (Facts {props, ...}) = sort_distinct prop_ord (Net.content props);
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   184
fun could_unify (Facts {props, ...}) = Net.unify_term props;
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   185
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   186
26393
42febbed5460 support dynamic facts;
wenzelm
parents: 26366
diff changeset
   187
(* merge facts *)
26281
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   188
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   189
fun merge (Facts {facts = facts1, props = props1}, Facts {facts = facts2, props = props2}) =
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   190
  let
33095
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 33093
diff changeset
   191
    val facts' = Name_Space.merge_tables (facts1, facts2);
26281
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   192
    val props' = Net.merge (is_equal o prop_ord) (props1, props2);
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   193
  in make_facts facts' props' end;
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   194
26393
42febbed5460 support dynamic facts;
wenzelm
parents: 26366
diff changeset
   195
26654
1f711934f221 disallow duplicate entries (weak version for merge);
wenzelm
parents: 26393
diff changeset
   196
(* add static entries *)
26393
42febbed5460 support dynamic facts;
wenzelm
parents: 26366
diff changeset
   197
49747
2cf86639b77e more explicit flags for facts table;
wenzelm
parents: 48992
diff changeset
   198
fun add_static context {strict, index} (b, ths) (Facts {facts, props}) =
26281
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   199
  let
33093
d010f61d3702 eliminated separate stamp -- NameSpace.define/merge etc. ensure uniqueness already;
wenzelm
parents: 29848
diff changeset
   200
    val (name, facts') =
d010f61d3702 eliminated separate stamp -- NameSpace.define/merge etc. ensure uniqueness already;
wenzelm
parents: 29848
diff changeset
   201
      if Binding.is_empty b then ("", facts)
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 42375
diff changeset
   202
      else Name_Space.define context strict (b, Static ths) facts;
49747
2cf86639b77e more explicit flags for facts table;
wenzelm
parents: 48992
diff changeset
   203
    val props' = props
2cf86639b77e more explicit flags for facts table;
wenzelm
parents: 48992
diff changeset
   204
      |> index ? fold (fn th => Net.insert_term (K false) (Thm.full_prop_of th, th)) ths;
28864
d6fe93e3dcb9 fact table now using name bindings
haftmann
parents: 27738
diff changeset
   205
  in (name, make_facts facts' props') end;
26281
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   206
26393
42febbed5460 support dynamic facts;
wenzelm
parents: 26366
diff changeset
   207
26654
1f711934f221 disallow duplicate entries (weak version for merge);
wenzelm
parents: 26393
diff changeset
   208
(* add dynamic entries *)
26393
42febbed5460 support dynamic facts;
wenzelm
parents: 26366
diff changeset
   209
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 42375
diff changeset
   210
fun add_dynamic context (b, f) (Facts {facts, props}) =
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 42375
diff changeset
   211
  let val (name, facts') = Name_Space.define context true (b, Dynamic f) facts;
33093
d010f61d3702 eliminated separate stamp -- NameSpace.define/merge etc. ensure uniqueness already;
wenzelm
parents: 29848
diff changeset
   212
  in (name, make_facts facts' props) end;
26281
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   213
26654
1f711934f221 disallow duplicate entries (weak version for merge);
wenzelm
parents: 26393
diff changeset
   214
1f711934f221 disallow duplicate entries (weak version for merge);
wenzelm
parents: 26393
diff changeset
   215
(* remove entries *)
1f711934f221 disallow duplicate entries (weak version for merge);
wenzelm
parents: 26393
diff changeset
   216
1f711934f221 disallow duplicate entries (weak version for merge);
wenzelm
parents: 26393
diff changeset
   217
fun del name (Facts {facts = (space, tab), props}) =
1f711934f221 disallow duplicate entries (weak version for merge);
wenzelm
parents: 26393
diff changeset
   218
  let
33163
351fc13613f2 export is_concealed;
wenzelm
parents: 33096
diff changeset
   219
    val space' = Name_Space.hide true name space handle ERROR _ => space;
26654
1f711934f221 disallow duplicate entries (weak version for merge);
wenzelm
parents: 26393
diff changeset
   220
    val tab' = Symtab.delete_safe name tab;
1f711934f221 disallow duplicate entries (weak version for merge);
wenzelm
parents: 26393
diff changeset
   221
  in make_facts (space', tab') props end;
1f711934f221 disallow duplicate entries (weak version for merge);
wenzelm
parents: 26393
diff changeset
   222
1f711934f221 disallow duplicate entries (weak version for merge);
wenzelm
parents: 26393
diff changeset
   223
fun hide fully name (Facts {facts = (space, tab), props}) =
33095
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 33093
diff changeset
   224
  make_facts (Name_Space.hide fully name space, tab) props;
26654
1f711934f221 disallow duplicate entries (weak version for merge);
wenzelm
parents: 26393
diff changeset
   225
26281
328fd1c551ef Environment of named facts (admits overriding). Optional indexing by proposition.
wenzelm
parents:
diff changeset
   226
end;