src/Pure/proofterm.ML
author wenzelm
Mon, 19 Aug 2019 18:47:49 +0200
changeset 70573 10dd61d9357a
parent 70569 095dadc62bb5
child 70577 ed651a58afe4
permissions -rw-r--r--
tuned;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
     1
(*  Title:      Pure/proofterm.ML
11540
23794728cdb7 fixed header;
wenzelm
parents: 11519
diff changeset
     2
    Author:     Stefan Berghofer, TU Muenchen
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
     3
11540
23794728cdb7 fixed header;
wenzelm
parents: 11519
diff changeset
     4
LF style proof terms.
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
     5
*)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
     6
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
     7
infix 8 % %% %>;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
     8
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
     9
signature BASIC_PROOFTERM =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    10
sig
64573
e6aee01da22d tuned signature -- more abstract type thm_node;
wenzelm
parents: 64572
diff changeset
    11
  type thm_node
70413
913b4afb6ac2 more explicit type proof_serial;
wenzelm
parents: 70412
diff changeset
    12
  type proof_serial = int
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
    13
  type thm_header =
70538
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
    14
    {serial: proof_serial, pos: Position.T list, theory_name: string, name: string,
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
    15
      prop: term, types: typ list option}
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
    16
  type thm_body
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    17
  datatype proof =
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    18
     MinProof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    19
   | PBound of int
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    20
   | Abst of string * typ option * proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    21
   | AbsP of string * term option * proof
63857
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
    22
   | % of proof * term option
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
    23
   | %% of proof * proof
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    24
   | Hyp of term
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    25
   | PAxm of string * term * typ list option
31943
5e960a0780a2 renamed inclass/Inclass to of_class/OfClass, in accordance to of_sort;
wenzelm
parents: 31903
diff changeset
    26
   | OfClass of typ * class
70559
c92443e8d724 clarified type for recorded oracles;
wenzelm
parents: 70557
diff changeset
    27
   | Oracle of string * term option * typ list option
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
    28
   | PThm of thm_header * thm_body
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    29
  and proof_body = PBody of
70559
c92443e8d724 clarified type for recorded oracles;
wenzelm
parents: 70557
diff changeset
    30
    {oracles: (string * term option) Ord_List.T,
70413
913b4afb6ac2 more explicit type proof_serial;
wenzelm
parents: 70412
diff changeset
    31
     thms: (proof_serial * thm_node) Ord_List.T,
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    32
     proof: proof}
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
    33
  val %> : proof * term -> proof
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    34
end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    35
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    36
signature PROOFTERM =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    37
sig
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    38
  include BASIC_PROOFTERM
65446
ed18feb34c07 tuned signature -- prefer qualified names;
wenzelm
parents: 64574
diff changeset
    39
  val proofs: int Unsynchronized.ref
70564
2c7c8be65b7d more robust, notably for open_proof of unnamed derivation;
wenzelm
parents: 70559
diff changeset
    40
  exception MIN_PROOF
70413
913b4afb6ac2 more explicit type proof_serial;
wenzelm
parents: 70412
diff changeset
    41
  type pthm = proof_serial * thm_node
70559
c92443e8d724 clarified type for recorded oracles;
wenzelm
parents: 70557
diff changeset
    42
  type oracle = string * term option
32094
89b9210c7506 prefer simultaneous join -- for improved scheduling;
wenzelm
parents: 32057
diff changeset
    43
  val proof_of: proof_body -> proof
70396
425c5f9bc61a support export_proofs, prune_proofs;
wenzelm
parents: 70395
diff changeset
    44
  val map_proof_of: (proof -> proof) -> proof_body -> proof_body
70538
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
    45
  val thm_header: proof_serial -> Position.T list -> string -> string -> term -> typ list option ->
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
    46
    thm_header
70501
23c4f264250c tuned signature;
wenzelm
parents: 70500
diff changeset
    47
  val thm_body: proof_body -> thm_body
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
    48
  val thm_body_proof_raw: thm_body -> proof
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
    49
  val thm_body_proof_open: thm_body -> proof
64573
e6aee01da22d tuned signature -- more abstract type thm_node;
wenzelm
parents: 64572
diff changeset
    50
  val thm_node_name: thm_node -> string
e6aee01da22d tuned signature -- more abstract type thm_node;
wenzelm
parents: 64572
diff changeset
    51
  val thm_node_prop: thm_node -> term
e6aee01da22d tuned signature -- more abstract type thm_node;
wenzelm
parents: 64572
diff changeset
    52
  val thm_node_body: thm_node -> proof_body future
29635
31d14e9fa0da proof_body: turned lazy into future -- ensures that body is fulfilled eventually, without explicit force;
wenzelm
parents: 29270
diff changeset
    53
  val join_proof: proof_body future -> proof
30711
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
    54
  val fold_proof_atoms: bool -> (proof -> 'a -> 'a) -> proof list -> 'a -> 'a
70413
913b4afb6ac2 more explicit type proof_serial;
wenzelm
parents: 70412
diff changeset
    55
  val fold_body_thms:
913b4afb6ac2 more explicit type proof_serial;
wenzelm
parents: 70412
diff changeset
    56
    ({serial: proof_serial, name: string, prop: term, body: proof_body} -> 'a -> 'a) ->
64572
cec07f7249cd tuned signature;
wenzelm
parents: 64568
diff changeset
    57
    proof_body list -> 'a -> 'a
66168
fcd09fc36d7f consolidate proofs more simultaneously;
wenzelm
parents: 66167
diff changeset
    58
  val consolidate: proof_body list -> unit
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    59
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    60
  val oracle_ord: oracle * oracle -> order
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    61
  val thm_ord: pthm * pthm -> order
44334
605381e7c7c5 more direct balanced version Ord_List.unions;
wenzelm
parents: 44333
diff changeset
    62
  val unions_oracles: oracle Ord_List.T list -> oracle Ord_List.T
605381e7c7c5 more direct balanced version Ord_List.unions;
wenzelm
parents: 44333
diff changeset
    63
  val unions_thms: pthm Ord_List.T list -> pthm Ord_List.T
70557
5d6e9c65ea67 clarified signature;
wenzelm
parents: 70554
diff changeset
    64
  val all_oracles_of: proof_body list -> oracle Ord_List.T
30716
2ee706293eb5 removed misleading make_proof_body, make_oracles, make_thms, which essentially assume a *full* proof;
wenzelm
parents: 30712
diff changeset
    65
  val approximate_proof_body: proof -> proof_body
70440
03cfef16ddb4 more diagnostic operations;
wenzelm
parents: 70439
diff changeset
    66
  val no_proof_body: proof -> proof_body
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
    67
  val no_thm_proofs: proof -> proof
70440
03cfef16ddb4 more diagnostic operations;
wenzelm
parents: 70439
diff changeset
    68
  val no_body_proofs: proof -> proof
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
    69
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
    70
  val encode: proof XML.Encode.T
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
    71
  val encode_body: proof_body XML.Encode.T
70534
fb876ebbf5a7 export facts with reconstructed proof term (if possible), but its PThm boxes need to be collected separately;
wenzelm
parents: 70531
diff changeset
    72
  val encode_full: proof XML.Encode.T
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
    73
  val decode: proof XML.Decode.T
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
    74
  val decode_body: proof_body XML.Decode.T
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    75
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
    76
  (*primitive operations*)
52487
48bc24467008 backout dedd7952a62c: static "proofs" value within theory prevents later inferencing with different configuration;
wenzelm
parents: 52470
diff changeset
    77
  val proofs_enabled: unit -> bool
64568
a504a3dec35a more careful derivation_closed / close_derivation;
wenzelm
parents: 64566
diff changeset
    78
  val atomic_proof: proof -> bool
a504a3dec35a more careful derivation_closed / close_derivation;
wenzelm
parents: 64566
diff changeset
    79
  val compact_proof: proof -> bool
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    80
  val proof_combt: proof * term list -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    81
  val proof_combt': proof * term option list -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    82
  val proof_combP: proof * proof list -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    83
  val strip_combt: proof -> proof * term option list
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    84
  val strip_combP: proof -> proof * proof list
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    85
  val strip_thm: proof_body -> proof_body
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
    86
  val map_proof_same: term Same.operation -> typ Same.operation
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
    87
    -> (typ * class -> proof) -> proof Same.operation
36620
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36619
diff changeset
    88
  val map_proof_terms_same: term Same.operation -> typ Same.operation -> proof Same.operation
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36619
diff changeset
    89
  val map_proof_types_same: typ Same.operation -> proof Same.operation
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    90
  val map_proof_terms: (term -> term) -> (typ -> typ) -> proof -> proof
36620
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36619
diff changeset
    91
  val map_proof_types: (typ -> typ) -> proof -> proof
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    92
  val fold_proof_terms: (term -> 'a -> 'a) -> (typ -> 'a -> 'a) -> proof -> 'a -> 'a
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    93
  val maxidx_proof: proof -> int -> int
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    94
  val size_of_proof: proof -> int
70417
eb6ff14767cd tuned signature;
wenzelm
parents: 70416
diff changeset
    95
  val change_types: typ list option -> proof -> proof
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    96
  val prf_abstract_over: term -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    97
  val prf_incr_bv: int -> int -> int -> int -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    98
  val incr_pboundvars: int -> int -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    99
  val prf_loose_bvar1: proof -> int -> bool
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   100
  val prf_loose_Pbvar1: proof -> int -> bool
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   101
  val prf_add_loose_bnos: int -> int -> proof -> int list * int list -> int list * int list
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   102
  val norm_proof: Envir.env -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   103
  val norm_proof': Envir.env -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   104
  val prf_subst_bounds: term list -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   105
  val prf_subst_pbounds: proof list -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   106
  val freeze_thaw_prf: proof -> proof * (proof -> proof)
70388
e31271559de8 global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents: 68068
diff changeset
   107
  val proofT: typ
e31271559de8 global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents: 68068
diff changeset
   108
  val term_of_proof: proof -> term
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   109
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   110
  (*proof terms for specific inference rules*)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   111
  val implies_intr_proof: term -> proof -> proof
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
   112
  val implies_intr_proof': term -> proof -> proof
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   113
  val forall_intr_proof: term -> string -> proof -> proof
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
   114
  val forall_intr_proof': term -> proof -> proof
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   115
  val varify_proof: term -> (string * sort) list -> proof -> proof
36619
deadcd0ec431 renamed Proofterm.freezeT to Proofterm.legacy_freezeT (cf. 88756a5a92fc);
wenzelm
parents: 35851
diff changeset
   116
  val legacy_freezeT: term -> proof -> proof
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   117
  val rotate_proof: term list -> term -> int -> proof -> proof
36742
6f8bbe9ca8a2 tuned signature;
wenzelm
parents: 36741
diff changeset
   118
  val permute_prems_proof: term list -> int -> int -> proof -> proof
19908
f035261fb5b9 added generalize rule;
wenzelm
parents: 19502
diff changeset
   119
  val generalize: string list * string list -> int -> proof -> proof
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   120
  val instantiate: ((indexname * sort) * typ) list * ((indexname * typ) * term) list
16880
411d91d104c4 tuned instantiate interface;
wenzelm
parents: 16787
diff changeset
   121
    -> proof -> proof
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   122
  val lift_proof: term -> int -> term -> proof -> proof
32027
9dd548810ed1 tuned incr_indexes;
wenzelm
parents: 32024
diff changeset
   123
  val incr_indexes: int -> proof -> proof
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   124
  val assumption_proof: term list -> term -> int -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   125
  val bicompose_proof: bool -> term list -> term list -> term list -> term option ->
23296
25f28f9c28a3 Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents: 23178
diff changeset
   126
    int -> int -> proof -> proof -> proof
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   127
  val equality_axms: (string * term) list
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   128
  val reflexive_axm: proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   129
  val symmetric_axm: proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   130
  val transitive_axm: proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   131
  val equal_intr_axm: proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   132
  val equal_elim_axm: proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   133
  val abstract_rule_axm: proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   134
  val combination_axm: proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   135
  val reflexive: proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   136
  val symmetric: proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   137
  val transitive: term -> typ -> proof -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   138
  val abstract_rule: term -> string -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   139
  val combination: term -> term -> term -> term -> typ -> proof -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   140
  val equal_intr: term -> term -> proof -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   141
  val equal_elim: term -> term -> proof -> proof -> proof
36621
2fd4e2c76636 proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents: 36620
diff changeset
   142
  val strip_shyps_proof: Sorts.algebra -> (typ * sort) list -> (typ * sort) list ->
2fd4e2c76636 proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents: 36620
diff changeset
   143
    sort list -> proof -> proof
70458
9e2173eb23eb more direct proofs for type classes;
wenzelm
parents: 70454
diff changeset
   144
  val of_sort_proof: Sorts.algebra ->
9e2173eb23eb more direct proofs for type classes;
wenzelm
parents: 70454
diff changeset
   145
    (class * class -> proof) ->
9e2173eb23eb more direct proofs for type classes;
wenzelm
parents: 70454
diff changeset
   146
    (string * class list list * class -> proof) ->
9e2173eb23eb more direct proofs for type classes;
wenzelm
parents: 70454
diff changeset
   147
    (typ * class -> proof) -> typ * sort -> proof list
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   148
  val axm_proof: string -> term -> proof
52487
48bc24467008 backout dedd7952a62c: static "proofs" value within theory prevents later inferencing with different configuration;
wenzelm
parents: 52470
diff changeset
   149
  val oracle_proof: string -> term -> oracle * proof
63623
1a38142e1172 tuned signature;
wenzelm
parents: 62897
diff changeset
   150
  val shrink_proof: proof -> proof
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   151
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   152
  (*rewriting on proof terms*)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   153
  val add_prf_rrule: proof * proof -> theory -> theory
52487
48bc24467008 backout dedd7952a62c: static "proofs" value within theory prevents later inferencing with different configuration;
wenzelm
parents: 52470
diff changeset
   154
  val add_prf_rproc: (typ list -> term option list -> proof -> (proof * proof) option) -> theory -> theory
33722
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 33522
diff changeset
   155
  val no_skel: proof
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 33522
diff changeset
   156
  val normal_skel: proof
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   157
  val rewrite_proof: theory -> (proof * proof) list *
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
   158
    (typ list -> term option list -> proof -> (proof * proof) option) list -> proof -> proof
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   159
  val rewrite_proof_notypes: (proof * proof) list *
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
   160
    (typ list -> term option list -> proof -> (proof * proof) option) list -> proof -> proof
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   161
  val rew_proof: theory -> proof -> proof
36877
7699f7fafde7 added Proofterm.get_name variants according to krauss/schropp;
wenzelm
parents: 36742
diff changeset
   162
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
   163
  val reconstruct_proof: theory -> term -> proof -> proof
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
   164
  val prop_of': term list -> proof -> term
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
   165
  val prop_of: proof -> term
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
   166
  val expand_proof: theory -> (string * term option) list -> proof -> proof
70400
65bbef66e2ec clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents: 70399
diff changeset
   167
70541
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
   168
  val standard_vars: Name.context -> term * proof option -> term * proof option
70529
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
   169
  val standard_vars_term: Name.context -> term -> term
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
   170
70413
913b4afb6ac2 more explicit type proof_serial;
wenzelm
parents: 70412
diff changeset
   171
  val proof_serial: unit -> proof_serial
36877
7699f7fafde7 added Proofterm.get_name variants according to krauss/schropp;
wenzelm
parents: 36742
diff changeset
   172
  val fulfill_norm_proof: theory -> (serial * proof_body) list -> proof_body -> proof_body
70458
9e2173eb23eb more direct proofs for type classes;
wenzelm
parents: 70454
diff changeset
   173
  val thm_proof: theory -> (class * class -> proof) ->
70494
41108e3e9ca5 formal position for PThm nodes;
wenzelm
parents: 70493
diff changeset
   174
    (string * class list list * class -> proof) -> string * Position.T -> sort list ->
41108e3e9ca5 formal position for PThm nodes;
wenzelm
parents: 70493
diff changeset
   175
    term list -> term -> (serial * proof_body future) list -> proof_body -> pthm * proof
70458
9e2173eb23eb more direct proofs for type classes;
wenzelm
parents: 70454
diff changeset
   176
  val unconstrain_thm_proof: theory -> (class * class -> proof) ->
9e2173eb23eb more direct proofs for type classes;
wenzelm
parents: 70454
diff changeset
   177
    (string * class list list * class -> proof) -> sort list -> term ->
36883
4ed0d72def50 added Proofterm.unconstrain_thm_proof for Thm.unconstrainT -- loosely based on the version by krauss/schropp;
wenzelm
parents: 36882
diff changeset
   178
    (serial * proof_body future) list -> proof_body -> pthm * proof
70554
10d41bf28b92 clarified signature;
wenzelm
parents: 70551
diff changeset
   179
  val get_approximative_name: sort list -> term list -> term -> proof -> string
10d41bf28b92 clarified signature;
wenzelm
parents: 70551
diff changeset
   180
  type thm_id = {serial: proof_serial, theory_name: string}
10d41bf28b92 clarified signature;
wenzelm
parents: 70551
diff changeset
   181
  val get_id: sort list -> term list -> term -> proof -> thm_id option
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   182
end
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   183
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   184
structure Proofterm : PROOFTERM =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   185
struct
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   186
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   187
(** datatype proof **)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   188
70413
913b4afb6ac2 more explicit type proof_serial;
wenzelm
parents: 70412
diff changeset
   189
type proof_serial = int;
913b4afb6ac2 more explicit type proof_serial;
wenzelm
parents: 70412
diff changeset
   190
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   191
type thm_header =
70538
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
   192
  {serial: proof_serial, pos: Position.T list, theory_name: string, name: string,
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
   193
    prop: term, types: typ list option};
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   194
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   195
datatype proof =
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   196
   MinProof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   197
 | PBound of int
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   198
 | Abst of string * typ option * proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   199
 | AbsP of string * term option * proof
12497
ec6ba9e6eef3 type_env;
wenzelm
parents: 12311
diff changeset
   200
 | op % of proof * term option
ec6ba9e6eef3 type_env;
wenzelm
parents: 12311
diff changeset
   201
 | op %% of proof * proof
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   202
 | Hyp of term
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   203
 | PAxm of string * term * typ list option
31943
5e960a0780a2 renamed inclass/Inclass to of_class/OfClass, in accordance to of_sort;
wenzelm
parents: 31903
diff changeset
   204
 | OfClass of typ * class
70559
c92443e8d724 clarified type for recorded oracles;
wenzelm
parents: 70557
diff changeset
   205
 | Oracle of string * term option * typ list option
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   206
 | PThm of thm_header * thm_body
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   207
and proof_body = PBody of
70559
c92443e8d724 clarified type for recorded oracles;
wenzelm
parents: 70557
diff changeset
   208
  {oracles: (string * term option) Ord_List.T,
70413
913b4afb6ac2 more explicit type proof_serial;
wenzelm
parents: 70412
diff changeset
   209
   thms: (proof_serial * thm_node) Ord_List.T,
64573
e6aee01da22d tuned signature -- more abstract type thm_node;
wenzelm
parents: 64572
diff changeset
   210
   proof: proof}
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   211
and thm_body =
70502
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
   212
  Thm_Body of {export_proof: unit lazy, open_proof: proof -> proof, body: proof_body future}
64574
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   213
and thm_node =
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   214
  Thm_Node of {name: string, prop: term, body: proof_body future, consolidate: unit lazy};
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   215
70564
2c7c8be65b7d more robust, notably for open_proof of unnamed derivation;
wenzelm
parents: 70559
diff changeset
   216
exception MIN_PROOF;
2c7c8be65b7d more robust, notably for open_proof of unnamed derivation;
wenzelm
parents: 70559
diff changeset
   217
70559
c92443e8d724 clarified type for recorded oracles;
wenzelm
parents: 70557
diff changeset
   218
type oracle = string * term option;
c92443e8d724 clarified type for recorded oracles;
wenzelm
parents: 70557
diff changeset
   219
val oracle_prop = the_default Term.dummy;
c92443e8d724 clarified type for recorded oracles;
wenzelm
parents: 70557
diff changeset
   220
70413
913b4afb6ac2 more explicit type proof_serial;
wenzelm
parents: 70412
diff changeset
   221
type pthm = proof_serial * thm_node;
28815
80bb72a0f577 proof_body/pthm: removed redundant types field;
wenzelm
parents: 28812
diff changeset
   222
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   223
fun proof_of (PBody {proof, ...}) = proof;
32094
89b9210c7506 prefer simultaneous join -- for improved scheduling;
wenzelm
parents: 32057
diff changeset
   224
val join_proof = Future.join #> proof_of;
17017
fa8e32209734 - Tuned handling of oracles
berghofe
parents: 16983
diff changeset
   225
70396
425c5f9bc61a support export_proofs, prune_proofs;
wenzelm
parents: 70395
diff changeset
   226
fun map_proof_of f (PBody {oracles, thms, proof}) =
425c5f9bc61a support export_proofs, prune_proofs;
wenzelm
parents: 70395
diff changeset
   227
  PBody {oracles = oracles, thms = thms, proof = f proof};
425c5f9bc61a support export_proofs, prune_proofs;
wenzelm
parents: 70395
diff changeset
   228
70538
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
   229
fun thm_header serial pos theory_name name prop types : thm_header =
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
   230
  {serial = serial, pos = pos, theory_name = theory_name, name = name, prop = prop, types = types};
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   231
70502
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
   232
val no_export_proof = Lazy.value ();
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
   233
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
   234
fun thm_body body =
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
   235
  Thm_Body {export_proof = no_export_proof, open_proof = I, body = Future.value body};
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
   236
fun thm_body_export_proof (Thm_Body {export_proof, ...}) = export_proof;
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   237
fun thm_body_proof_raw (Thm_Body {body, ...}) = join_proof body;
70502
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
   238
fun thm_body_proof_open (Thm_Body {open_proof, body, ...}) = open_proof (join_proof body);
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   239
64574
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   240
fun rep_thm_node (Thm_Node args) = args;
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   241
val thm_node_name = #name o rep_thm_node;
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   242
val thm_node_prop = #prop o rep_thm_node;
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   243
val thm_node_body = #body o rep_thm_node;
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   244
val thm_node_consolidate = #consolidate o rep_thm_node;
64573
e6aee01da22d tuned signature -- more abstract type thm_node;
wenzelm
parents: 64572
diff changeset
   245
e6aee01da22d tuned signature -- more abstract type thm_node;
wenzelm
parents: 64572
diff changeset
   246
fun join_thms (thms: pthm list) =
64574
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   247
  Future.joins (map (thm_node_body o #2) thms);
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   248
66168
fcd09fc36d7f consolidate proofs more simultaneously;
wenzelm
parents: 66167
diff changeset
   249
val consolidate =
fcd09fc36d7f consolidate proofs more simultaneously;
wenzelm
parents: 66167
diff changeset
   250
  maps (fn PBody {thms, ...} => map (thm_node_consolidate o #2) thms)
67669
ad8ca85f13e2 tuned: more parallel;
wenzelm
parents: 66168
diff changeset
   251
  #> Lazy.consolidate #> map Lazy.force #> ignore;
64574
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   252
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   253
fun make_thm_node name prop body =
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   254
  Thm_Node {name = name, prop = prop, body = body,
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   255
    consolidate =
66167
1bd268ab885c more informative task_statistics;
wenzelm
parents: 65446
diff changeset
   256
      Lazy.lazy_name "Proofterm.make_thm_node" (fn () =>
64574
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   257
        let val PBody {thms, ...} = Future.join body
66168
fcd09fc36d7f consolidate proofs more simultaneously;
wenzelm
parents: 66167
diff changeset
   258
        in consolidate (join_thms thms) end)};
44333
cc53ce50f738 reverted to join_bodies/join_proofs based on fold_body_thms to regain performance (escpecially of HOL-Proofs) -- see also aa9c1e9ef2ce and 4e2abb045eac;
wenzelm
parents: 44332
diff changeset
   259
17017
fa8e32209734 - Tuned handling of oracles
berghofe
parents: 16983
diff changeset
   260
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   261
(* proof atoms *)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   262
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   263
fun fold_proof_atoms all f =
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   264
  let
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   265
    fun app (Abst (_, _, prf)) = app prf
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   266
      | app (AbsP (_, _, prf)) = app prf
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   267
      | app (prf % _) = app prf
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   268
      | app (prf1 %% prf2) = app prf1 #> app prf2
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   269
      | app (prf as PThm ({serial = i, ...}, Thm_Body {body, ...})) = (fn (x, seen) =>
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   270
          if Inttab.defined seen i then (x, seen)
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   271
          else
28815
80bb72a0f577 proof_body/pthm: removed redundant types field;
wenzelm
parents: 28812
diff changeset
   272
            let val (x', seen') =
29635
31d14e9fa0da proof_body: turned lazy into future -- ensures that body is fulfilled eventually, without explicit force;
wenzelm
parents: 29270
diff changeset
   273
              (if all then app (join_proof body) else I) (x, Inttab.update (i, ()) seen)
28815
80bb72a0f577 proof_body/pthm: removed redundant types field;
wenzelm
parents: 28812
diff changeset
   274
            in (f prf x', seen') end)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   275
      | app prf = (fn (x, seen) => (f prf x, seen));
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   276
  in fn prfs => fn x => #1 (fold app prfs (x, Inttab.empty)) end;
19357
dade85a75c9f Added alternative version of thms_of_proof that does not recursively
berghofe
parents: 19304
diff changeset
   277
30711
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   278
fun fold_body_thms f =
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   279
  let
32726
a900d3cd47cc fold_body_thms: pass pthm identifier;
wenzelm
parents: 32711
diff changeset
   280
    fun app (PBody {thms, ...}) =
64574
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   281
      tap join_thms thms |> fold (fn (i, thm_node) => fn (x, seen) =>
32726
a900d3cd47cc fold_body_thms: pass pthm identifier;
wenzelm
parents: 32711
diff changeset
   282
        if Inttab.defined seen i then (x, seen)
32094
89b9210c7506 prefer simultaneous join -- for improved scheduling;
wenzelm
parents: 32057
diff changeset
   283
        else
89b9210c7506 prefer simultaneous join -- for improved scheduling;
wenzelm
parents: 32057
diff changeset
   284
          let
64574
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   285
            val name = thm_node_name thm_node;
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   286
            val prop = thm_node_prop thm_node;
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   287
            val body = Future.join (thm_node_body thm_node);
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   288
            val (x', seen') = app body (x, Inttab.update (i, ()) seen);
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   289
          in (f {serial = i, name = name, prop = prop, body = body} x', seen') end);
32726
a900d3cd47cc fold_body_thms: pass pthm identifier;
wenzelm
parents: 32711
diff changeset
   290
  in fn bodies => fn x => #1 (fold app bodies (x, Inttab.empty)) end;
30711
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   291
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   292
28815
80bb72a0f577 proof_body/pthm: removed redundant types field;
wenzelm
parents: 28812
diff changeset
   293
(* proof body *)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   294
70559
c92443e8d724 clarified type for recorded oracles;
wenzelm
parents: 70557
diff changeset
   295
val oracle_ord = prod_ord fast_string_ord (option_ord Term_Ord.fast_term_ord);
64573
e6aee01da22d tuned signature -- more abstract type thm_node;
wenzelm
parents: 64572
diff changeset
   296
fun thm_ord ((i, _): pthm, (j, _): pthm) = int_ord (j, i);
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   297
44334
605381e7c7c5 more direct balanced version Ord_List.unions;
wenzelm
parents: 44333
diff changeset
   298
val unions_oracles = Ord_List.unions oracle_ord;
605381e7c7c5 more direct balanced version Ord_List.unions;
wenzelm
parents: 44333
diff changeset
   299
val unions_thms = Ord_List.unions thm_ord;
30716
2ee706293eb5 removed misleading make_proof_body, make_oracles, make_thms, which essentially assume a *full* proof;
wenzelm
parents: 30712
diff changeset
   300
70557
5d6e9c65ea67 clarified signature;
wenzelm
parents: 70554
diff changeset
   301
fun all_oracles_of bodies =
30716
2ee706293eb5 removed misleading make_proof_body, make_oracles, make_thms, which essentially assume a *full* proof;
wenzelm
parents: 30712
diff changeset
   302
  let
32057
wenzelm
parents: 32054
diff changeset
   303
    fun collect (PBody {oracles, thms, ...}) =
70492
c65ccd813f4d proper treatment of body oracles, outside of recursion into thms graph;
wenzelm
parents: 70458
diff changeset
   304
      (if null oracles then I else apfst (cons oracles)) #>
70573
wenzelm
parents: 70569
diff changeset
   305
      (tap join_thms thms |> fold (fn (i, thm_node) => fn (res, seen) =>
wenzelm
parents: 70569
diff changeset
   306
        if Inttab.defined seen i then (res, seen)
32057
wenzelm
parents: 32054
diff changeset
   307
        else
70492
c65ccd813f4d proper treatment of body oracles, outside of recursion into thms graph;
wenzelm
parents: 70458
diff changeset
   308
          let val body = Future.join (thm_node_body thm_node)
70573
wenzelm
parents: 70569
diff changeset
   309
          in collect body (res, Inttab.update (i, ()) seen) end));
70557
5d6e9c65ea67 clarified signature;
wenzelm
parents: 70554
diff changeset
   310
  in fold collect bodies ([], Inttab.empty) |> #1 |> unions_oracles end;
30716
2ee706293eb5 removed misleading make_proof_body, make_oracles, make_thms, which essentially assume a *full* proof;
wenzelm
parents: 30712
diff changeset
   311
2ee706293eb5 removed misleading make_proof_body, make_oracles, make_thms, which essentially assume a *full* proof;
wenzelm
parents: 30712
diff changeset
   312
fun approximate_proof_body prf =
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   313
  let
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   314
    val (oracles, thms) = fold_proof_atoms false
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   315
      (fn Oracle (s, prop, _) => apfst (cons (s, prop))
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   316
        | PThm ({serial = i, name, prop, ...}, Thm_Body {body, ...}) =>
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   317
            apsnd (cons (i, make_thm_node name prop body))
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   318
        | _ => I) [prf] ([], []);
30716
2ee706293eb5 removed misleading make_proof_body, make_oracles, make_thms, which essentially assume a *full* proof;
wenzelm
parents: 30712
diff changeset
   319
  in
2ee706293eb5 removed misleading make_proof_body, make_oracles, make_thms, which essentially assume a *full* proof;
wenzelm
parents: 30712
diff changeset
   320
    PBody
39687
4e9b6ada3a21 modernized structure Ord_List;
wenzelm
parents: 39020
diff changeset
   321
     {oracles = Ord_List.make oracle_ord oracles,
4e9b6ada3a21 modernized structure Ord_List;
wenzelm
parents: 39020
diff changeset
   322
      thms = Ord_List.make thm_ord thms,
30716
2ee706293eb5 removed misleading make_proof_body, make_oracles, make_thms, which essentially assume a *full* proof;
wenzelm
parents: 30712
diff changeset
   323
      proof = prf}
2ee706293eb5 removed misleading make_proof_body, make_oracles, make_thms, which essentially assume a *full* proof;
wenzelm
parents: 30712
diff changeset
   324
  end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   325
70440
03cfef16ddb4 more diagnostic operations;
wenzelm
parents: 70439
diff changeset
   326
fun no_proof_body proof = PBody {oracles = [], thms = [], proof = proof};
70502
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
   327
val no_thm_body = thm_body (no_proof_body MinProof);
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   328
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   329
fun no_thm_proofs (Abst (x, T, prf)) = Abst (x, T, no_thm_proofs prf)
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   330
  | no_thm_proofs (AbsP (x, t, prf)) = AbsP (x, t, no_thm_proofs prf)
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   331
  | no_thm_proofs (prf % t) = no_thm_proofs prf % t
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   332
  | no_thm_proofs (prf1 %% prf2) = no_thm_proofs prf1 %% no_thm_proofs prf2
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   333
  | no_thm_proofs (PThm (header, _)) = PThm (header, no_thm_body)
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   334
  | no_thm_proofs a = a;
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   335
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   336
fun no_body_proofs (Abst (x, T, prf)) = Abst (x, T, no_body_proofs prf)
70440
03cfef16ddb4 more diagnostic operations;
wenzelm
parents: 70439
diff changeset
   337
  | no_body_proofs (AbsP (x, t, prf)) = AbsP (x, t, no_body_proofs prf)
03cfef16ddb4 more diagnostic operations;
wenzelm
parents: 70439
diff changeset
   338
  | no_body_proofs (prf % t) = no_body_proofs prf % t
03cfef16ddb4 more diagnostic operations;
wenzelm
parents: 70439
diff changeset
   339
  | no_body_proofs (prf1 %% prf2) = no_body_proofs prf1 %% no_body_proofs prf2
70502
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
   340
  | no_body_proofs (PThm (header, Thm_Body {export_proof, open_proof, body})) =
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
   341
      let
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
   342
        val body' = Future.value (no_proof_body (join_proof body));
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
   343
        val thm_body' = Thm_Body {export_proof = export_proof, open_proof = open_proof, body = body'};
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
   344
      in PThm (header, thm_body') end
70440
03cfef16ddb4 more diagnostic operations;
wenzelm
parents: 70439
diff changeset
   345
  | no_body_proofs a = a;
03cfef16ddb4 more diagnostic operations;
wenzelm
parents: 70439
diff changeset
   346
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   347
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   348
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   349
(** XML data representation **)
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   350
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   351
(* encode *)
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   352
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   353
local
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   354
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   355
open XML.Encode Term_XML.Encode;
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   356
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   357
fun proof prf = prf |> variant
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   358
 [fn MinProof => ([], []),
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   359
  fn PBound a => ([int_atom a], []),
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   360
  fn Abst (a, b, c) => ([a], pair (option typ) proof (b, c)),
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   361
  fn AbsP (a, b, c) => ([a], pair (option term) proof (b, c)),
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   362
  fn a % b => ([], pair proof (option term) (a, b)),
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   363
  fn a %% b => ([], pair proof proof (a, b)),
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   364
  fn Hyp a => ([], term a),
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   365
  fn PAxm (a, b, c) => ([a], pair term (option (list typ)) (b, c)),
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   366
  fn OfClass (a, b) => ([b], typ a),
70559
c92443e8d724 clarified type for recorded oracles;
wenzelm
parents: 70557
diff changeset
   367
  fn Oracle (a, b, c) => ([a], pair (option term) (option (list typ)) (b, c)),
70538
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
   368
  fn PThm ({serial, pos, theory_name, name, prop, types}, Thm_Body {open_proof, body, ...}) =>
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
   369
    ([int_atom serial, theory_name, name],
70497
8a19b92ec3d6 more positions;
wenzelm
parents: 70495
diff changeset
   370
      pair (list properties) (pair term (pair (option (list typ)) proof_body))
8a19b92ec3d6 more positions;
wenzelm
parents: 70495
diff changeset
   371
        (map Position.properties_of pos, (prop, (types, map_proof_of open_proof (Future.join body)))))]
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   372
and proof_body (PBody {oracles, thms, proof = prf}) =
70559
c92443e8d724 clarified type for recorded oracles;
wenzelm
parents: 70557
diff changeset
   373
  triple (list (pair string (option term))) (list pthm) proof (oracles, thms, prf)
64574
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   374
and pthm (a, thm_node) =
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   375
  pair int (triple string term proof_body)
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   376
    (a, (thm_node_name thm_node, thm_node_prop thm_node, Future.join (thm_node_body thm_node)));
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   377
70534
fb876ebbf5a7 export facts with reconstructed proof term (if possible), but its PThm boxes need to be collected separately;
wenzelm
parents: 70531
diff changeset
   378
fun full_proof prf = prf |> variant
fb876ebbf5a7 export facts with reconstructed proof term (if possible), but its PThm boxes need to be collected separately;
wenzelm
parents: 70531
diff changeset
   379
 [fn MinProof => ([], []),
fb876ebbf5a7 export facts with reconstructed proof term (if possible), but its PThm boxes need to be collected separately;
wenzelm
parents: 70531
diff changeset
   380
  fn PBound a => ([int_atom a], []),
fb876ebbf5a7 export facts with reconstructed proof term (if possible), but its PThm boxes need to be collected separately;
wenzelm
parents: 70531
diff changeset
   381
  fn Abst (a, SOME b, c) => ([a], pair typ full_proof (b, c)),
fb876ebbf5a7 export facts with reconstructed proof term (if possible), but its PThm boxes need to be collected separately;
wenzelm
parents: 70531
diff changeset
   382
  fn AbsP (a, SOME b, c) => ([a], pair term full_proof (b, c)),
fb876ebbf5a7 export facts with reconstructed proof term (if possible), but its PThm boxes need to be collected separately;
wenzelm
parents: 70531
diff changeset
   383
  fn a % SOME b => ([], pair full_proof term (a, b)),
fb876ebbf5a7 export facts with reconstructed proof term (if possible), but its PThm boxes need to be collected separately;
wenzelm
parents: 70531
diff changeset
   384
  fn a %% b => ([], pair full_proof full_proof (a, b)),
fb876ebbf5a7 export facts with reconstructed proof term (if possible), but its PThm boxes need to be collected separately;
wenzelm
parents: 70531
diff changeset
   385
  fn Hyp a => ([], term a),
fb876ebbf5a7 export facts with reconstructed proof term (if possible), but its PThm boxes need to be collected separately;
wenzelm
parents: 70531
diff changeset
   386
  fn PAxm (name, _, SOME Ts) => ([name], list typ Ts),
fb876ebbf5a7 export facts with reconstructed proof term (if possible), but its PThm boxes need to be collected separately;
wenzelm
parents: 70531
diff changeset
   387
  fn OfClass (T, c) => ([c], typ T),
70559
c92443e8d724 clarified type for recorded oracles;
wenzelm
parents: 70557
diff changeset
   388
  fn Oracle (name, prop, SOME Ts) => ([name], pair (option term) (list typ) (prop, Ts)),
70538
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
   389
  fn PThm ({serial, theory_name, name, types = SOME Ts, ...}, _) =>
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
   390
    ([int_atom serial, theory_name, name], list typ Ts)];
70534
fb876ebbf5a7 export facts with reconstructed proof term (if possible), but its PThm boxes need to be collected separately;
wenzelm
parents: 70531
diff changeset
   391
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   392
in
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   393
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   394
val encode = proof;
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   395
val encode_body = proof_body;
70534
fb876ebbf5a7 export facts with reconstructed proof term (if possible), but its PThm boxes need to be collected separately;
wenzelm
parents: 70531
diff changeset
   396
val encode_full = full_proof;
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   397
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   398
end;
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   399
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   400
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   401
(* decode *)
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   402
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   403
local
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   404
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   405
open XML.Decode Term_XML.Decode;
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   406
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   407
fun proof prf = prf |> variant
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   408
 [fn ([], []) => MinProof,
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   409
  fn ([a], []) => PBound (int_atom a),
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   410
  fn ([a], b) => let val (c, d) = pair (option typ) proof b in Abst (a, c, d) end,
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   411
  fn ([a], b) => let val (c, d) = pair (option term) proof b in AbsP (a, c, d) end,
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   412
  fn ([], a) => op % (pair proof (option term) a),
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   413
  fn ([], a) => op %% (pair proof proof a),
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   414
  fn ([], a) => Hyp (term a),
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   415
  fn ([a], b) => let val (c, d) = pair term (option (list typ)) b in PAxm (a, c, d) end,
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   416
  fn ([b], a) => OfClass (typ a, b),
70559
c92443e8d724 clarified type for recorded oracles;
wenzelm
parents: 70557
diff changeset
   417
  fn ([a], b) => let val (c, d) = pair (option term) (option (list typ)) b in Oracle (a, c, d) end,
70538
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
   418
  fn ([a, b, c], d) =>
70497
8a19b92ec3d6 more positions;
wenzelm
parents: 70495
diff changeset
   419
    let
70538
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
   420
      val ((e, (f, (g, h)))) =
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
   421
        pair (list properties) (pair term (pair (option (list typ)) proof_body)) d;
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
   422
      val header = thm_header (int_atom a) (map Position.of_properties e) b c f g;
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
   423
    in PThm (header, thm_body h) end]
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   424
and proof_body x =
70559
c92443e8d724 clarified type for recorded oracles;
wenzelm
parents: 70557
diff changeset
   425
  let val (a, b, c) = triple (list (pair string (option term))) (list pthm) proof x
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   426
  in PBody {oracles = a, thms = b, proof = c} end
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   427
and pthm x =
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   428
  let val (a, (b, c, d)) = pair int (triple string term proof_body) x
64574
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   429
  in (a, make_thm_node b c (Future.value d)) end;
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   430
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   431
in
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   432
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   433
val decode = proof;
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   434
val decode_body = proof_body;
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   435
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   436
end;
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   437
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   438
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   439
(** proof objects with different levels of detail **)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   440
64568
a504a3dec35a more careful derivation_closed / close_derivation;
wenzelm
parents: 64566
diff changeset
   441
fun atomic_proof prf =
a504a3dec35a more careful derivation_closed / close_derivation;
wenzelm
parents: 64566
diff changeset
   442
  (case prf of
a504a3dec35a more careful derivation_closed / close_derivation;
wenzelm
parents: 64566
diff changeset
   443
    Abst _ => false
a504a3dec35a more careful derivation_closed / close_derivation;
wenzelm
parents: 64566
diff changeset
   444
  | AbsP _ => false
a504a3dec35a more careful derivation_closed / close_derivation;
wenzelm
parents: 64566
diff changeset
   445
  | op % _ => false
a504a3dec35a more careful derivation_closed / close_derivation;
wenzelm
parents: 64566
diff changeset
   446
  | op %% _ => false
70402
29d81b53c40b treat MinProof like Promise before 725438ceae7c, e.g. relevant for performance of session Corec (due to Thm.derivation_closed/close_derivation);
wenzelm
parents: 70400
diff changeset
   447
  | MinProof => false
64568
a504a3dec35a more careful derivation_closed / close_derivation;
wenzelm
parents: 64566
diff changeset
   448
  | _ => true);
a504a3dec35a more careful derivation_closed / close_derivation;
wenzelm
parents: 64566
diff changeset
   449
a504a3dec35a more careful derivation_closed / close_derivation;
wenzelm
parents: 64566
diff changeset
   450
fun compact_proof (prf % _) = compact_proof prf
a504a3dec35a more careful derivation_closed / close_derivation;
wenzelm
parents: 64566
diff changeset
   451
  | compact_proof (prf1 %% prf2) = atomic_proof prf2 andalso compact_proof prf1
a504a3dec35a more careful derivation_closed / close_derivation;
wenzelm
parents: 64566
diff changeset
   452
  | compact_proof prf = atomic_proof prf;
a504a3dec35a more careful derivation_closed / close_derivation;
wenzelm
parents: 64566
diff changeset
   453
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   454
fun (prf %> t) = prf % SOME t;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   455
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   456
val proof_combt = Library.foldl (op %>);
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   457
val proof_combt' = Library.foldl (op %);
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   458
val proof_combP = Library.foldl (op %%);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   459
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20853
diff changeset
   460
fun strip_combt prf =
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   461
    let fun stripc (prf % t, ts) = stripc (prf, t::ts)
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20853
diff changeset
   462
          | stripc  x =  x
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   463
    in  stripc (prf, [])  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   464
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20853
diff changeset
   465
fun strip_combP prf =
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   466
    let fun stripc (prf %% prf', prfs) = stripc (prf, prf'::prfs)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   467
          | stripc  x =  x
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   468
    in  stripc (prf, [])  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   469
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   470
fun strip_thm (body as PBody {proof, ...}) =
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   471
  (case fst (strip_combt (fst (strip_combP proof))) of
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   472
    PThm (_, Thm_Body {body = body', ...}) => Future.join body'
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   473
  | _ => body);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   474
63857
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
   475
val mk_Abst = fold_rev (fn (s, _: typ) => fn prf => Abst (s, NONE, prf));
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   476
fun mk_AbsP (i, prf) = funpow i (fn prf => AbsP ("H", NONE, prf)) prf;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   477
36620
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36619
diff changeset
   478
fun map_proof_same term typ ofclass =
20000
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   479
  let
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   480
    val typs = Same.map typ;
20000
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   481
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   482
    fun proof (Abst (s, T, prf)) =
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   483
          (Abst (s, Same.map_option typ T, Same.commit proof prf)
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   484
            handle Same.SAME => Abst (s, T, proof prf))
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   485
      | proof (AbsP (s, t, prf)) =
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   486
          (AbsP (s, Same.map_option term t, Same.commit proof prf)
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   487
            handle Same.SAME => AbsP (s, t, proof prf))
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   488
      | proof (prf % t) =
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   489
          (proof prf % Same.commit (Same.map_option term) t
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   490
            handle Same.SAME => prf % Same.map_option term t)
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   491
      | proof (prf1 %% prf2) =
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   492
          (proof prf1 %% Same.commit proof prf2
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   493
            handle Same.SAME => prf1 %% proof prf2)
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   494
      | proof (PAxm (a, prop, SOME Ts)) = PAxm (a, prop, SOME (typs Ts))
36620
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36619
diff changeset
   495
      | proof (OfClass T_c) = ofclass T_c
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   496
      | proof (Oracle (a, prop, SOME Ts)) = Oracle (a, prop, SOME (typs Ts))
70538
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
   497
      | proof (PThm ({serial, pos, theory_name, name, prop, types = SOME Ts}, thm_body)) =
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
   498
          PThm (thm_header serial pos theory_name name prop (SOME (typs Ts)), thm_body)
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   499
      | proof _ = raise Same.SAME;
36620
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36619
diff changeset
   500
  in proof end;
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36619
diff changeset
   501
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36619
diff changeset
   502
fun map_proof_terms_same term typ = map_proof_same term typ (fn (T, c) => OfClass (typ T, c));
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36619
diff changeset
   503
fun map_proof_types_same typ = map_proof_terms_same (Term_Subst.map_types_same typ) typ;
20000
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   504
22662
3e492ba59355 canonical merge operations
haftmann
parents: 21646
diff changeset
   505
fun same eq f x =
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   506
  let val x' = f x
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   507
  in if eq (x, x') then raise Same.SAME else x' end;
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   508
36620
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36619
diff changeset
   509
fun map_proof_terms f g = Same.commit (map_proof_terms_same (same (op =) f) (same (op =) g));
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36619
diff changeset
   510
fun map_proof_types f = Same.commit (map_proof_types_same (same (op =) f));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   511
20147
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   512
fun fold_proof_terms f g (Abst (_, SOME T, prf)) = g T #> fold_proof_terms f g prf
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   513
  | fold_proof_terms f g (Abst (_, NONE, prf)) = fold_proof_terms f g prf
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   514
  | fold_proof_terms f g (AbsP (_, SOME t, prf)) = f t #> fold_proof_terms f g prf
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   515
  | fold_proof_terms f g (AbsP (_, NONE, prf)) = fold_proof_terms f g prf
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   516
  | fold_proof_terms f g (prf % SOME t) = fold_proof_terms f g prf #> f t
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   517
  | fold_proof_terms f g (prf % NONE) = fold_proof_terms f g prf
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   518
  | fold_proof_terms f g (prf1 %% prf2) =
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   519
      fold_proof_terms f g prf1 #> fold_proof_terms f g prf2
20159
wenzelm
parents: 20147
diff changeset
   520
  | fold_proof_terms _ g (PAxm (_, _, SOME Ts)) = fold g Ts
31943
5e960a0780a2 renamed inclass/Inclass to of_class/OfClass, in accordance to of_sort;
wenzelm
parents: 31903
diff changeset
   521
  | fold_proof_terms _ g (OfClass (T, _)) = g T
28828
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
   522
  | fold_proof_terms _ g (Oracle (_, _, SOME Ts)) = fold g Ts
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   523
  | fold_proof_terms _ g (PThm ({types = SOME Ts, ...}, _)) = fold g Ts
20147
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   524
  | fold_proof_terms _ _ _ = I;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   525
20300
963bf056e8f7 replaced maxidx_of_proof by maxidx_proof;
wenzelm
parents: 20159
diff changeset
   526
fun maxidx_proof prf = fold_proof_terms Term.maxidx_term Term.maxidx_typ prf;
12868
cdf338ef5fad New function maxidx_of_proof.
berghofe
parents: 12497
diff changeset
   527
13744
2241191a3c54 Added size_of_proof.
berghofe
parents: 13662
diff changeset
   528
fun size_of_proof (Abst (_, _, prf)) = 1 + size_of_proof prf
63857
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
   529
  | size_of_proof (AbsP (_, _, prf)) = 1 + size_of_proof prf
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   530
  | size_of_proof (prf % _) = 1 + size_of_proof prf
13744
2241191a3c54 Added size_of_proof.
berghofe
parents: 13662
diff changeset
   531
  | size_of_proof (prf1 %% prf2) = size_of_proof prf1 + size_of_proof prf2
2241191a3c54 Added size_of_proof.
berghofe
parents: 13662
diff changeset
   532
  | size_of_proof _ = 1;
2241191a3c54 Added size_of_proof.
berghofe
parents: 13662
diff changeset
   533
70417
eb6ff14767cd tuned signature;
wenzelm
parents: 70416
diff changeset
   534
fun change_types types (PAxm (name, prop, _)) = PAxm (name, prop, types)
eb6ff14767cd tuned signature;
wenzelm
parents: 70416
diff changeset
   535
  | change_types (SOME [T]) (OfClass (_, c)) = OfClass (T, c)
eb6ff14767cd tuned signature;
wenzelm
parents: 70416
diff changeset
   536
  | change_types types (Oracle (name, prop, _)) = Oracle (name, prop, types)
70538
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
   537
  | change_types types (PThm ({serial, pos, theory_name, name, prop, types = _}, thm_body)) =
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
   538
      PThm (thm_header serial pos theory_name name prop types, thm_body)
70417
eb6ff14767cd tuned signature;
wenzelm
parents: 70416
diff changeset
   539
  | change_types _ prf = prf;
12907
27e6d344d724 New function change_type for changing type assignments of theorems,
berghofe
parents: 12890
diff changeset
   540
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   541
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   542
(* utilities *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   543
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   544
fun strip_abs (_::Ts) (Abs (_, _, t)) = strip_abs Ts t
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   545
  | strip_abs _ t = t;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   546
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   547
fun mk_abs Ts t = Library.foldl (fn (t', T) => Abs ("", T, t')) (t, Ts);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   548
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   549
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20853
diff changeset
   550
(*Abstraction of a proof term over its occurrences of v,
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   551
    which must contain no loose bound variables.
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   552
  The resulting proof term is ready to become the body of an Abst.*)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   553
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   554
fun prf_abstract_over v =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   555
  let
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   556
    fun abst' lev u = if v aconv u then Bound lev else
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   557
      (case u of
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   558
         Abs (a, T, t) => Abs (a, T, abst' (lev + 1) t)
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   559
       | f $ t => (abst' lev f $ absth' lev t handle Same.SAME => f $ abst' lev t)
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   560
       | _ => raise Same.SAME)
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   561
    and absth' lev t = (abst' lev t handle Same.SAME => t);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   562
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   563
    fun abst lev (AbsP (a, t, prf)) =
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   564
          (AbsP (a, Same.map_option (abst' lev) t, absth lev prf)
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   565
           handle Same.SAME => AbsP (a, t, abst lev prf))
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   566
      | abst lev (Abst (a, T, prf)) = Abst (a, T, abst (lev + 1) prf)
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   567
      | abst lev (prf1 %% prf2) = (abst lev prf1 %% absth lev prf2
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   568
          handle Same.SAME => prf1 %% abst lev prf2)
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   569
      | abst lev (prf % t) = (abst lev prf % Option.map (absth' lev) t
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   570
          handle Same.SAME => prf % Same.map_option (abst' lev) t)
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   571
      | abst _ _ = raise Same.SAME
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   572
    and absth lev prf = (abst lev prf handle Same.SAME => prf);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   573
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   574
  in absth 0 end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   575
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   576
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   577
(*increments a proof term's non-local bound variables
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   578
  required when moving a proof term within abstractions
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   579
     inc is  increment for bound variables
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   580
     lev is  level at which a bound variable is considered 'loose'*)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   581
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   582
fun incr_bv' inct tlev t = incr_bv (inct, tlev, t);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   583
63857
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
   584
fun prf_incr_bv' incP _ Plev _ (PBound i) =
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   585
      if i >= Plev then PBound (i+incP) else raise Same.SAME
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   586
  | prf_incr_bv' incP inct Plev tlev (AbsP (a, t, body)) =
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   587
      (AbsP (a, Same.map_option (same (op =) (incr_bv' inct tlev)) t,
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   588
         prf_incr_bv incP inct (Plev+1) tlev body) handle Same.SAME =>
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   589
           AbsP (a, t, prf_incr_bv' incP inct (Plev+1) tlev body))
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   590
  | prf_incr_bv' incP inct Plev tlev (Abst (a, T, body)) =
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   591
      Abst (a, T, prf_incr_bv' incP inct Plev (tlev+1) body)
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20853
diff changeset
   592
  | prf_incr_bv' incP inct Plev tlev (prf %% prf') =
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   593
      (prf_incr_bv' incP inct Plev tlev prf %% prf_incr_bv incP inct Plev tlev prf'
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   594
       handle Same.SAME => prf %% prf_incr_bv' incP inct Plev tlev prf')
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20853
diff changeset
   595
  | prf_incr_bv' incP inct Plev tlev (prf % t) =
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   596
      (prf_incr_bv' incP inct Plev tlev prf % Option.map (incr_bv' inct tlev) t
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   597
       handle Same.SAME => prf % Same.map_option (same (op =) (incr_bv' inct tlev)) t)
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   598
  | prf_incr_bv' _ _ _ _ _ = raise Same.SAME
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   599
and prf_incr_bv incP inct Plev tlev prf =
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   600
      (prf_incr_bv' incP inct Plev tlev prf handle Same.SAME => prf);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   601
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   602
fun incr_pboundvars  0 0 prf = prf
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   603
  | incr_pboundvars incP inct prf = prf_incr_bv incP inct 0 0 prf;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   604
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   605
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   606
fun prf_loose_bvar1 (prf1 %% prf2) k = prf_loose_bvar1 prf1 k orelse prf_loose_bvar1 prf2 k
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   607
  | prf_loose_bvar1 (prf % SOME t) k = prf_loose_bvar1 prf k orelse loose_bvar1 (t, k)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   608
  | prf_loose_bvar1 (_ % NONE) _ = true
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   609
  | prf_loose_bvar1 (AbsP (_, SOME t, prf)) k = loose_bvar1 (t, k) orelse prf_loose_bvar1 prf k
63857
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
   610
  | prf_loose_bvar1 (AbsP (_, NONE, _)) _ = true
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   611
  | prf_loose_bvar1 (Abst (_, _, prf)) k = prf_loose_bvar1 prf (k+1)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   612
  | prf_loose_bvar1 _ _ = false;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   613
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   614
fun prf_loose_Pbvar1 (PBound i) k = i = k
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   615
  | prf_loose_Pbvar1 (prf1 %% prf2) k = prf_loose_Pbvar1 prf1 k orelse prf_loose_Pbvar1 prf2 k
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   616
  | prf_loose_Pbvar1 (prf % _) k = prf_loose_Pbvar1 prf k
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   617
  | prf_loose_Pbvar1 (AbsP (_, _, prf)) k = prf_loose_Pbvar1 prf (k+1)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   618
  | prf_loose_Pbvar1 (Abst (_, _, prf)) k = prf_loose_Pbvar1 prf k
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   619
  | prf_loose_Pbvar1 _ _ = false;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   620
63857
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
   621
fun prf_add_loose_bnos plev _ (PBound i) (is, js) =
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   622
      if i < plev then (is, js) else (insert (op =) (i-plev) is, js)
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   623
  | prf_add_loose_bnos plev tlev (prf1 %% prf2) p =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   624
      prf_add_loose_bnos plev tlev prf2
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   625
        (prf_add_loose_bnos plev tlev prf1 p)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   626
  | prf_add_loose_bnos plev tlev (prf % opt) (is, js) =
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
   627
      prf_add_loose_bnos plev tlev prf
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
   628
        (case opt of
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   629
          NONE => (is, insert (op =) ~1 js)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   630
        | SOME t => (is, add_loose_bnos (t, tlev, js)))
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   631
  | prf_add_loose_bnos plev tlev (AbsP (_, opt, prf)) (is, js) =
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
   632
      prf_add_loose_bnos (plev+1) tlev prf
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
   633
        (case opt of
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   634
          NONE => (is, insert (op =) ~1 js)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   635
        | SOME t => (is, add_loose_bnos (t, tlev, js)))
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   636
  | prf_add_loose_bnos plev tlev (Abst (_, _, prf)) p =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   637
      prf_add_loose_bnos plev (tlev+1) prf p
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   638
  | prf_add_loose_bnos _ _ _ _ = ([], []);
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   639
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   640
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   641
(* substitutions *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   642
31977
e03059ae2d82 renamed structure TermSubst to Term_Subst;
wenzelm
parents: 31943
diff changeset
   643
fun del_conflicting_tvars envT T = Term_Subst.instantiateT
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19357
diff changeset
   644
  (map_filter (fn ixnS as (_, S) =>
26328
b2d6f520172c Type.lookup now curried
haftmann
parents: 23780
diff changeset
   645
     (Type.lookup envT ixnS; NONE) handle TYPE _ =>
44118
69e29cf993c0 avoid OldTerm operations -- with subtle changes of semantics;
wenzelm
parents: 44116
diff changeset
   646
        SOME (ixnS, TFree ("'dummy", S))) (Term.add_tvarsT T [])) T;
18316
4b62e0cb3aa8 Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents: 18030
diff changeset
   647
31977
e03059ae2d82 renamed structure TermSubst to Term_Subst;
wenzelm
parents: 31943
diff changeset
   648
fun del_conflicting_vars env t = Term_Subst.instantiate
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19357
diff changeset
   649
  (map_filter (fn ixnS as (_, S) =>
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   650
     (Type.lookup (Envir.type_env env) ixnS; NONE) handle TYPE _ =>
44118
69e29cf993c0 avoid OldTerm operations -- with subtle changes of semantics;
wenzelm
parents: 44116
diff changeset
   651
        SOME (ixnS, TFree ("'dummy", S))) (Term.add_tvars t []),
69e29cf993c0 avoid OldTerm operations -- with subtle changes of semantics;
wenzelm
parents: 44116
diff changeset
   652
   map_filter (fn (ixnT as (_, T)) =>
51700
c8f2bad67dbb tuned signature;
wenzelm
parents: 51100
diff changeset
   653
     (Envir.lookup env ixnT; NONE) handle TYPE _ =>
44118
69e29cf993c0 avoid OldTerm operations -- with subtle changes of semantics;
wenzelm
parents: 44116
diff changeset
   654
        SOME (ixnT, Free ("dummy", T))) (Term.add_vars t [])) t;
18316
4b62e0cb3aa8 Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents: 18030
diff changeset
   655
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   656
fun norm_proof env =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   657
  let
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   658
    val envT = Envir.type_env env;
18316
4b62e0cb3aa8 Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents: 18030
diff changeset
   659
    fun msg s = warning ("type conflict in norm_proof:\n" ^ s);
4b62e0cb3aa8 Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents: 18030
diff changeset
   660
    fun htype f t = f env t handle TYPE (s, _, _) =>
4b62e0cb3aa8 Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents: 18030
diff changeset
   661
      (msg s; f env (del_conflicting_vars env t));
4b62e0cb3aa8 Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents: 18030
diff changeset
   662
    fun htypeT f T = f envT T handle TYPE (s, _, _) =>
4b62e0cb3aa8 Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents: 18030
diff changeset
   663
      (msg s; f envT (del_conflicting_tvars envT T));
4b62e0cb3aa8 Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents: 18030
diff changeset
   664
    fun htypeTs f Ts = f envT Ts handle TYPE (s, _, _) =>
4b62e0cb3aa8 Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents: 18030
diff changeset
   665
      (msg s; f envT (map (del_conflicting_tvars envT) Ts));
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   666
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   667
    fun norm (Abst (s, T, prf)) =
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   668
          (Abst (s, Same.map_option (htypeT Envir.norm_type_same) T, Same.commit norm prf)
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   669
            handle Same.SAME => Abst (s, T, norm prf))
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   670
      | norm (AbsP (s, t, prf)) =
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   671
          (AbsP (s, Same.map_option (htype Envir.norm_term_same) t, Same.commit norm prf)
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   672
            handle Same.SAME => AbsP (s, t, norm prf))
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   673
      | norm (prf % t) =
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   674
          (norm prf % Option.map (htype Envir.norm_term) t
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   675
            handle Same.SAME => prf % Same.map_option (htype Envir.norm_term_same) t)
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   676
      | norm (prf1 %% prf2) =
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   677
          (norm prf1 %% Same.commit norm prf2
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   678
            handle Same.SAME => prf1 %% norm prf2)
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   679
      | norm (PAxm (s, prop, Ts)) =
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   680
          PAxm (s, prop, Same.map_option (htypeTs Envir.norm_types_same) Ts)
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   681
      | norm (OfClass (T, c)) =
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   682
          OfClass (htypeT Envir.norm_type_same T, c)
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   683
      | norm (Oracle (s, prop, Ts)) =
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   684
          Oracle (s, prop, Same.map_option (htypeTs Envir.norm_types_same) Ts)
70538
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
   685
      | norm (PThm ({serial = i, pos = p, theory_name, name = a, prop = t, types = Ts}, thm_body)) =
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
   686
          PThm (thm_header i p theory_name a t
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
   687
            (Same.map_option (htypeTs Envir.norm_types_same) Ts), thm_body)
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   688
      | norm _ = raise Same.SAME;
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   689
  in Same.commit norm end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   690
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   691
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   692
(* remove some types in proof term (to save space) *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   693
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   694
fun remove_types (Abs (s, _, t)) = Abs (s, dummyT, remove_types t)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   695
  | remove_types (t $ u) = remove_types t $ remove_types u
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   696
  | remove_types (Const (s, _)) = Const (s, dummyT)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   697
  | remove_types t = t;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   698
32032
a6a6e8031c14 tuned/modernized Envir operations;
wenzelm
parents: 32027
diff changeset
   699
fun remove_types_env (Envir.Envir {maxidx, tenv, tyenv}) =
39020
ac0f24f850c9 replaced Table.map' by Table.map
haftmann
parents: 37297
diff changeset
   700
  Envir.Envir {maxidx = maxidx, tenv = Vartab.map (K (apsnd remove_types)) tenv, tyenv = tyenv};
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   701
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   702
fun norm_proof' env prf = norm_proof (remove_types_env env) prf;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   703
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   704
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   705
(* substitution of bound variables *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   706
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   707
fun prf_subst_bounds args prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   708
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   709
    val n = length args;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   710
    fun subst' lev (Bound i) =
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   711
         (if i<lev then raise Same.SAME    (*var is locally bound*)
30146
a77fc0209723 eliminated NJ's List.nth;
wenzelm
parents: 29642
diff changeset
   712
          else  incr_boundvars lev (nth args (i-lev))
43278
1fbdcebb364b more robust exception pattern General.Subscript;
wenzelm
parents: 41699
diff changeset
   713
                  handle General.Subscript => Bound (i-n))  (*loose: change it*)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   714
      | subst' lev (Abs (a, T, body)) = Abs (a, T,  subst' (lev+1) body)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   715
      | subst' lev (f $ t) = (subst' lev f $ substh' lev t
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   716
          handle Same.SAME => f $ subst' lev t)
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   717
      | subst' _ _ = raise Same.SAME
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   718
    and substh' lev t = (subst' lev t handle Same.SAME => t);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   719
32057
wenzelm
parents: 32054
diff changeset
   720
    fun subst lev (AbsP (a, t, body)) =
wenzelm
parents: 32054
diff changeset
   721
        (AbsP (a, Same.map_option (subst' lev) t, substh lev body)
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   722
          handle Same.SAME => AbsP (a, t, subst lev body))
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   723
      | subst lev (Abst (a, T, body)) = Abst (a, T, subst (lev+1) body)
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   724
      | subst lev (prf %% prf') = (subst lev prf %% substh lev prf'
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   725
          handle Same.SAME => prf %% subst lev prf')
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   726
      | subst lev (prf % t) = (subst lev prf % Option.map (substh' lev) t
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   727
          handle Same.SAME => prf % Same.map_option (subst' lev) t)
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   728
      | subst _ _ = raise Same.SAME
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   729
    and substh lev prf = (subst lev prf handle Same.SAME => prf);
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
   730
  in (case args of [] => prf | _ => substh 0 prf) end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   731
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   732
fun prf_subst_pbounds args prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   733
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   734
    val n = length args;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   735
    fun subst (PBound i) Plev tlev =
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   736
         (if i < Plev then raise Same.SAME    (*var is locally bound*)
30146
a77fc0209723 eliminated NJ's List.nth;
wenzelm
parents: 29642
diff changeset
   737
          else incr_pboundvars Plev tlev (nth args (i-Plev))
43278
1fbdcebb364b more robust exception pattern General.Subscript;
wenzelm
parents: 41699
diff changeset
   738
                 handle General.Subscript => PBound (i-n)  (*loose: change it*))
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   739
      | subst (AbsP (a, t, body)) Plev tlev = AbsP (a, t, subst body (Plev+1) tlev)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   740
      | subst (Abst (a, T, body)) Plev tlev = Abst (a, T, subst body Plev (tlev+1))
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   741
      | subst (prf %% prf') Plev tlev = (subst prf Plev tlev %% substh prf' Plev tlev
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   742
          handle Same.SAME => prf %% subst prf' Plev tlev)
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   743
      | subst (prf % t) Plev tlev = subst prf Plev tlev % t
63857
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
   744
      | subst  _ _ _ = raise Same.SAME
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   745
    and substh prf Plev tlev = (subst prf Plev tlev handle Same.SAME => prf)
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
   746
  in (case args of [] => prf | _ => substh prf 0 0) end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   747
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   748
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   749
(* freezing and thawing of variables in proof terms *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   750
44101
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   751
local
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   752
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   753
fun frzT names =
44101
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   754
  map_type_tvar (fn (ixn, S) => TFree (the (AList.lookup (op =) names ixn), S));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   755
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   756
fun thawT names =
44101
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   757
  map_type_tfree (fn (a, S) =>
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   758
    (case AList.lookup (op =) names a of
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   759
      NONE => TFree (a, S)
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   760
    | SOME ixn => TVar (ixn, S)));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   761
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   762
fun freeze names names' (t $ u) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   763
      freeze names names' t $ freeze names names' u
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   764
  | freeze names names' (Abs (s, T, t)) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   765
      Abs (s, frzT names' T, freeze names names' t)
63857
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
   766
  | freeze _ names' (Const (s, T)) = Const (s, frzT names' T)
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
   767
  | freeze _ names' (Free (s, T)) = Free (s, frzT names' T)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   768
  | freeze names names' (Var (ixn, T)) =
44101
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   769
      Free (the (AList.lookup (op =) names ixn), frzT names' T)
63857
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
   770
  | freeze _ _ t = t;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   771
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   772
fun thaw names names' (t $ u) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   773
      thaw names names' t $ thaw names names' u
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   774
  | thaw names names' (Abs (s, T, t)) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   775
      Abs (s, thawT names' T, thaw names names' t)
63857
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
   776
  | thaw _ names' (Const (s, T)) = Const (s, thawT names' T)
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20853
diff changeset
   777
  | thaw names names' (Free (s, T)) =
44101
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   778
      let val T' = thawT names' T in
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   779
        (case AList.lookup (op =) names s of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   780
          NONE => Free (s, T')
44101
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   781
        | SOME ixn => Var (ixn, T'))
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   782
      end
63857
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
   783
  | thaw _ names' (Var (ixn, T)) = Var (ixn, thawT names' T)
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
   784
  | thaw _ _ t = t;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   785
44101
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   786
in
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   787
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   788
fun freeze_thaw_prf prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   789
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   790
    val (fs, Tfs, vs, Tvs) = fold_proof_terms
20147
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   791
      (fn t => fn (fs, Tfs, vs, Tvs) =>
29261
7ee78cc8ef2c freeze_thaw: canonical Term.add_XXX operations;
wenzelm
parents: 28971
diff changeset
   792
         (Term.add_free_names t fs, Term.add_tfree_names t Tfs,
7ee78cc8ef2c freeze_thaw: canonical Term.add_XXX operations;
wenzelm
parents: 28971
diff changeset
   793
          Term.add_var_names t vs, Term.add_tvar_names t Tvs))
20147
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   794
      (fn T => fn (fs, Tfs, vs, Tvs) =>
29261
7ee78cc8ef2c freeze_thaw: canonical Term.add_XXX operations;
wenzelm
parents: 28971
diff changeset
   795
         (fs, Term.add_tfree_namesT T Tfs,
7ee78cc8ef2c freeze_thaw: canonical Term.add_XXX operations;
wenzelm
parents: 28971
diff changeset
   796
          vs, Term.add_tvar_namesT T Tvs))
20147
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   797
      prf ([], [], [], []);
29261
7ee78cc8ef2c freeze_thaw: canonical Term.add_XXX operations;
wenzelm
parents: 28971
diff changeset
   798
    val names = vs ~~ Name.variant_list fs (map fst vs);
20071
8f3e1ddb50e6 replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents: 20000
diff changeset
   799
    val names' = Tvs ~~ Name.variant_list Tfs (map fst Tvs);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   800
    val rnames = map swap names;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   801
    val rnames' = map swap names';
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   802
  in
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   803
    (map_proof_terms (freeze names names') (frzT names') prf,
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   804
     map_proof_terms (thaw rnames rnames') (thawT rnames'))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   805
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   806
44101
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   807
end;
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   808
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   809
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   810
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   811
(** proof terms as pure terms **)
70388
e31271559de8 global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents: 68068
diff changeset
   812
e31271559de8 global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents: 68068
diff changeset
   813
val proofT = Type ("Pure.proof", []);
e31271559de8 global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents: 68068
diff changeset
   814
e31271559de8 global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents: 68068
diff changeset
   815
local
e31271559de8 global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents: 68068
diff changeset
   816
70392
wenzelm
parents: 70391
diff changeset
   817
val AbsPt = Const ("Pure.AbsP", propT --> (proofT --> proofT) --> proofT);
wenzelm
parents: 70391
diff changeset
   818
val AppPt = Const ("Pure.AppP", proofT --> proofT --> proofT);
70388
e31271559de8 global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents: 68068
diff changeset
   819
val Hypt = Const ("Pure.Hyp", propT --> proofT);
e31271559de8 global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents: 68068
diff changeset
   820
val Oraclet = Const ("Pure.Oracle", propT --> proofT);
e31271559de8 global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents: 68068
diff changeset
   821
val MinProoft = Const ("Pure.MinProof", proofT);
e31271559de8 global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents: 68068
diff changeset
   822
70392
wenzelm
parents: 70391
diff changeset
   823
fun AppT T prf =
wenzelm
parents: 70391
diff changeset
   824
  Const ("Pure.Appt", proofT --> Term.itselfT T --> proofT) $ prf $ Logic.mk_type T;
wenzelm
parents: 70391
diff changeset
   825
70391
47fd6c7b9559 more accurate type information;
wenzelm
parents: 70388
diff changeset
   826
fun OfClasst (T, c) =
47fd6c7b9559 more accurate type information;
wenzelm
parents: 70388
diff changeset
   827
  let val U = Term.itselfT T --> propT
47fd6c7b9559 more accurate type information;
wenzelm
parents: 70388
diff changeset
   828
  in Const ("Pure.OfClass", U --> proofT) $ Const (Logic.const_of_class c, U) end;
47fd6c7b9559 more accurate type information;
wenzelm
parents: 70388
diff changeset
   829
70511
252e86967a69 tuned -- eliminated unused parameters;
wenzelm
parents: 70510
diff changeset
   830
fun term_of _ (PThm ({name, types = Ts, ...}, _)) =
252e86967a69 tuned -- eliminated unused parameters;
wenzelm
parents: 70510
diff changeset
   831
      fold AppT (these Ts) (Const (Long_Name.append "thm" name, proofT))
252e86967a69 tuned -- eliminated unused parameters;
wenzelm
parents: 70510
diff changeset
   832
  | term_of _ (PAxm (name, _, Ts)) =
252e86967a69 tuned -- eliminated unused parameters;
wenzelm
parents: 70510
diff changeset
   833
      fold AppT (these Ts) (Const (Long_Name.append "axm" name, proofT))
252e86967a69 tuned -- eliminated unused parameters;
wenzelm
parents: 70510
diff changeset
   834
  | term_of _ (OfClass (T, c)) = AppT T (OfClasst (T, c))
252e86967a69 tuned -- eliminated unused parameters;
wenzelm
parents: 70510
diff changeset
   835
  | term_of _ (PBound i) = Bound i
252e86967a69 tuned -- eliminated unused parameters;
wenzelm
parents: 70510
diff changeset
   836
  | term_of Ts (Abst (s, opT, prf)) =
252e86967a69 tuned -- eliminated unused parameters;
wenzelm
parents: 70510
diff changeset
   837
      let val T = the_default dummyT opT in
252e86967a69 tuned -- eliminated unused parameters;
wenzelm
parents: 70510
diff changeset
   838
        Const ("Pure.Abst", (T --> proofT) --> proofT) $
252e86967a69 tuned -- eliminated unused parameters;
wenzelm
parents: 70510
diff changeset
   839
          Abs (s, T, term_of (T::Ts) (incr_pboundvars 1 0 prf))
252e86967a69 tuned -- eliminated unused parameters;
wenzelm
parents: 70510
diff changeset
   840
      end
252e86967a69 tuned -- eliminated unused parameters;
wenzelm
parents: 70510
diff changeset
   841
  | term_of Ts (AbsP (s, t, prf)) =
252e86967a69 tuned -- eliminated unused parameters;
wenzelm
parents: 70510
diff changeset
   842
      AbsPt $ the_default Term.dummy_prop t $
252e86967a69 tuned -- eliminated unused parameters;
wenzelm
parents: 70510
diff changeset
   843
        Abs (s, proofT, term_of (proofT::Ts) (incr_pboundvars 0 1 prf))
252e86967a69 tuned -- eliminated unused parameters;
wenzelm
parents: 70510
diff changeset
   844
  | term_of Ts (prf1 %% prf2) =
252e86967a69 tuned -- eliminated unused parameters;
wenzelm
parents: 70510
diff changeset
   845
      AppPt $ term_of Ts prf1 $ term_of Ts prf2
252e86967a69 tuned -- eliminated unused parameters;
wenzelm
parents: 70510
diff changeset
   846
  | term_of Ts (prf % opt) =
252e86967a69 tuned -- eliminated unused parameters;
wenzelm
parents: 70510
diff changeset
   847
      let
252e86967a69 tuned -- eliminated unused parameters;
wenzelm
parents: 70510
diff changeset
   848
        val t = the_default Term.dummy opt;
252e86967a69 tuned -- eliminated unused parameters;
wenzelm
parents: 70510
diff changeset
   849
        val T = fastype_of1 (Ts, t) handle TERM _ => dummyT;
252e86967a69 tuned -- eliminated unused parameters;
wenzelm
parents: 70510
diff changeset
   850
      in Const ("Pure.Appt", proofT --> T --> proofT) $ term_of Ts prf $ t end
252e86967a69 tuned -- eliminated unused parameters;
wenzelm
parents: 70510
diff changeset
   851
  | term_of _ (Hyp t) = Hypt $ t
70559
c92443e8d724 clarified type for recorded oracles;
wenzelm
parents: 70557
diff changeset
   852
  | term_of _ (Oracle (_, t, _)) = Oraclet $ oracle_prop t
70511
252e86967a69 tuned -- eliminated unused parameters;
wenzelm
parents: 70510
diff changeset
   853
  | term_of _ MinProof = MinProoft;
252e86967a69 tuned -- eliminated unused parameters;
wenzelm
parents: 70510
diff changeset
   854
70388
e31271559de8 global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents: 68068
diff changeset
   855
in
e31271559de8 global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents: 68068
diff changeset
   856
70511
252e86967a69 tuned -- eliminated unused parameters;
wenzelm
parents: 70510
diff changeset
   857
val term_of_proof = term_of [];
70388
e31271559de8 global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents: 68068
diff changeset
   858
e31271559de8 global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents: 68068
diff changeset
   859
end;
e31271559de8 global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents: 68068
diff changeset
   860
e31271559de8 global declaration of abstract syntax for proof terms, with qualified names;
wenzelm
parents: 68068
diff changeset
   861
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   862
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   863
(** inference rules **)
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   864
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   865
(* implication introduction *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   866
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
   867
fun gen_implies_intr_proof f h prf =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   868
  let
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   869
    fun abshyp i (Hyp t) = if h aconv t then PBound i else raise Same.SAME
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   870
      | abshyp i (Abst (s, T, prf)) = Abst (s, T, abshyp i prf)
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   871
      | abshyp i (AbsP (s, t, prf)) = AbsP (s, t, abshyp (i + 1) prf)
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   872
      | abshyp i (prf % t) = abshyp i prf % t
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   873
      | abshyp i (prf1 %% prf2) =
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   874
          (abshyp i prf1 %% abshyph i prf2
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   875
            handle Same.SAME => prf1 %% abshyp i prf2)
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   876
      | abshyp _ _ = raise Same.SAME
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   877
    and abshyph i prf = (abshyp i prf handle Same.SAME => prf);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   878
  in
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
   879
    AbsP ("H", f h, abshyph 0 prf)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   880
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   881
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
   882
val implies_intr_proof = gen_implies_intr_proof (K NONE);
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
   883
val implies_intr_proof' = gen_implies_intr_proof SOME;
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
   884
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   885
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   886
(* forall introduction *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   887
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   888
fun forall_intr_proof x a prf = Abst (a, NONE, prf_abstract_over x prf);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   889
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
   890
fun forall_intr_proof' t prf =
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
   891
  let val (a, T) = (case t of Var ((a, _), T) => (a, T) | Free p => p)
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
   892
  in Abst (a, SOME T, prf_abstract_over t prf) end;
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
   893
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   894
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   895
(* varify *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   896
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   897
fun varify_proof t fixed prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   898
  let
19304
15f001295a7b remove (op =);
wenzelm
parents: 19222
diff changeset
   899
    val fs = Term.fold_types (Term.fold_atyps
15f001295a7b remove (op =);
wenzelm
parents: 19222
diff changeset
   900
      (fn TFree v => if member (op =) fixed v then I else insert (op =) v | _ => I)) t [];
29261
7ee78cc8ef2c freeze_thaw: canonical Term.add_XXX operations;
wenzelm
parents: 28971
diff changeset
   901
    val used = Name.context
7ee78cc8ef2c freeze_thaw: canonical Term.add_XXX operations;
wenzelm
parents: 28971
diff changeset
   902
      |> fold_types (fold_atyps (fn TVar ((a, _), _) => Name.declare a | _ => I)) t;
43326
47cf4bc789aa simplified Name.variant -- discontinued builtin fold_map;
wenzelm
parents: 43324
diff changeset
   903
    val fmap = fs ~~ #1 (fold_map Name.variant (map fst fs) used);
63857
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
   904
    fun thaw (a, S) =
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
   905
      (case AList.lookup (op =) fmap (a, S) of
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
   906
        NONE => TFree (a, S)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   907
      | SOME b => TVar ((b, 0), S));
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   908
  in map_proof_terms (map_types (map_type_tfree thaw)) (map_type_tfree thaw) prf end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   909
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   910
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   911
local
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   912
44116
c70257b4cb7e avoid OldTerm operations -- with subtle changes of semantics;
wenzelm
parents: 44113
diff changeset
   913
fun new_name ix (pairs, used) =
43324
2b47822868e4 discontinued Name.variant to emphasize that this is old-style / indirect;
wenzelm
parents: 43278
diff changeset
   914
  let val v = singleton (Name.variant_list used) (string_of_indexname ix)
44116
c70257b4cb7e avoid OldTerm operations -- with subtle changes of semantics;
wenzelm
parents: 44113
diff changeset
   915
  in ((ix, v) :: pairs, v :: used) end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   916
44116
c70257b4cb7e avoid OldTerm operations -- with subtle changes of semantics;
wenzelm
parents: 44113
diff changeset
   917
fun freeze_one alist (ix, sort) =
c70257b4cb7e avoid OldTerm operations -- with subtle changes of semantics;
wenzelm
parents: 44113
diff changeset
   918
  (case AList.lookup (op =) alist ix of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   919
    NONE => TVar (ix, sort)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   920
  | SOME name => TFree (name, sort));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   921
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   922
in
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   923
36619
deadcd0ec431 renamed Proofterm.freezeT to Proofterm.legacy_freezeT (cf. 88756a5a92fc);
wenzelm
parents: 35851
diff changeset
   924
fun legacy_freezeT t prf =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   925
  let
44116
c70257b4cb7e avoid OldTerm operations -- with subtle changes of semantics;
wenzelm
parents: 44113
diff changeset
   926
    val used = Term.add_tfree_names t [];
c70257b4cb7e avoid OldTerm operations -- with subtle changes of semantics;
wenzelm
parents: 44113
diff changeset
   927
    val (alist, _) = fold_rev new_name (map #1 (Term.add_tvars t [])) ([], used);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   928
  in
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   929
    (case alist of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   930
      [] => prf (*nothing to do!*)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   931
    | _ =>
44116
c70257b4cb7e avoid OldTerm operations -- with subtle changes of semantics;
wenzelm
parents: 44113
diff changeset
   932
        let val frzT = map_type_tvar (freeze_one alist)
c70257b4cb7e avoid OldTerm operations -- with subtle changes of semantics;
wenzelm
parents: 44113
diff changeset
   933
        in map_proof_terms (map_types frzT) frzT prf end)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   934
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   935
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   936
end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   937
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   938
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   939
(* rotate assumptions *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   940
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   941
fun rotate_proof Bs Bi m prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   942
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   943
    val params = Term.strip_all_vars Bi;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   944
    val asms = Logic.strip_imp_prems (Term.strip_all_body Bi);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   945
    val i = length asms;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   946
    val j = length Bs;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   947
  in
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   948
    mk_AbsP (j+1, proof_combP (prf, map PBound
23178
07ba6b58b3d2 simplified/unified list fold;
wenzelm
parents: 22846
diff changeset
   949
      (j downto 1) @ [mk_Abst params (mk_AbsP (i,
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   950
        proof_combP (proof_combt (PBound i, map Bound ((length params - 1) downto 0)),
23178
07ba6b58b3d2 simplified/unified list fold;
wenzelm
parents: 22846
diff changeset
   951
          map PBound (((i-m-1) downto 0) @ ((i-1) downto (i-m))))))]))
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   952
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   953
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   954
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   955
(* permute premises *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   956
36742
6f8bbe9ca8a2 tuned signature;
wenzelm
parents: 36741
diff changeset
   957
fun permute_prems_proof prems j k prf =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   958
  let val n = length prems
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   959
  in mk_AbsP (n, proof_combP (prf,
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   960
    map PBound ((n-1 downto n-j) @ (k-1 downto 0) @ (n-j-1 downto k))))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   961
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   962
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   963
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   964
(* generalization *)
19908
f035261fb5b9 added generalize rule;
wenzelm
parents: 19502
diff changeset
   965
20000
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   966
fun generalize (tfrees, frees) idx =
36620
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36619
diff changeset
   967
  Same.commit (map_proof_terms_same
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36619
diff changeset
   968
    (Term_Subst.generalize_same (tfrees, frees) idx)
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36619
diff changeset
   969
    (Term_Subst.generalizeT_same tfrees idx));
19908
f035261fb5b9 added generalize rule;
wenzelm
parents: 19502
diff changeset
   970
f035261fb5b9 added generalize rule;
wenzelm
parents: 19502
diff changeset
   971
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   972
(* instantiation *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   973
20000
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   974
fun instantiate (instT, inst) =
36620
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36619
diff changeset
   975
  Same.commit (map_proof_terms_same
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36619
diff changeset
   976
    (Term_Subst.instantiate_same (instT, map (apsnd remove_types) inst))
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36619
diff changeset
   977
    (Term_Subst.instantiateT_same instT));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   978
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   979
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   980
(* lifting *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   981
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   982
fun lift_proof Bi inc prop prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   983
  let
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   984
    fun lift'' Us Ts t =
59787
6e2a20486897 local fixes may depend on goal params;
wenzelm
parents: 59058
diff changeset
   985
      strip_abs Ts (Logic.incr_indexes ([], Us, inc) (mk_abs Ts t));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   986
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   987
    fun lift' Us Ts (Abst (s, T, prf)) =
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   988
          (Abst (s, Same.map_option (Logic.incr_tvar_same inc) T, lifth' Us (dummyT::Ts) prf)
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   989
           handle Same.SAME => Abst (s, T, lift' Us (dummyT::Ts) prf))
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   990
      | lift' Us Ts (AbsP (s, t, prf)) =
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   991
          (AbsP (s, Same.map_option (same (op =) (lift'' Us Ts)) t, lifth' Us Ts prf)
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   992
           handle Same.SAME => AbsP (s, t, lift' Us Ts prf))
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   993
      | lift' Us Ts (prf % t) = (lift' Us Ts prf % Option.map (lift'' Us Ts) t
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   994
          handle Same.SAME => prf % Same.map_option (same (op =) (lift'' Us Ts)) t)
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   995
      | lift' Us Ts (prf1 %% prf2) = (lift' Us Ts prf1 %% lifth' Us Ts prf2
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   996
          handle Same.SAME => prf1 %% lift' Us Ts prf2)
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   997
      | lift' _ _ (PAxm (s, prop, Ts)) =
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   998
          PAxm (s, prop, (Same.map_option o Same.map) (Logic.incr_tvar_same inc) Ts)
31943
5e960a0780a2 renamed inclass/Inclass to of_class/OfClass, in accordance to of_sort;
wenzelm
parents: 31903
diff changeset
   999
      | lift' _ _ (OfClass (T, c)) =
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
  1000
          OfClass (Logic.incr_tvar_same inc T, c)
28828
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
  1001
      | lift' _ _ (Oracle (s, prop, Ts)) =
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
  1002
          Oracle (s, prop, (Same.map_option o Same.map) (Logic.incr_tvar_same inc) Ts)
70538
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
  1003
      | lift' _ _ (PThm ({serial = i, pos = p, theory_name, name = s, prop, types = Ts}, thm_body)) =
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
  1004
          PThm (thm_header i p theory_name s prop
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
  1005
            ((Same.map_option o Same.map) (Logic.incr_tvar inc) Ts), thm_body)
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
  1006
      | lift' _ _ _ = raise Same.SAME
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
  1007
    and lifth' Us Ts prf = (lift' Us Ts prf handle Same.SAME => prf);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1008
18030
5dadabde8fe4 Logic.lift_all;
wenzelm
parents: 17756
diff changeset
  1009
    val ps = map (Logic.lift_all inc Bi) (Logic.strip_imp_prems prop);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1010
    val k = length ps;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1011
23178
07ba6b58b3d2 simplified/unified list fold;
wenzelm
parents: 22846
diff changeset
  1012
    fun mk_app b (i, j, prf) =
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
  1013
          if b then (i-1, j, prf %% PBound i) else (i, j-1, prf %> Bound j);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1014
56245
84fc7dfa3cd4 more qualified names;
wenzelm
parents: 52696
diff changeset
  1015
    fun lift Us bs i j (Const ("Pure.imp", _) $ A $ B) =
20147
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
  1016
            AbsP ("H", NONE (*A*), lift Us (true::bs) (i+1) j B)
56245
84fc7dfa3cd4 more qualified names;
wenzelm
parents: 52696
diff changeset
  1017
      | lift Us bs i j (Const ("Pure.all", _) $ Abs (a, T, t)) =
20147
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
  1018
            Abst (a, NONE (*T*), lift (T::Us) (false::bs) i (j+1) t)
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
  1019
      | lift Us bs i j _ = proof_combP (lifth' (rev Us) [] prf,
23178
07ba6b58b3d2 simplified/unified list fold;
wenzelm
parents: 22846
diff changeset
  1020
            map (fn k => (#3 (fold_rev mk_app bs (i-1, j-1, PBound k))))
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1021
              (i + k - 1 downto i));
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1022
  in
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1023
    mk_AbsP (k, lift [] [] 0 0 Bi)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1024
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1025
32027
9dd548810ed1 tuned incr_indexes;
wenzelm
parents: 32024
diff changeset
  1026
fun incr_indexes i =
36620
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36619
diff changeset
  1027
  Same.commit (map_proof_terms_same
59787
6e2a20486897 local fixes may depend on goal params;
wenzelm
parents: 59058
diff changeset
  1028
    (Logic.incr_indexes_same ([], [], i)) (Logic.incr_tvar_same i));
32027
9dd548810ed1 tuned incr_indexes;
wenzelm
parents: 32024
diff changeset
  1029
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1030
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
  1031
(* proof by assumption *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1032
23296
25f28f9c28a3 Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents: 23178
diff changeset
  1033
fun mk_asm_prf t i m =
25f28f9c28a3 Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents: 23178
diff changeset
  1034
  let
25f28f9c28a3 Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents: 23178
diff changeset
  1035
    fun imp_prf _ i 0 = PBound i
56245
84fc7dfa3cd4 more qualified names;
wenzelm
parents: 52696
diff changeset
  1036
      | imp_prf (Const ("Pure.imp", _) $ A $ B) i m = AbsP ("H", NONE (*A*), imp_prf B (i+1) (m-1))
23296
25f28f9c28a3 Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents: 23178
diff changeset
  1037
      | imp_prf _ i _ = PBound i;
56245
84fc7dfa3cd4 more qualified names;
wenzelm
parents: 52696
diff changeset
  1038
    fun all_prf (Const ("Pure.all", _) $ Abs (a, T, t)) = Abst (a, NONE (*T*), all_prf t)
23296
25f28f9c28a3 Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents: 23178
diff changeset
  1039
      | all_prf t = imp_prf t (~i) m
25f28f9c28a3 Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents: 23178
diff changeset
  1040
  in all_prf t end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1041
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1042
fun assumption_proof Bs Bi n prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1043
  mk_AbsP (length Bs, proof_combP (prf,
23296
25f28f9c28a3 Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents: 23178
diff changeset
  1044
    map PBound (length Bs - 1 downto 0) @ [mk_asm_prf Bi n ~1]));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1045
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1046
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
  1047
(* composition of object rule with proof state *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1048
56245
84fc7dfa3cd4 more qualified names;
wenzelm
parents: 52696
diff changeset
  1049
fun flatten_params_proof i j n (Const ("Pure.imp", _) $ A $ B, k) =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1050
      AbsP ("H", NONE (*A*), flatten_params_proof (i+1) j n (B, k))
56245
84fc7dfa3cd4 more qualified names;
wenzelm
parents: 52696
diff changeset
  1051
  | flatten_params_proof i j n (Const ("Pure.all", _) $ Abs (a, T, t), k) =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1052
      Abst (a, NONE (*T*), flatten_params_proof i (j+1) n (t, k))
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1053
  | flatten_params_proof i j n (_, k) = proof_combP (proof_combt (PBound (k+i),
19304
15f001295a7b remove (op =);
wenzelm
parents: 19222
diff changeset
  1054
      map Bound (j-1 downto 0)), map PBound (remove (op =) (i-n) (i-1 downto 0)));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1055
23296
25f28f9c28a3 Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents: 23178
diff changeset
  1056
fun bicompose_proof flatten Bs oldAs newAs A n m rprf sprf =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1057
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1058
    val la = length newAs;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1059
    val lb = length Bs;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1060
  in
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1061
    mk_AbsP (lb+la, proof_combP (sprf,
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
  1062
      map PBound (lb + la - 1 downto la)) %%
23296
25f28f9c28a3 Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents: 23178
diff changeset
  1063
        proof_combP (rprf, (if n>0 then [mk_asm_prf (the A) n m] else []) @
18485
5959295f82d3 bicompose_proof: no_flatten;
wenzelm
parents: 18316
diff changeset
  1064
          map (if flatten then flatten_params_proof 0 0 n else PBound o snd)
5959295f82d3 bicompose_proof: no_flatten;
wenzelm
parents: 18316
diff changeset
  1065
            (oldAs ~~ (la - 1 downto 0))))
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1066
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1067
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1068
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
  1069
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
  1070
(** type classes **)
36621
2fd4e2c76636 proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents: 36620
diff changeset
  1071
2fd4e2c76636 proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents: 36620
diff changeset
  1072
fun strip_shyps_proof algebra present witnessed extra_sorts prf =
2fd4e2c76636 proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents: 36620
diff changeset
  1073
  let
2fd4e2c76636 proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents: 36620
diff changeset
  1074
    fun get S2 (T, S1) = if Sorts.sort_le algebra (S1, S2) then SOME T else NONE;
36732
9c2ee10809b2 strip_shyps_proof: dummy TFrees are called "'dummy" as in del_conflicting_tvars below;
wenzelm
parents: 36621
diff changeset
  1075
    val extra = map (fn S => (TFree ("'dummy", S), S)) extra_sorts;
36621
2fd4e2c76636 proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents: 36620
diff changeset
  1076
    val replacements = present @ extra @ witnessed;
2fd4e2c76636 proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents: 36620
diff changeset
  1077
    fun replace T =
2fd4e2c76636 proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents: 36620
diff changeset
  1078
      if exists (fn (T', _) => T' = T) present then raise Same.SAME
2fd4e2c76636 proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents: 36620
diff changeset
  1079
      else
2fd4e2c76636 proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents: 36620
diff changeset
  1080
        (case get_first (get (Type.sort_of_atyp T)) replacements of
2fd4e2c76636 proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents: 36620
diff changeset
  1081
          SOME T' => T'
2fd4e2c76636 proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents: 36620
diff changeset
  1082
        | NONE => raise Fail "strip_shyps_proof: bad type variable in proof term");
2fd4e2c76636 proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents: 36620
diff changeset
  1083
  in Same.commit (map_proof_types_same (Term_Subst.map_atypsT_same replace)) prf end;
2fd4e2c76636 proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents: 36620
diff changeset
  1084
70458
9e2173eb23eb more direct proofs for type classes;
wenzelm
parents: 70454
diff changeset
  1085
fun of_sort_proof algebra classrel_proof arity_proof hyps =
9e2173eb23eb more direct proofs for type classes;
wenzelm
parents: 70454
diff changeset
  1086
  Sorts.of_sort_derivation algebra
9e2173eb23eb more direct proofs for type classes;
wenzelm
parents: 70454
diff changeset
  1087
   {class_relation = fn _ => fn _ => fn (prf, c1) => fn c2 =>
9e2173eb23eb more direct proofs for type classes;
wenzelm
parents: 70454
diff changeset
  1088
      if c1 = c2 then prf else classrel_proof (c1, c2) %% prf,
9e2173eb23eb more direct proofs for type classes;
wenzelm
parents: 70454
diff changeset
  1089
    type_constructor = fn (a, _) => fn dom => fn c =>
36741
d65ed9d7275e added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents: 36740
diff changeset
  1090
      let val Ss = map (map snd) dom and prfs = maps (map fst) dom
70458
9e2173eb23eb more direct proofs for type classes;
wenzelm
parents: 70454
diff changeset
  1091
      in proof_combP (arity_proof (a, Ss, c), prfs) end,
36741
d65ed9d7275e added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents: 36740
diff changeset
  1092
    type_variable = fn typ => map (fn c => (hyps (typ, c), c)) (Type.sort_of_atyp typ)};
d65ed9d7275e added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents: 36740
diff changeset
  1093
d65ed9d7275e added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents: 36740
diff changeset
  1094
70420
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1095
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
  1096
(** axioms and theorems **)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1097
52487
48bc24467008 backout dedd7952a62c: static "proofs" value within theory prevents later inferencing with different configuration;
wenzelm
parents: 52470
diff changeset
  1098
val proofs = Unsynchronized.ref 2;
48bc24467008 backout dedd7952a62c: static "proofs" value within theory prevents later inferencing with different configuration;
wenzelm
parents: 52470
diff changeset
  1099
fun proofs_enabled () = ! proofs >= 2;
48bc24467008 backout dedd7952a62c: static "proofs" value within theory prevents later inferencing with different configuration;
wenzelm
parents: 52470
diff changeset
  1100
28812
413695e07bd4 Frees in PThms are now quantified in the order of their appearance in the
berghofe
parents: 28803
diff changeset
  1101
fun vars_of t = map Var (rev (Term.add_vars t []));
413695e07bd4 Frees in PThms are now quantified in the order of their appearance in the
berghofe
parents: 28803
diff changeset
  1102
fun frees_of t = map Free (rev (Term.add_frees t []));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1103
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1104
fun test_args _ [] = true
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1105
  | test_args is (Bound i :: ts) =
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1106
      not (member (op =) is i) andalso test_args (i :: is) ts
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1107
  | test_args _ _ = false;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1108
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1109
fun is_fun (Type ("fun", _)) = true
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1110
  | is_fun (TVar _) = true
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1111
  | is_fun _ = false;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1112
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1113
fun add_funvars Ts (vs, t) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1114
  if is_fun (fastype_of1 (Ts, t)) then
33042
ddf1f03a9ad9 curried union as canonical list operation
haftmann
parents: 33038
diff changeset
  1115
    union (op =) vs (map_filter (fn Var (ixn, T) =>
33037
b22e44496dc2 replaced old_style infixes eq_set, subset, union, inter and variants by generic versions
haftmann
parents: 32810
diff changeset
  1116
      if is_fun T then SOME ixn else NONE | _ => NONE) (vars_of t))
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1117
  else vs;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1118
56245
84fc7dfa3cd4 more qualified names;
wenzelm
parents: 52696
diff changeset
  1119
fun add_npvars q p Ts (vs, Const ("Pure.imp", _) $ t $ u) =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1120
      add_npvars q p Ts (add_npvars q (not p) Ts (vs, t), u)
56245
84fc7dfa3cd4 more qualified names;
wenzelm
parents: 52696
diff changeset
  1121
  | add_npvars q p Ts (vs, Const ("Pure.all", Type (_, [Type (_, [T, _]), _])) $ t) =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1122
      add_npvars q p Ts (vs, if p andalso q then betapply (t, Var (("",0), T)) else t)
12041
27214c16ebe4 Fixed bug in function add_npvars.
berghofe
parents: 11999
diff changeset
  1123
  | add_npvars q p Ts (vs, Abs (_, T, t)) = add_npvars q p (T::Ts) (vs, t)
27214c16ebe4 Fixed bug in function add_npvars.
berghofe
parents: 11999
diff changeset
  1124
  | add_npvars _ _ Ts (vs, t) = add_npvars' Ts (vs, t)
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1125
and add_npvars' Ts (vs, t) =
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1126
  (case strip_comb t of
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1127
    (Var (ixn, _), ts) => if test_args [] ts then vs
17314
04e21a27c0ad introduces some modern-style AList operations
haftmann
parents: 17221
diff changeset
  1128
      else Library.foldl (add_npvars' Ts)
04e21a27c0ad introduces some modern-style AList operations
haftmann
parents: 17221
diff changeset
  1129
        (AList.update (op =) (ixn,
04e21a27c0ad introduces some modern-style AList operations
haftmann
parents: 17221
diff changeset
  1130
          Library.foldl (add_funvars Ts) ((these ooo AList.lookup) (op =) vs ixn, ts)) vs, ts)
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
  1131
  | (Abs (_, T, u), ts) => Library.foldl (add_npvars' (T::Ts)) (vs, u :: ts)
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
  1132
  | (_, ts) => Library.foldl (add_npvars' Ts) (vs, ts));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1133
56245
84fc7dfa3cd4 more qualified names;
wenzelm
parents: 52696
diff changeset
  1134
fun prop_vars (Const ("Pure.imp", _) $ P $ Q) = union (op =) (prop_vars P) (prop_vars Q)
84fc7dfa3cd4 more qualified names;
wenzelm
parents: 52696
diff changeset
  1135
  | prop_vars (Const ("Pure.all", _) $ Abs (_, _, t)) = prop_vars t
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1136
  | prop_vars t = (case strip_comb t of (Var (ixn, _), _) => [ixn] | _ => []);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1137
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1138
fun is_proj t =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1139
  let
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1140
    fun is_p i t =
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1141
      (case strip_comb t of
63857
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
  1142
        (Bound _, []) => false
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1143
      | (Bound j, ts) => j >= i orelse exists (is_p i) ts
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1144
      | (Abs (_, _, u), _) => is_p (i+1) u
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1145
      | (_, ts) => exists (is_p i) ts)
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1146
  in
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1147
    (case strip_abs_body t of
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1148
      Bound _ => true
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1149
    | t' => is_p 0 t')
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1150
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1151
70416
wenzelm
parents: 70415
diff changeset
  1152
fun prop_args prop =
wenzelm
parents: 70415
diff changeset
  1153
  let
wenzelm
parents: 70415
diff changeset
  1154
    val needed_vars =
wenzelm
parents: 70415
diff changeset
  1155
      union (op =) (Library.foldl (uncurry (union (op =)))
wenzelm
parents: 70415
diff changeset
  1156
        ([], map (uncurry (insert (op =))) (add_npvars true true [] ([], prop))))
wenzelm
parents: 70415
diff changeset
  1157
      (prop_vars prop);
wenzelm
parents: 70415
diff changeset
  1158
    val vars =
wenzelm
parents: 70415
diff changeset
  1159
      vars_of prop |> map (fn (v as Var (ixn, _)) =>
wenzelm
parents: 70415
diff changeset
  1160
        if member (op =) needed_vars ixn then SOME v else NONE);
wenzelm
parents: 70415
diff changeset
  1161
    val frees = map SOME (frees_of prop);
wenzelm
parents: 70415
diff changeset
  1162
  in vars @ frees end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1163
70559
c92443e8d724 clarified type for recorded oracles;
wenzelm
parents: 70557
diff changeset
  1164
fun axm_proof name prop =
c92443e8d724 clarified type for recorded oracles;
wenzelm
parents: 70557
diff changeset
  1165
  proof_combt' (PAxm (name, prop, NONE), prop_args prop);
17017
fa8e32209734 - Tuned handling of oracles
berghofe
parents: 16983
diff changeset
  1166
52487
48bc24467008 backout dedd7952a62c: static "proofs" value within theory prevents later inferencing with different configuration;
wenzelm
parents: 52470
diff changeset
  1167
fun oracle_proof name prop =
70559
c92443e8d724 clarified type for recorded oracles;
wenzelm
parents: 70557
diff changeset
  1168
  if ! proofs = 0
c92443e8d724 clarified type for recorded oracles;
wenzelm
parents: 70557
diff changeset
  1169
  then ((name, NONE), Oracle (name, NONE, NONE))
c92443e8d724 clarified type for recorded oracles;
wenzelm
parents: 70557
diff changeset
  1170
  else ((name, SOME prop), proof_combt' (Oracle (name, SOME prop, NONE), prop_args prop));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1171
63623
1a38142e1172 tuned signature;
wenzelm
parents: 62897
diff changeset
  1172
val shrink_proof =
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1173
  let
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1174
    fun shrink ls lev (prf as Abst (a, T, body)) =
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1175
          let val (b, is, ch, body') = shrink ls (lev+1) body
51100
18daa3380ff7 discontinued home-made sharing for proof terms -- leave memory management to the Poly/ML RTS;
wenzelm
parents: 51047
diff changeset
  1176
          in (b, is, ch, if ch then Abst (a, T, body') else prf) end
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1177
      | shrink ls lev (prf as AbsP (a, t, body)) =
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1178
          let val (b, is, ch, body') = shrink (lev::ls) lev body
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19357
diff changeset
  1179
          in (b orelse member (op =) is 0, map_filter (fn 0 => NONE | i => SOME (i-1)) is,
51100
18daa3380ff7 discontinued home-made sharing for proof terms -- leave memory management to the Poly/ML RTS;
wenzelm
parents: 51047
diff changeset
  1180
            ch, if ch then AbsP (a, t, body') else prf)
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1181
          end
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1182
      | shrink ls lev prf =
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1183
          let val (is, ch, _, prf') = shrink' ls lev [] [] prf
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1184
          in (false, is, ch, prf') end
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1185
    and shrink' ls lev ts prfs (prf as prf1 %% prf2) =
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1186
          let
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1187
            val p as (_, is', ch', prf') = shrink ls lev prf2;
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1188
            val (is, ch, ts', prf'') = shrink' ls lev ts (p::prfs) prf1
33042
ddf1f03a9ad9 curried union as canonical list operation
haftmann
parents: 33038
diff changeset
  1189
          in (union (op =) is is', ch orelse ch', ts',
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1190
              if ch orelse ch' then prf'' %% prf' else prf)
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1191
          end
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1192
      | shrink' ls lev ts prfs (prf as prf1 % t) =
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1193
          let val (is, ch, (ch', t')::ts', prf') = shrink' ls lev (t::ts) prfs prf1
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1194
          in (is, ch orelse ch', ts',
51100
18daa3380ff7 discontinued home-made sharing for proof terms -- leave memory management to the Poly/ML RTS;
wenzelm
parents: 51047
diff changeset
  1195
              if ch orelse ch' then prf' % t' else prf) end
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1196
      | shrink' ls lev ts prfs (prf as PBound i) =
30146
a77fc0209723 eliminated NJ's List.nth;
wenzelm
parents: 29642
diff changeset
  1197
          (if exists (fn SOME (Bound j) => lev-j <= nth ls i | _ => true) ts
18928
042608ffa2ec subsituted gen_duplicates / has_duplicates for duplicates whenever appropriate
haftmann
parents: 18485
diff changeset
  1198
             orelse has_duplicates (op =)
042608ffa2ec subsituted gen_duplicates / has_duplicates for duplicates whenever appropriate
haftmann
parents: 18485
diff changeset
  1199
               (Library.foldl (fn (js, SOME (Bound j)) => j :: js | (js, _) => js) ([], ts))
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1200
             orelse exists #1 prfs then [i] else [], false, map (pair false) ts, prf)
63857
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
  1201
      | shrink' _ _ ts _ (Hyp t) = ([], false, map (pair false) ts, Hyp t)
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
  1202
      | shrink' _ _ ts _ (prf as MinProof) = ([], false, map (pair false) ts, prf)
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
  1203
      | shrink' _ _ ts _ (prf as OfClass _) = ([], false, map (pair false) ts, prf)
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
  1204
      | shrink' _ _ ts prfs prf =
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1205
          let
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1206
            val prop =
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1207
              (case prf of
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1208
                PAxm (_, prop, _) => prop
70559
c92443e8d724 clarified type for recorded oracles;
wenzelm
parents: 70557
diff changeset
  1209
              | Oracle (_, prop, _) => oracle_prop prop
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
  1210
              | PThm ({prop, ...}, _) => prop
36879
201a4afd8533 raise Fail uniformly for proofterm errors, which appear to be rather low-level;
wenzelm
parents: 36878
diff changeset
  1211
              | _ => raise Fail "shrink: proof not in normal form");
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1212
            val vs = vars_of prop;
19012
wenzelm
parents: 18928
diff changeset
  1213
            val (ts', ts'') = chop (length vs) ts;
33957
e9afca2118d4 normalized uncurry take/drop
haftmann
parents: 33955
diff changeset
  1214
            val insts = take (length ts') (map (fst o dest_Var) vs) ~~ ts';
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1215
            val nvs = Library.foldl (fn (ixns', (ixn, ixns)) =>
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1216
              insert (op =) ixn
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1217
                (case AList.lookup (op =) insts ixn of
33042
ddf1f03a9ad9 curried union as canonical list operation
haftmann
parents: 33038
diff changeset
  1218
                  SOME (SOME t) => if is_proj t then union (op =) ixns ixns' else ixns'
ddf1f03a9ad9 curried union as canonical list operation
haftmann
parents: 33038
diff changeset
  1219
                | _ => union (op =) ixns ixns'))
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1220
                  (needed prop ts'' prfs, add_npvars false true [] ([], prop));
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1221
            val insts' = map
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1222
              (fn (ixn, x as SOME _) => if member (op =) nvs ixn then (false, x) else (true, NONE)
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1223
                | (_, x) => (false, x)) insts
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1224
          in ([], false, insts' @ map (pair false) ts'', prf) end
56245
84fc7dfa3cd4 more qualified names;
wenzelm
parents: 52696
diff changeset
  1225
    and needed (Const ("Pure.imp", _) $ t $ u) ts ((b, _, _, _)::prfs) =
33042
ddf1f03a9ad9 curried union as canonical list operation
haftmann
parents: 33038
diff changeset
  1226
          union (op =) (if b then map (fst o dest_Var) (vars_of t) else []) (needed u ts prfs)
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1227
      | needed (Var (ixn, _)) (_::_) _ = [ixn]
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1228
      | needed _ _ _ = [];
63623
1a38142e1172 tuned signature;
wenzelm
parents: 62897
diff changeset
  1229
  in fn prf => #4 (shrink [] 0 prf) end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1230
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1231
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
  1232
70420
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1233
(** axioms for equality **)
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1234
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1235
val aT = TFree ("'a", []);
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1236
val bT = TFree ("'b", []);
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1237
val x = Free ("x", aT);
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1238
val y = Free ("y", aT);
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1239
val z = Free ("z", aT);
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1240
val A = Free ("A", propT);
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1241
val B = Free ("B", propT);
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1242
val f = Free ("f", aT --> bT);
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1243
val g = Free ("g", aT --> bT);
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1244
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1245
val equality_axms =
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1246
 [("reflexive", Logic.mk_equals (x, x)),
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1247
  ("symmetric", Logic.mk_implies (Logic.mk_equals (x, y), Logic.mk_equals (y, x))),
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1248
  ("transitive",
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1249
    Logic.list_implies ([Logic.mk_equals (x, y), Logic.mk_equals (y, z)], Logic.mk_equals (x, z))),
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1250
  ("equal_intr",
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1251
    Logic.list_implies ([Logic.mk_implies (A, B), Logic.mk_implies (B, A)], Logic.mk_equals (A, B))),
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1252
  ("equal_elim", Logic.list_implies ([Logic.mk_equals (A, B), A], B)),
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1253
  ("abstract_rule",
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1254
    Logic.mk_implies
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1255
      (Logic.all x
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1256
        (Logic.mk_equals (f $ x, g $ x)), Logic.mk_equals (lambda x (f $ x), lambda x (g $ x)))),
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1257
  ("combination", Logic.list_implies
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1258
    ([Logic.mk_equals (f, g), Logic.mk_equals (x, y)], Logic.mk_equals (f $ x, g $ y)))];
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1259
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1260
val [reflexive_axm, symmetric_axm, transitive_axm, equal_intr_axm,
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1261
  equal_elim_axm, abstract_rule_axm, combination_axm] =
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1262
    map (fn (s, t) => PAxm ("Pure." ^ s, Logic.varify_global t, NONE)) equality_axms;
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1263
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1264
val reflexive = reflexive_axm % NONE;
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1265
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1266
fun symmetric (prf as PAxm ("Pure.reflexive", _, _) % _) = prf
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1267
  | symmetric prf = symmetric_axm % NONE % NONE %% prf;
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1268
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1269
fun transitive _ _ (PAxm ("Pure.reflexive", _, _) % _) prf2 = prf2
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1270
  | transitive _ _ prf1 (PAxm ("Pure.reflexive", _, _) % _) = prf1
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1271
  | transitive u (Type ("prop", [])) prf1 prf2 =
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1272
      transitive_axm % NONE % SOME (remove_types u) % NONE %% prf1 %% prf2
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1273
  | transitive _ _ prf1 prf2 = transitive_axm % NONE % NONE % NONE %% prf1 %% prf2;
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1274
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1275
fun abstract_rule x a prf =
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1276
  abstract_rule_axm % NONE % NONE %% forall_intr_proof x a prf;
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1277
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1278
fun check_comb (PAxm ("Pure.combination", _, _) % f % _ % _ % _ %% prf %% _) =
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1279
      is_some f orelse check_comb prf
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1280
  | check_comb (PAxm ("Pure.transitive", _, _) % _ % _ % _ %% prf1 %% prf2) =
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1281
      check_comb prf1 andalso check_comb prf2
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1282
  | check_comb (PAxm ("Pure.symmetric", _, _) % _ % _ %% prf) = check_comb prf
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1283
  | check_comb _ = false;
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1284
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1285
fun combination f g t u (Type (_, [T, U])) prf1 prf2 =
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1286
  let
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1287
    val f = Envir.beta_norm f;
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1288
    val g = Envir.beta_norm g;
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1289
    val prf =
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1290
      if check_comb prf1 then
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1291
        combination_axm % NONE % NONE
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1292
      else
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1293
        (case prf1 of
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1294
          PAxm ("Pure.reflexive", _, _) % _ =>
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1295
            combination_axm %> remove_types f % NONE
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1296
        | _ => combination_axm %> remove_types f %> remove_types g)
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1297
  in
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1298
    (case T of
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1299
      Type ("fun", _) => prf %
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1300
        (case head_of f of
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1301
          Abs _ => SOME (remove_types t)
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1302
        | Var _ => SOME (remove_types t)
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1303
        | _ => NONE) %
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1304
        (case head_of g of
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1305
          Abs _ => SOME (remove_types u)
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1306
        | Var _ => SOME (remove_types u)
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1307
        | _ => NONE) %% prf1 %% prf2
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1308
     | _ => prf % NONE % NONE %% prf1 %% prf2)
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1309
  end;
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1310
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1311
fun equal_intr A B prf1 prf2 =
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1312
  equal_intr_axm %> remove_types A %> remove_types B %% prf1 %% prf2;
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1313
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1314
fun equal_elim A B prf1 prf2 =
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1315
  equal_elim_axm %> remove_types A %> remove_types B %% prf1 %% prf2;
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1316
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1317
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1318
70399
ac570c179ee9 tuned comments;
wenzelm
parents: 70398
diff changeset
  1319
(** rewriting on proof terms **)
ac570c179ee9 tuned comments;
wenzelm
parents: 70398
diff changeset
  1320
ac570c179ee9 tuned comments;
wenzelm
parents: 70398
diff changeset
  1321
(* simple first order matching functions for terms and proofs (see pattern.ML) *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1322
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1323
exception PMatch;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1324
33317
b4534348b8fd standardized filter/filter_out;
wenzelm
parents: 33042
diff changeset
  1325
fun flt (i: int) = filter (fn n => n < i);
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1326
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1327
fun fomatch Ts tymatch j instsp p =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1328
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1329
    fun mtch (instsp as (tyinsts, insts)) = fn
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1330
        (Var (ixn, T), t)  =>
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1331
          if j>0 andalso not (null (flt j (loose_bnos t)))
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1332
          then raise PMatch
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1333
          else (tymatch (tyinsts, fn () => (T, fastype_of1 (Ts, t))),
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1334
            (ixn, t) :: insts)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1335
      | (Free (a, T), Free (b, U)) =>
20147
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
  1336
          if a=b then (tymatch (tyinsts, K (T, U)), insts) else raise PMatch
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1337
      | (Const (a, T), Const (b, U))  =>
20147
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
  1338
          if a=b then (tymatch (tyinsts, K (T, U)), insts) else raise PMatch
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1339
      | (f $ t, g $ u) => mtch (mtch instsp (f, g)) (t, u)
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1340
      | (Bound i, Bound j) => if i=j then instsp else raise PMatch
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1341
      | _ => raise PMatch
59058
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 56245
diff changeset
  1342
  in mtch instsp (apply2 Envir.beta_eta_contract p) end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1343
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1344
fun match_proof Ts tymatch =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1345
  let
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1346
    fun optmatch _ inst (NONE, _) = inst
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1347
      | optmatch _ _ (SOME _, NONE) = raise PMatch
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1348
      | optmatch mtch inst (SOME x, SOME y) = mtch inst (x, y)
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1349
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1350
    fun matcht Ts j (pinst, tinst) (t, u) =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1351
      (pinst, fomatch Ts tymatch j tinst (t, Envir.beta_norm u));
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1352
    fun matchT (pinst, (tyinsts, insts)) p =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1353
      (pinst, (tymatch (tyinsts, K p), insts));
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
  1354
    fun matchTs inst (Ts, Us) = Library.foldl (uncurry matchT) (inst, Ts ~~ Us);
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1355
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1356
    fun mtch Ts i j (pinst, tinst) (Hyp (Var (ixn, _)), prf) =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1357
          if i = 0 andalso j = 0 then ((ixn, prf) :: pinst, tinst)
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1358
          else
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1359
            (case apfst (flt i) (apsnd (flt j) (prf_add_loose_bnos 0 0 prf ([], []))) of
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1360
              ([], []) => ((ixn, incr_pboundvars (~i) (~j) prf) :: pinst, tinst)
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1361
            | ([], _) =>
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1362
                if j = 0 then ((ixn, incr_pboundvars (~i) (~j) prf) :: pinst, tinst)
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1363
                else raise PMatch
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1364
            | _ => raise PMatch)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1365
      | mtch Ts i j inst (prf1 % opt1, prf2 % opt2) =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1366
          optmatch (matcht Ts j) (mtch Ts i j inst (prf1, prf2)) (opt1, opt2)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1367
      | mtch Ts i j inst (prf1 %% prf2, prf1' %% prf2') =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1368
          mtch Ts i j (mtch Ts i j inst (prf1, prf1')) (prf2, prf2')
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1369
      | mtch Ts i j inst (Abst (_, opT, prf1), Abst (_, opU, prf2)) =
18485
5959295f82d3 bicompose_proof: no_flatten;
wenzelm
parents: 18316
diff changeset
  1370
          mtch (the_default dummyT opU :: Ts) i (j+1)
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1371
            (optmatch matchT inst (opT, opU)) (prf1, prf2)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1372
      | mtch Ts i j inst (prf1, Abst (_, opU, prf2)) =
18485
5959295f82d3 bicompose_proof: no_flatten;
wenzelm
parents: 18316
diff changeset
  1373
          mtch (the_default dummyT opU :: Ts) i (j+1) inst
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1374
            (incr_pboundvars 0 1 prf1 %> Bound 0, prf2)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1375
      | mtch Ts i j inst (AbsP (_, opt, prf1), AbsP (_, opu, prf2)) =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1376
          mtch Ts (i+1) j (optmatch (matcht Ts j) inst (opt, opu)) (prf1, prf2)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1377
      | mtch Ts i j inst (prf1, AbsP (_, _, prf2)) =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1378
          mtch Ts (i+1) j inst (incr_pboundvars 1 0 prf1 %% PBound 0, prf2)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1379
      | mtch Ts i j inst (PAxm (s1, _, opTs), PAxm (s2, _, opUs)) =
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1380
          if s1 = s2 then optmatch matchTs inst (opTs, opUs)
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1381
          else raise PMatch
31943
5e960a0780a2 renamed inclass/Inclass to of_class/OfClass, in accordance to of_sort;
wenzelm
parents: 31903
diff changeset
  1382
      | mtch Ts i j inst (OfClass (T1, c1), OfClass (T2, c2)) =
31903
c5221dbc40f6 added pro-forma proof constructor Inclass;
wenzelm
parents: 30716
diff changeset
  1383
          if c1 = c2 then matchT inst (T1, T2)
c5221dbc40f6 added pro-forma proof constructor Inclass;
wenzelm
parents: 30716
diff changeset
  1384
          else raise PMatch
70412
64ead6de6212 defer rew_proof on unnamed PThm node as open_proof operation: significant performance improvement;
wenzelm
parents: 70409
diff changeset
  1385
      | mtch Ts i j inst
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
  1386
            (PThm ({name = name1, prop = prop1, types = types1, ...}, _),
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
  1387
              PThm ({name = name2, prop = prop2, types = types2, ...}, _)) =
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
  1388
          if name1 = name2 andalso prop1 = prop2
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
  1389
          then optmatch matchTs inst (types1, types2)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1390
          else raise PMatch
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1391
      | mtch _ _ _ inst (PBound i, PBound j) = if i = j then inst else raise PMatch
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1392
      | mtch _ _ _ _ _ = raise PMatch
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1393
  in mtch Ts 0 0 end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1394
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1395
fun prf_subst (pinst, (tyinsts, insts)) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1396
  let
32049
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1397
    val substT = Envir.subst_type_same tyinsts;
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1398
    val substTs = Same.map substT;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1399
32049
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1400
    fun subst' lev (Var (xi, _)) =
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1401
        (case AList.lookup (op =) insts xi of
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1402
          NONE => raise Same.SAME
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1403
        | SOME u => incr_boundvars lev u)
32049
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1404
      | subst' _ (Const (s, T)) = Const (s, substT T)
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1405
      | subst' _ (Free (s, T)) = Free (s, substT T)
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1406
      | subst' lev (Abs (a, T, body)) =
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1407
          (Abs (a, substT T, Same.commit (subst' (lev + 1)) body)
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1408
            handle Same.SAME => Abs (a, T, subst' (lev + 1) body))
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1409
      | subst' lev (f $ t) =
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1410
          (subst' lev f $ Same.commit (subst' lev) t
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1411
            handle Same.SAME => f $ subst' lev t)
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1412
      | subst' _ _ = raise Same.SAME;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1413
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1414
    fun subst plev tlev (AbsP (a, t, body)) =
32049
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1415
          (AbsP (a, Same.map_option (subst' tlev) t, Same.commit (subst (plev + 1) tlev) body)
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1416
            handle Same.SAME => AbsP (a, t, subst (plev + 1) tlev body))
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1417
      | subst plev tlev (Abst (a, T, body)) =
32049
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1418
          (Abst (a, Same.map_option substT T, Same.commit (subst plev (tlev + 1)) body)
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1419
            handle Same.SAME => Abst (a, T, subst plev (tlev + 1) body))
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1420
      | subst plev tlev (prf %% prf') =
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1421
          (subst plev tlev prf %% Same.commit (subst plev tlev) prf'
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1422
            handle Same.SAME => prf %% subst plev tlev prf')
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1423
      | subst plev tlev (prf % t) =
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1424
          (subst plev tlev prf % Same.commit (Same.map_option (subst' tlev)) t
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1425
            handle Same.SAME => prf % Same.map_option (subst' tlev) t)
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1426
      | subst plev tlev (Hyp (Var (xi, _))) =
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1427
          (case AList.lookup (op =) pinst xi of
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1428
            NONE => raise Same.SAME
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1429
          | SOME prf' => incr_pboundvars plev tlev prf')
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1430
      | subst _ _ (PAxm (id, prop, Ts)) = PAxm (id, prop, Same.map_option substTs Ts)
31943
5e960a0780a2 renamed inclass/Inclass to of_class/OfClass, in accordance to of_sort;
wenzelm
parents: 31903
diff changeset
  1431
      | subst _ _ (OfClass (T, c)) = OfClass (substT T, c)
32049
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1432
      | subst _ _ (Oracle (id, prop, Ts)) = Oracle (id, prop, Same.map_option substTs Ts)
70538
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
  1433
      | subst _ _ (PThm ({serial = i, pos = p, theory_name, name = id, prop, types}, thm_body)) =
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
  1434
          PThm (thm_header i p theory_name id prop (Same.map_option substTs types), thm_body)
32049
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1435
      | subst _ _ _ = raise Same.SAME;
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1436
  in fn t => subst 0 0 t handle Same.SAME => t end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1437
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20853
diff changeset
  1438
(*A fast unification filter: true unless the two terms cannot be unified.
12871
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1439
  Terms must be NORMAL.  Treats all Vars as distinct. *)
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1440
fun could_unify prf1 prf2 =
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1441
  let
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1442
    fun matchrands (prf1 %% prf2) (prf1' %% prf2') =
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1443
          could_unify prf2 prf2' andalso matchrands prf1 prf1'
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1444
      | matchrands (prf % SOME t) (prf' % SOME t') =
12871
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1445
          Term.could_unify (t, t') andalso matchrands prf prf'
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1446
      | matchrands (prf % _) (prf' % _) = matchrands prf prf'
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1447
      | matchrands _ _ = true
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1448
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1449
    fun head_of (prf %% _) = head_of prf
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1450
      | head_of (prf % _) = head_of prf
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1451
      | head_of prf = prf
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1452
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1453
  in case (head_of prf1, head_of prf2) of
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1454
        (_, Hyp (Var _)) => true
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1455
      | (Hyp (Var _), _) => true
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1456
      | (PAxm (a, _, _), PAxm (b, _, _)) => a = b andalso matchrands prf1 prf2
31943
5e960a0780a2 renamed inclass/Inclass to of_class/OfClass, in accordance to of_sort;
wenzelm
parents: 31903
diff changeset
  1457
      | (OfClass (_, c), OfClass (_, d)) => c = d andalso matchrands prf1 prf2
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
  1458
      | (PThm ({name = a, prop = propa, ...}, _), PThm ({name = b, prop = propb, ...}, _)) =>
12871
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1459
          a = b andalso propa = propb andalso matchrands prf1 prf2
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1460
      | (PBound i, PBound j) => i = j andalso matchrands prf1 prf2
12871
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1461
      | (AbsP _, _) =>  true   (*because of possible eta equality*)
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1462
      | (Abst _, _) =>  true
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1463
      | (_, AbsP _) =>  true
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1464
      | (_, Abst _) =>  true
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1465
      | _ => false
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1466
  end;
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1467
28329
e6a5fa9f1e41 added conditional add_oracles, keep oracles_of_proof private;
wenzelm
parents: 28319
diff changeset
  1468
70399
ac570c179ee9 tuned comments;
wenzelm
parents: 70398
diff changeset
  1469
(* rewrite proof *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1470
33722
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 33522
diff changeset
  1471
val no_skel = PBound 0;
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 33522
diff changeset
  1472
val normal_skel = Hyp (Var ((Name.uu, 0), propT));
13102
b6f8aae5f152 Added skeletons to speed up rewriting on proof terms.
berghofe
parents: 12923
diff changeset
  1473
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1474
fun rewrite_prf tymatch (rules, procs) prf =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1475
  let
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1476
    fun rew _ _ (Abst (_, _, body) % SOME t) = SOME (prf_subst_bounds [t] body, no_skel)
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1477
      | rew _ _ (AbsP (_, _, body) %% prf) = SOME (prf_subst_pbounds [prf] body, no_skel)
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1478
      | rew Ts hs prf =
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1479
          (case get_first (fn r => r Ts hs prf) procs of
33722
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 33522
diff changeset
  1480
            NONE => get_first (fn (prf1, prf2) => SOME (prf_subst
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 33522
diff changeset
  1481
              (match_proof Ts tymatch ([], (Vartab.empty, [])) (prf1, prf)) prf2, prf2)
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 33522
diff changeset
  1482
                 handle PMatch => NONE) (filter (could_unify prf o fst) rules)
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 33522
diff changeset
  1483
          | some => some);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1484
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1485
    fun rew0 Ts hs (prf as AbsP (_, _, prf' %% PBound 0)) =
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1486
          if prf_loose_Pbvar1 prf' 0 then rew Ts hs prf
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1487
          else
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1488
            let val prf'' = incr_pboundvars (~1) 0 prf'
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1489
            in SOME (the_default (prf'', no_skel) (rew Ts hs prf'')) end
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1490
      | rew0 Ts hs (prf as Abst (_, _, prf' % SOME (Bound 0))) =
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1491
          if prf_loose_bvar1 prf' 0 then rew Ts hs prf
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1492
          else
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1493
            let val prf'' = incr_pboundvars 0 (~1) prf'
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1494
            in SOME (the_default (prf'', no_skel) (rew Ts hs prf'')) end
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1495
      | rew0 Ts hs prf = rew Ts hs prf;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1496
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1497
    fun rew1 _ _ (Hyp (Var _)) _ = NONE
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1498
      | rew1 Ts hs skel prf =
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1499
          (case rew2 Ts hs skel prf of
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1500
            SOME prf1 =>
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1501
              (case rew0 Ts hs prf1 of
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1502
                SOME (prf2, skel') => SOME (the_default prf2 (rew1 Ts hs skel' prf2))
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1503
              | NONE => SOME prf1)
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1504
          | NONE =>
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1505
              (case rew0 Ts hs prf of
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1506
                SOME (prf1, skel') => SOME (the_default prf1 (rew1 Ts hs skel' prf1))
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1507
              | NONE => NONE))
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1508
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1509
    and rew2 Ts hs skel (prf % SOME t) =
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1510
          (case prf of
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1511
            Abst (_, _, body) =>
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1512
              let val prf' = prf_subst_bounds [t] body
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1513
              in SOME (the_default prf' (rew2 Ts hs no_skel prf')) end
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1514
          | _ =>
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1515
              (case rew1 Ts hs (case skel of skel' % _ => skel' | _ => no_skel) prf of
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1516
                SOME prf' => SOME (prf' % SOME t)
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1517
              | NONE => NONE))
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1518
      | rew2 Ts hs skel (prf % NONE) = Option.map (fn prf' => prf' % NONE)
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1519
          (rew1 Ts hs (case skel of skel' % _ => skel' | _ => no_skel) prf)
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1520
      | rew2 Ts hs skel (prf1 %% prf2) =
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1521
          (case prf1 of
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1522
            AbsP (_, _, body) =>
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1523
              let val prf' = prf_subst_pbounds [prf2] body
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1524
              in SOME (the_default prf' (rew2 Ts hs no_skel prf')) end
13102
b6f8aae5f152 Added skeletons to speed up rewriting on proof terms.
berghofe
parents: 12923
diff changeset
  1525
          | _ =>
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1526
            let
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1527
              val (skel1, skel2) =
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1528
                (case skel of
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1529
                  skel1 %% skel2 => (skel1, skel2)
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1530
                | _ => (no_skel, no_skel))
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1531
            in
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1532
              (case rew1 Ts hs skel1 prf1 of
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1533
                SOME prf1' =>
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1534
                  (case rew1 Ts hs skel2 prf2 of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1535
                    SOME prf2' => SOME (prf1' %% prf2')
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1536
                  | NONE => SOME (prf1' %% prf2))
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1537
              | NONE =>
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1538
                  (case rew1 Ts hs skel2 prf2 of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1539
                    SOME prf2' => SOME (prf1 %% prf2')
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1540
                  | NONE => NONE))
13102
b6f8aae5f152 Added skeletons to speed up rewriting on proof terms.
berghofe
parents: 12923
diff changeset
  1541
            end)
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1542
      | rew2 Ts hs skel (Abst (s, T, prf)) =
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1543
          (case rew1 (the_default dummyT T :: Ts) hs
33722
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 33522
diff changeset
  1544
              (case skel of Abst (_, _, skel') => skel' | _ => no_skel) prf of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1545
            SOME prf' => SOME (Abst (s, T, prf'))
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1546
          | NONE => NONE)
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1547
      | rew2 Ts hs skel (AbsP (s, t, prf)) =
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1548
          (case rew1 Ts (t :: hs) (case skel of AbsP (_, _, skel') => skel' | _ => no_skel) prf of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1549
            SOME prf' => SOME (AbsP (s, t, prf'))
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1550
          | NONE => NONE)
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1551
      | rew2 _ _ _ _ = NONE;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1552
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1553
  in the_default prf (rew1 [] [] no_skel prf) end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1554
17203
29b2563f5c11 refer to theory instead of low-level tsig;
wenzelm
parents: 17017
diff changeset
  1555
fun rewrite_proof thy = rewrite_prf (fn (tyenv, f) =>
29b2563f5c11 refer to theory instead of low-level tsig;
wenzelm
parents: 17017
diff changeset
  1556
  Sign.typ_match thy (f ()) tyenv handle Type.TYPE_MATCH => raise PMatch);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1557
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
  1558
fun rewrite_proof_notypes rews = rewrite_prf fst rews;
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
  1559
16940
d14ec6f2d29b adapted Type.typ_match;
wenzelm
parents: 16880
diff changeset
  1560
70399
ac570c179ee9 tuned comments;
wenzelm
parents: 70398
diff changeset
  1561
(* theory data *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1562
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 36883
diff changeset
  1563
structure Data = Theory_Data
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22662
diff changeset
  1564
(
33722
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 33522
diff changeset
  1565
  type T =
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 33522
diff changeset
  1566
    (stamp * (proof * proof)) list *
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1567
    (stamp * (typ list -> term option list -> proof -> (proof * proof) option)) list;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1568
12233
3348aa8061d1 - Fixed bug in shrink
berghofe
parents: 12123
diff changeset
  1569
  val empty = ([], []);
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 15797
diff changeset
  1570
  val extend = I;
33522
737589bb9bb8 adapted Theory_Data;
wenzelm
parents: 33414
diff changeset
  1571
  fun merge ((rules1, procs1), (rules2, procs2)) : T =
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1572
    (AList.merge (op =) (K true) (rules1, rules2),
22662
3e492ba59355 canonical merge operations
haftmann
parents: 21646
diff changeset
  1573
      AList.merge (op =) (K true) (procs1, procs2));
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22662
diff changeset
  1574
);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1575
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 36883
diff changeset
  1576
fun get_data thy = let val (rules, procs) = Data.get thy in (map #2 rules, map #2 procs) end;
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1577
fun rew_proof thy = rewrite_prf fst (get_data thy);
23780
a0e7305dd0cb Added function rew_proof (for pre-normalizing proofs).
berghofe
parents: 23296
diff changeset
  1578
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 36883
diff changeset
  1579
fun add_prf_rrule r = (Data.map o apfst) (cons (stamp (), r));
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 36883
diff changeset
  1580
fun add_prf_rproc p = (Data.map o apsnd) (cons (stamp (), p));
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1581
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1582
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1583
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1584
(** reconstruction of partial proof terms **)
70400
65bbef66e2ec clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents: 70399
diff changeset
  1585
65bbef66e2ec clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents: 70399
diff changeset
  1586
local
65bbef66e2ec clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents: 70399
diff changeset
  1587
65bbef66e2ec clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents: 70399
diff changeset
  1588
fun vars_of t = map Var (rev (Term.add_vars t []));
65bbef66e2ec clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents: 70399
diff changeset
  1589
fun frees_of t = map Free (rev (Term.add_frees t []));
65bbef66e2ec clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents: 70399
diff changeset
  1590
fun variables_of t = vars_of t @ frees_of t;
65bbef66e2ec clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents: 70399
diff changeset
  1591
65bbef66e2ec clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents: 70399
diff changeset
  1592
fun forall_intr_vfs prop = fold_rev Logic.all (variables_of prop) prop;
65bbef66e2ec clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents: 70399
diff changeset
  1593
fun forall_intr_vfs_prf prop prf = fold_rev forall_intr_proof' (variables_of prop) prf;
65bbef66e2ec clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents: 70399
diff changeset
  1594
70419
wenzelm
parents: 70417
diff changeset
  1595
fun app_types shift prop Ts prf =
wenzelm
parents: 70417
diff changeset
  1596
  let
wenzelm
parents: 70417
diff changeset
  1597
    val tvars = rev (Term.add_tvars prop []);
wenzelm
parents: 70417
diff changeset
  1598
    val tfrees = rev (Term.add_tfrees prop []);
wenzelm
parents: 70417
diff changeset
  1599
    val vs = map (fn ((a, i), _) => (a, i + shift)) tvars @ map (fn (a, _) => (a, ~1)) tfrees;
wenzelm
parents: 70417
diff changeset
  1600
    fun varify (v as (a, S)) = if member (op =) tfrees v then TVar ((a, ~1), S) else TFree v;
wenzelm
parents: 70417
diff changeset
  1601
  in map_proof_types (typ_subst_TVars (vs ~~ Ts) o map_type_tfree varify) prf end;
wenzelm
parents: 70417
diff changeset
  1602
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
  1603
fun guess_name (PThm ({name, ...}, _)) = name
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1604
  | guess_name (prf %% Hyp _) = guess_name prf
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1605
  | guess_name (prf %% OfClass _) = guess_name prf
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1606
  | guess_name (prf % NONE) = guess_name prf
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1607
  | guess_name (prf % SOME (Var _)) = guess_name prf
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1608
  | guess_name _ = "";
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1609
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1610
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1611
(* generate constraints for proof term *)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1612
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1613
fun mk_var env Ts T =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1614
  let val (env', v) = Envir.genvar "a" (env, rev Ts ---> T)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1615
  in (list_comb (v, map Bound (length Ts - 1 downto 0)), env') end;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1616
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1617
fun mk_tvar S (Envir.Envir {maxidx, tenv, tyenv}) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1618
  (TVar (("'t", maxidx + 1), S),
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1619
    Envir.Envir {maxidx = maxidx + 1, tenv = tenv, tyenv = tyenv});
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1620
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1621
val mk_abs = fold (fn T => fn u => Abs ("", T, u));
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1622
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1623
fun unifyT thy env T U =
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1624
  let
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1625
    val Envir.Envir {maxidx, tenv, tyenv} = env;
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1626
    val (tyenv', maxidx') = Sign.typ_unify thy (T, U) (tyenv, maxidx);
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1627
  in Envir.Envir {maxidx = maxidx', tenv = tenv, tyenv = tyenv'} end;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1628
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1629
fun chaseT env (T as TVar v) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1630
      (case Type.lookup (Envir.type_env env) v of
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1631
        NONE => T
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1632
      | SOME T' => chaseT env T')
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1633
  | chaseT _ T = T;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1634
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1635
fun infer_type thy (env as Envir.Envir {maxidx, tenv, tyenv}) _ vTs
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1636
      (t as Const (s, T)) = if T = dummyT then
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1637
        (case Sign.const_type thy s of
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1638
          NONE => error ("reconstruct_proof: No such constant: " ^ quote s)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1639
        | SOME T =>
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1640
            let val T' = Type.strip_sorts (Logic.incr_tvar (maxidx + 1) T)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1641
            in (Const (s, T'), T', vTs,
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1642
              Envir.Envir {maxidx = maxidx + 1, tenv = tenv, tyenv = tyenv})
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1643
            end)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1644
      else (t, T, vTs, env)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1645
  | infer_type _ env _ vTs (t as Free (s, T)) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1646
      if T = dummyT then (case Symtab.lookup vTs s of
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1647
          NONE =>
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1648
            let val (T, env') = mk_tvar [] env
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1649
            in (Free (s, T), T, Symtab.update_new (s, T) vTs, env') end
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1650
        | SOME T => (Free (s, T), T, vTs, env))
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1651
      else (t, T, vTs, env)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1652
  | infer_type _ _ _ _ (Var _) = error "reconstruct_proof: internal error"
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1653
  | infer_type thy env Ts vTs (Abs (s, T, t)) =
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1654
      let
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1655
        val (T', env') = if T = dummyT then mk_tvar [] env else (T, env);
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1656
        val (t', U, vTs', env'') = infer_type thy env' (T' :: Ts) vTs t
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1657
      in (Abs (s, T', t'), T' --> U, vTs', env'') end
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1658
  | infer_type thy env Ts vTs (t $ u) =
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1659
      let
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1660
        val (t', T, vTs1, env1) = infer_type thy env Ts vTs t;
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1661
        val (u', U, vTs2, env2) = infer_type thy env1 Ts vTs1 u;
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1662
      in (case chaseT env2 T of
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1663
          Type ("fun", [U', V]) => (t' $ u', V, vTs2, unifyT thy env2 U U')
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1664
        | _ =>
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1665
          let val (V, env3) = mk_tvar [] env2
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1666
          in (t' $ u', V, vTs2, unifyT thy env3 T (U --> V)) end)
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1667
      end
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1668
  | infer_type _ env Ts vTs (t as Bound i) = ((t, nth Ts i, vTs, env)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1669
      handle General.Subscript => error ("infer_type: bad variable index " ^ string_of_int i));
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1670
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1671
fun cantunify thy (t, u) =
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1672
  error ("Non-unifiable terms:\n" ^
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1673
    Syntax.string_of_term_global thy t ^ "\n\n" ^ Syntax.string_of_term_global thy u);
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1674
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1675
fun decompose thy Ts (p as (t, u)) env =
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1676
  let
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1677
    fun rigrig (a, T) (b, U) uT ts us =
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1678
      if a <> b then cantunify thy p
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1679
      else apfst flat (fold_map (decompose thy Ts) (ts ~~ us) (uT env T U))
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1680
  in
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1681
    case apply2 (strip_comb o Envir.head_norm env) p of
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1682
      ((Const c, ts), (Const d, us)) => rigrig c d (unifyT thy) ts us
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1683
    | ((Free c, ts), (Free d, us)) => rigrig c d (unifyT thy) ts us
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1684
    | ((Bound i, ts), (Bound j, us)) =>
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1685
        rigrig (i, dummyT) (j, dummyT) (K o K) ts us
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1686
    | ((Abs (_, T, t), []), (Abs (_, U, u), [])) =>
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1687
        decompose thy (T::Ts) (t, u) (unifyT thy env T U)
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1688
    | ((Abs (_, T, t), []), _) =>
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1689
        decompose thy (T::Ts) (t, incr_boundvars 1 u $ Bound 0) env
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1690
    | (_, (Abs (_, T, u), [])) =>
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1691
        decompose thy (T::Ts) (incr_boundvars 1 t $ Bound 0, u) env
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1692
    | _ => ([(mk_abs Ts t, mk_abs Ts u)], env)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1693
  end;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1694
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1695
fun make_constraints_cprf thy env cprf =
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1696
  let
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1697
    fun add_cnstrt Ts prop prf cs env vTs (t, u) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1698
      let
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1699
        val t' = mk_abs Ts t;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1700
        val u' = mk_abs Ts u
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1701
      in
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1702
        (prop, prf, cs, Pattern.unify (Context.Theory thy) (t', u') env, vTs)
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1703
          handle Pattern.Pattern =>
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1704
            let val (cs', env') = decompose thy [] (t', u') env
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1705
            in (prop, prf, cs @ cs', env', vTs) end
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1706
          | Pattern.Unif => cantunify thy (Envir.norm_term env t', Envir.norm_term env u')
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1707
      end;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1708
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1709
    fun mk_cnstrts_atom env vTs prop opTs prf =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1710
          let
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1711
            val tvars = Term.add_tvars prop [] |> rev;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1712
            val tfrees = Term.add_tfrees prop [] |> rev;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1713
            val (Ts, env') =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1714
              (case opTs of
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1715
                NONE => fold_map mk_tvar (map snd tvars @ map snd tfrees) env
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1716
              | SOME Ts => (Ts, env));
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1717
            val prop' = subst_atomic_types (map TVar tvars @ map TFree tfrees ~~ Ts)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1718
              (forall_intr_vfs prop) handle ListPair.UnequalLengths =>
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1719
                error ("Wrong number of type arguments for " ^ quote (guess_name prf))
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1720
          in (prop', change_types (SOME Ts) prf, [], env', vTs) end;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1721
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1722
    fun head_norm (prop, prf, cnstrts, env, vTs) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1723
      (Envir.head_norm env prop, prf, cnstrts, env, vTs);
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1724
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1725
    fun mk_cnstrts env _ Hs vTs (PBound i) = ((nth Hs i, PBound i, [], env, vTs)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1726
          handle General.Subscript => error ("mk_cnstrts: bad variable index " ^ string_of_int i))
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1727
      | mk_cnstrts env Ts Hs vTs (Abst (s, opT, cprf)) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1728
          let
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1729
            val (T, env') =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1730
              (case opT of
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1731
                NONE => mk_tvar [] env
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1732
              | SOME T => (T, env));
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1733
            val (t, prf, cnstrts, env'', vTs') =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1734
              mk_cnstrts env' (T::Ts) (map (incr_boundvars 1) Hs) vTs cprf;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1735
          in
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1736
            (Const ("Pure.all", (T --> propT) --> propT) $ Abs (s, T, t), Abst (s, SOME T, prf),
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1737
              cnstrts, env'', vTs')
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1738
          end
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1739
      | mk_cnstrts env Ts Hs vTs (AbsP (s, SOME t, cprf)) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1740
          let
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1741
            val (t', _, vTs', env') = infer_type thy env Ts vTs t;
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1742
            val (u, prf, cnstrts, env'', vTs'') = mk_cnstrts env' Ts (t'::Hs) vTs' cprf;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1743
          in (Logic.mk_implies (t', u), AbsP (s, SOME t', prf), cnstrts, env'', vTs'')
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1744
          end
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1745
      | mk_cnstrts env Ts Hs vTs (AbsP (s, NONE, cprf)) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1746
          let
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1747
            val (t, env') = mk_var env Ts propT;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1748
            val (u, prf, cnstrts, env'', vTs') = mk_cnstrts env' Ts (t::Hs) vTs cprf;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1749
          in (Logic.mk_implies (t, u), AbsP (s, SOME t, prf), cnstrts, env'', vTs')
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1750
          end
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1751
      | mk_cnstrts env Ts Hs vTs (cprf1 %% cprf2) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1752
          let val (u, prf2, cnstrts, env', vTs') = mk_cnstrts env Ts Hs vTs cprf2
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1753
          in (case head_norm (mk_cnstrts env' Ts Hs vTs' cprf1) of
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1754
              (Const ("Pure.imp", _) $ u' $ t', prf1, cnstrts', env'', vTs'') =>
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1755
                add_cnstrt Ts t' (prf1 %% prf2) (cnstrts' @ cnstrts)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1756
                  env'' vTs'' (u, u')
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1757
            | (t, prf1, cnstrts', env'', vTs'') =>
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1758
                let val (v, env''') = mk_var env'' Ts propT
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1759
                in add_cnstrt Ts v (prf1 %% prf2) (cnstrts' @ cnstrts)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1760
                  env''' vTs'' (t, Logic.mk_implies (u, v))
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1761
                end)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1762
          end
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1763
      | mk_cnstrts env Ts Hs vTs (cprf % SOME t) =
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1764
          let val (t', U, vTs1, env1) = infer_type thy env Ts vTs t
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1765
          in (case head_norm (mk_cnstrts env1 Ts Hs vTs1 cprf) of
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1766
             (Const ("Pure.all", Type ("fun", [Type ("fun", [T, _]), _])) $ f,
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1767
                 prf, cnstrts, env2, vTs2) =>
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1768
               let val env3 = unifyT thy env2 T U
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1769
               in (betapply (f, t'), prf % SOME t', cnstrts, env3, vTs2)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1770
               end
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1771
           | (u, prf, cnstrts, env2, vTs2) =>
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1772
               let val (v, env3) = mk_var env2 Ts (U --> propT);
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1773
               in
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1774
                 add_cnstrt Ts (v $ t') (prf % SOME t') cnstrts env3 vTs2
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1775
                   (u, Const ("Pure.all", (U --> propT) --> propT) $ v)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1776
               end)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1777
          end
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1778
      | mk_cnstrts env Ts Hs vTs (cprf % NONE) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1779
          (case head_norm (mk_cnstrts env Ts Hs vTs cprf) of
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1780
             (Const ("Pure.all", Type ("fun", [Type ("fun", [T, _]), _])) $ f,
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1781
                 prf, cnstrts, env', vTs') =>
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1782
               let val (t, env'') = mk_var env' Ts T
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1783
               in (betapply (f, t), prf % SOME t, cnstrts, env'', vTs')
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1784
               end
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1785
           | (u, prf, cnstrts, env', vTs') =>
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1786
               let
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1787
                 val (T, env1) = mk_tvar [] env';
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1788
                 val (v, env2) = mk_var env1 Ts (T --> propT);
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1789
                 val (t, env3) = mk_var env2 Ts T
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1790
               in
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1791
                 add_cnstrt Ts (v $ t) (prf % SOME t) cnstrts env3 vTs'
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1792
                   (u, Const ("Pure.all", (T --> propT) --> propT) $ v)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1793
               end)
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
  1794
      | mk_cnstrts env _ _ vTs (prf as PThm ({prop, types = opTs, ...}, _)) =
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1795
          mk_cnstrts_atom env vTs prop opTs prf
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1796
      | mk_cnstrts env _ _ vTs (prf as PAxm (_, prop, opTs)) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1797
          mk_cnstrts_atom env vTs prop opTs prf
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1798
      | mk_cnstrts env _ _ vTs (prf as OfClass (T, c)) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1799
          mk_cnstrts_atom env vTs (Logic.mk_of_class (T, c)) NONE prf
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1800
      | mk_cnstrts env _ _ vTs (prf as Oracle (_, prop, opTs)) =
70559
c92443e8d724 clarified type for recorded oracles;
wenzelm
parents: 70557
diff changeset
  1801
          mk_cnstrts_atom env vTs (oracle_prop prop) opTs prf
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1802
      | mk_cnstrts env _ _ vTs (Hyp t) = (t, Hyp t, [], env, vTs)
70564
2c7c8be65b7d more robust, notably for open_proof of unnamed derivation;
wenzelm
parents: 70559
diff changeset
  1803
      | mk_cnstrts _ _ _ _ MinProof = raise MIN_PROOF
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1804
  in mk_cnstrts env [] [] Symtab.empty cprf end;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1805
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1806
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1807
(* update list of free variables of constraints *)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1808
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1809
fun upd_constrs env cs =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1810
  let
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1811
    val tenv = Envir.term_env env;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1812
    val tyenv = Envir.type_env env;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1813
    val dom = []
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1814
      |> Vartab.fold (cons o #1) tenv
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1815
      |> Vartab.fold (cons o #1) tyenv;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1816
    val vran = []
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1817
      |> Vartab.fold (Term.add_var_names o #2 o #2) tenv
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1818
      |> Vartab.fold (Term.add_tvar_namesT o #2 o #2) tyenv;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1819
    fun check_cs [] = []
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1820
      | check_cs ((u, p, vs) :: ps) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1821
          let val vs' = subtract (op =) dom vs in
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1822
            if vs = vs' then (u, p, vs) :: check_cs ps
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1823
            else (true, p, fold (insert op =) vs' vran) :: check_cs ps
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1824
          end;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1825
  in check_cs cs end;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1826
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1827
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1828
(* solution of constraints *)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1829
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1830
fun solve _ [] bigenv = bigenv
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1831
  | solve thy cs bigenv =
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1832
      let
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1833
        fun search _ [] =
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1834
              error ("Unsolvable constraints:\n" ^
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1835
                Pretty.string_of (Pretty.chunks (map (fn (_, p, _) =>
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1836
                  Syntax.pretty_flexpair (Syntax.init_pretty_global thy)
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1837
                    (apply2 (Envir.norm_term bigenv) p)) cs)))
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1838
          | search env ((u, p as (t1, t2), vs)::ps) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1839
              if u then
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1840
                let
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1841
                  val tn1 = Envir.norm_term bigenv t1;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1842
                  val tn2 = Envir.norm_term bigenv t2
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1843
                in
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1844
                  if Pattern.pattern tn1 andalso Pattern.pattern tn2 then
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1845
                    (Pattern.unify (Context.Theory thy) (tn1, tn2) env, ps)
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1846
                      handle Pattern.Unif => cantunify thy (tn1, tn2)
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1847
                  else
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1848
                    let val (cs', env') = decompose thy [] (tn1, tn2) env
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1849
                    in if cs' = [(tn1, tn2)] then
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1850
                         apsnd (cons (false, (tn1, tn2), vs)) (search env ps)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1851
                       else search env' (map (fn q => (true, q, vs)) cs' @ ps)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1852
                    end
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1853
                end
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1854
              else apsnd (cons (false, p, vs)) (search env ps);
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1855
        val Envir.Envir {maxidx, ...} = bigenv;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1856
        val (env, cs') = search (Envir.empty maxidx) cs;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1857
      in
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1858
        solve thy (upd_constrs env cs') (Envir.merge (bigenv, env))
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1859
      end;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1860
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1861
in
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1862
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1863
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1864
(* reconstruction of proofs *)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1865
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1866
fun reconstruct_proof thy prop cprf =
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1867
  let
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1868
    val (cprf' % SOME prop', thawf) = freeze_thaw_prf (cprf % SOME prop);
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1869
    val (t, prf, cs, env, _) = make_constraints_cprf thy
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1870
      (Envir.empty (maxidx_proof cprf ~1)) cprf';
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1871
    val cs' =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1872
      map (apply2 (Envir.norm_term env)) ((t, prop') :: cs)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1873
      |> map (fn p => (true, p, Term.add_var_names (#1 p) (Term.add_var_names (#2 p) [])));
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1874
    val env' = solve thy cs' env
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1875
  in thawf (norm_proof env' prf) end;
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1876
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1877
fun prop_of_atom prop Ts = subst_atomic_types
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1878
  (map TVar (Term.add_tvars prop [] |> rev) @ map TFree (Term.add_tfrees prop [] |> rev) ~~ Ts)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1879
  (forall_intr_vfs prop);
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1880
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1881
val head_norm = Envir.head_norm Envir.init;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1882
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1883
fun prop_of0 Hs (PBound i) = nth Hs i
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1884
  | prop_of0 Hs (Abst (s, SOME T, prf)) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1885
      Logic.all_const T $ (Abs (s, T, prop_of0 Hs prf))
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1886
  | prop_of0 Hs (AbsP (_, SOME t, prf)) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1887
      Logic.mk_implies (t, prop_of0 (t :: Hs) prf)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1888
  | prop_of0 Hs (prf % SOME t) = (case head_norm (prop_of0 Hs prf) of
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1889
      Const ("Pure.all", _) $ f => f $ t
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1890
    | _ => error "prop_of: all expected")
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1891
  | prop_of0 Hs (prf1 %% _) = (case head_norm (prop_of0 Hs prf1) of
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1892
      Const ("Pure.imp", _) $ _ $ Q => Q
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1893
    | _ => error "prop_of: ==> expected")
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1894
  | prop_of0 _ (Hyp t) = t
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
  1895
  | prop_of0 _ (PThm ({prop, types = SOME Ts, ...}, _)) = prop_of_atom prop Ts
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1896
  | prop_of0 _ (PAxm (_, prop, SOME Ts)) = prop_of_atom prop Ts
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1897
  | prop_of0 _ (OfClass (T, c)) = Logic.mk_of_class (T, c)
70559
c92443e8d724 clarified type for recorded oracles;
wenzelm
parents: 70557
diff changeset
  1898
  | prop_of0 _ (Oracle (_, prop, SOME Ts)) = prop_of_atom (oracle_prop prop) Ts
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1899
  | prop_of0 _ _ = error "prop_of: partial proof object";
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1900
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1901
val prop_of' = Envir.beta_eta_contract oo prop_of0;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1902
val prop_of = prop_of' [];
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1903
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1904
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1905
(* expand and reconstruct subproofs *)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1906
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1907
fun expand_proof thy thms prf =
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1908
  let
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1909
    fun expand maxidx prfs (AbsP (s, t, prf)) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1910
          let val (maxidx', prfs', prf') = expand maxidx prfs prf
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1911
          in (maxidx', prfs', AbsP (s, t, prf')) end
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1912
      | expand maxidx prfs (Abst (s, T, prf)) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1913
          let val (maxidx', prfs', prf') = expand maxidx prfs prf
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1914
          in (maxidx', prfs', Abst (s, T, prf')) end
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1915
      | expand maxidx prfs (prf1 %% prf2) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1916
          let
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1917
            val (maxidx', prfs', prf1') = expand maxidx prfs prf1;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1918
            val (maxidx'', prfs'', prf2') = expand maxidx' prfs' prf2;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1919
          in (maxidx'', prfs'', prf1' %% prf2') end
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1920
      | expand maxidx prfs (prf % t) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1921
          let val (maxidx', prfs', prf') = expand maxidx prfs prf
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1922
          in (maxidx', prfs', prf' % t) end
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
  1923
      | expand maxidx prfs (prf as PThm ({name = a, prop, types = SOME Ts, ...}, thm_body)) =
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1924
          if not (exists
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1925
            (fn (b, NONE) => a = b
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1926
              | (b, SOME prop') => a = b andalso prop = prop') thms)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1927
          then (maxidx, prfs, prf) else
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1928
          let
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1929
            val (maxidx', prf, prfs') =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1930
              (case AList.lookup (op =) prfs (a, prop) of
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1931
                NONE =>
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1932
                  let
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1933
                    val prf' =
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
  1934
                      thm_body_proof_open thm_body
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1935
                      |> reconstruct_proof thy prop
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1936
                      |> forall_intr_vfs_prf prop;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1937
                    val (maxidx', prfs', prf) = expand (maxidx_proof prf' ~1) prfs prf'
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1938
                  in
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1939
                    (maxidx' + maxidx + 1, incr_indexes (maxidx + 1) prf,
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1940
                      ((a, prop), (maxidx', prf)) :: prfs')
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1941
                  end
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1942
              | SOME (maxidx', prf) =>
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1943
                  (maxidx' + maxidx + 1, incr_indexes (maxidx + 1) prf, prfs));
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1944
          in (maxidx', prfs', app_types (maxidx + 1) prop Ts prf) end
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1945
      | expand maxidx prfs prf = (maxidx, prfs, prf);
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1946
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1947
  in #3 (expand (maxidx_proof prf ~1) [] prf) end;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1948
70400
65bbef66e2ec clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents: 70399
diff changeset
  1949
end;
65bbef66e2ec clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents: 70399
diff changeset
  1950
65bbef66e2ec clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents: 70399
diff changeset
  1951
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
  1952
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
  1953
(** promises **)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1954
33722
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 33522
diff changeset
  1955
fun fulfill_norm_proof thy ps body0 =
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 33522
diff changeset
  1956
  let
66168
fcd09fc36d7f consolidate proofs more simultaneously;
wenzelm
parents: 66167
diff changeset
  1957
    val _ = consolidate (map #2 ps @ [body0]);
33722
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 33522
diff changeset
  1958
    val PBody {oracles = oracles0, thms = thms0, proof = proof0} = body0;
44334
605381e7c7c5 more direct balanced version Ord_List.unions;
wenzelm
parents: 44333
diff changeset
  1959
    val oracles =
605381e7c7c5 more direct balanced version Ord_List.unions;
wenzelm
parents: 44333
diff changeset
  1960
      unions_oracles
605381e7c7c5 more direct balanced version Ord_List.unions;
wenzelm
parents: 44333
diff changeset
  1961
        (fold (fn (_, PBody {oracles, ...}) => not (null oracles) ? cons oracles) ps [oracles0]);
605381e7c7c5 more direct balanced version Ord_List.unions;
wenzelm
parents: 44333
diff changeset
  1962
    val thms =
605381e7c7c5 more direct balanced version Ord_List.unions;
wenzelm
parents: 44333
diff changeset
  1963
      unions_thms (fold (fn (_, PBody {thms, ...}) => not (null thms) ? cons thms) ps [thms0]);
70398
725438ceae7c proof terms are always constructed sequentially;
wenzelm
parents: 70397
diff changeset
  1964
    val proof = rew_proof thy proof0;
33722
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 33522
diff changeset
  1965
  in PBody {oracles = oracles, thms = thms, proof = proof} end;
28828
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
  1966
70395
af88c05696bd clarified postproc: apply shrink_proof last, e.g. relevant for export of full proof term;
wenzelm
parents: 70394
diff changeset
  1967
fun fulfill_proof_future thy promises (postproc: proof_body -> proof_body) body =
51047
2ad5c46bcd04 avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
wenzelm
parents: 50763
diff changeset
  1968
  let
2ad5c46bcd04 avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
wenzelm
parents: 50763
diff changeset
  1969
    fun fulfill () =
2ad5c46bcd04 avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
wenzelm
parents: 50763
diff changeset
  1970
      postproc (fulfill_norm_proof thy (map (apsnd Future.join) promises) (Future.join body));
2ad5c46bcd04 avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
wenzelm
parents: 50763
diff changeset
  1971
  in
2ad5c46bcd04 avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
wenzelm
parents: 50763
diff changeset
  1972
    if null promises then Future.map postproc body
2ad5c46bcd04 avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
wenzelm
parents: 50763
diff changeset
  1973
    else if Future.is_finished body andalso length promises = 1 then
2ad5c46bcd04 avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
wenzelm
parents: 50763
diff changeset
  1974
      Future.map (fn _ => fulfill ()) (snd (hd promises))
2ad5c46bcd04 avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
wenzelm
parents: 50763
diff changeset
  1975
    else
2ad5c46bcd04 avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
wenzelm
parents: 50763
diff changeset
  1976
      (singleton o Future.forks)
2ad5c46bcd04 avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
wenzelm
parents: 50763
diff changeset
  1977
        {name = "Proofterm.fulfill_proof_future", group = NONE,
70415
3c20a86f14f1 finalize proofs earlier to reduce memory requirement;
wenzelm
parents: 70413
diff changeset
  1978
          deps = Future.task_of body :: map (Future.task_of o snd) promises, pri = 1,
51047
2ad5c46bcd04 avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
wenzelm
parents: 50763
diff changeset
  1979
          interrupts = true}
2ad5c46bcd04 avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
wenzelm
parents: 50763
diff changeset
  1980
        fulfill
2ad5c46bcd04 avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
wenzelm
parents: 50763
diff changeset
  1981
  end;
29642
be22ba214475 thm_proof: recovered single-threaded version;
wenzelm
parents: 29636
diff changeset
  1982
28828
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
  1983
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
  1984
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
  1985
(** theorems **)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1986
70529
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  1987
(* standardization of variables for export: only frees and named bounds *)
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  1988
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  1989
local
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  1990
70531
2d2b5a8e8d59 clarified name context for abstractions -- in contrast to 367e60d9aa1b and Term.variant_frees (*as they are printed :-*);
wenzelm
parents: 70530
diff changeset
  1991
val declare_names_term = Term.declare_term_frees;
70529
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  1992
val declare_names_term' = fn SOME t => declare_names_term t | NONE => I;
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  1993
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  1994
fun declare_names_proof (Abst (_, _, prf)) = declare_names_proof prf
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  1995
  | declare_names_proof (AbsP (_, t, prf)) = declare_names_term' t #> declare_names_proof prf
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  1996
  | declare_names_proof (prf % t) = declare_names_proof prf #> declare_names_term' t
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  1997
  | declare_names_proof (prf1 %% prf2) = declare_names_proof prf1 #> declare_names_proof prf2
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  1998
  | declare_names_proof _ = I;
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  1999
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2000
fun variant names bs x =
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2001
  #1 (Name.variant x (fold Name.declare bs names));
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2002
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2003
fun variant_term bs (Abs (x, T, t)) =
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2004
      let
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2005
        val x' = variant (declare_names_term t Name.context) bs x;
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2006
        val t' = variant_term (x' :: bs) t;
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2007
      in Abs (x', T, t') end
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2008
  | variant_term bs (t $ u) = variant_term bs t $ variant_term bs u
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2009
  | variant_term _ t = t;
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2010
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2011
fun variant_proof bs (Abst (x, T, prf)) =
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2012
      let
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2013
        val x' = variant (declare_names_proof prf Name.context) bs x;
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2014
        val prf' = variant_proof (x' :: bs) prf;
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2015
      in Abst (x', T, prf') end
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2016
  | variant_proof bs (AbsP (x, t, prf)) =
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2017
      let
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2018
        val x' = variant (declare_names_term' t (declare_names_proof prf Name.context)) bs x;
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2019
        val t' = Option.map (variant_term bs) t;
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2020
        val prf' = variant_proof (x' :: bs) prf;
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2021
      in AbsP (x', t', prf') end
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2022
  | variant_proof bs (prf % t) = variant_proof bs prf % Option.map (variant_term bs) t
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2023
  | variant_proof bs (prf1 %% prf2) = variant_proof bs prf1 %% variant_proof bs prf2
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2024
  | variant_proof bs (Hyp t) = Hyp (variant_term bs t)
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2025
  | variant_proof _ prf = prf;
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2026
70540
04ef5ee3dd4d more careful treatment of standard_vars: rename apart from existing frees and avoid approximative Name.declared, proper application of unvarifyT within terms of proof;
wenzelm
parents: 70538
diff changeset
  2027
val used_frees_type = fold_atyps (fn TFree (a, _) => Name.declare a | _ => I);
04ef5ee3dd4d more careful treatment of standard_vars: rename apart from existing frees and avoid approximative Name.declared, proper application of unvarifyT within terms of proof;
wenzelm
parents: 70538
diff changeset
  2028
fun used_frees_term t = fold_types used_frees_type t #> Term.declare_term_frees t;
04ef5ee3dd4d more careful treatment of standard_vars: rename apart from existing frees and avoid approximative Name.declared, proper application of unvarifyT within terms of proof;
wenzelm
parents: 70538
diff changeset
  2029
val used_frees_proof = fold_proof_terms used_frees_term used_frees_type;
04ef5ee3dd4d more careful treatment of standard_vars: rename apart from existing frees and avoid approximative Name.declared, proper application of unvarifyT within terms of proof;
wenzelm
parents: 70538
diff changeset
  2030
04ef5ee3dd4d more careful treatment of standard_vars: rename apart from existing frees and avoid approximative Name.declared, proper application of unvarifyT within terms of proof;
wenzelm
parents: 70538
diff changeset
  2031
val unvarifyT = Term.map_atyps (fn TVar ((a, _), S) => TFree (a, S) | T => T);
04ef5ee3dd4d more careful treatment of standard_vars: rename apart from existing frees and avoid approximative Name.declared, proper application of unvarifyT within terms of proof;
wenzelm
parents: 70538
diff changeset
  2032
val unvarify = Term.map_aterms (fn Var ((x, _), T) => Free (x, T) | t => t) #> map_types unvarifyT;
70541
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
  2033
val unvarify_proof = map_proof_terms unvarify unvarifyT;
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
  2034
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
  2035
fun hidden_types prop proof =
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
  2036
  let
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
  2037
    val visible = (fold_types o fold_atyps) (insert (op =)) prop [];
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
  2038
    val add_hiddenT = fold_atyps (fn T => not (member (op =) visible T) ? insert (op =) T);
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
  2039
  in rev (fold_proof_terms (fold_types add_hiddenT) add_hiddenT proof []) end;
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
  2040
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
  2041
fun standard_hidden_types term proof =
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
  2042
  let
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
  2043
    val hidden = hidden_types term proof;
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
  2044
    val idx = Term.maxidx_term term (maxidx_proof proof ~1) + 1;
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
  2045
    fun smash T = if member (op =) hidden T then TVar (("'", idx), Type.sort_of_atyp T) else T;
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
  2046
    val smashT = map_atyps smash;
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
  2047
  in map_proof_terms (map_types smashT) smashT proof end;
70540
04ef5ee3dd4d more careful treatment of standard_vars: rename apart from existing frees and avoid approximative Name.declared, proper application of unvarifyT within terms of proof;
wenzelm
parents: 70538
diff changeset
  2048
70529
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2049
in
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2050
70541
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
  2051
fun standard_vars used (term, opt_proof) =
70529
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2052
  let
70541
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
  2053
    val proofs = the_list (Option.map (standard_hidden_types term) opt_proof);
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
  2054
    val proof_terms = rev (fold (fold_proof_terms cons (cons o Logic.mk_type)) proofs []);
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
  2055
    val used_frees = used
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
  2056
      |> used_frees_term term
70540
04ef5ee3dd4d more careful treatment of standard_vars: rename apart from existing frees and avoid approximative Name.declared, proper application of unvarifyT within terms of proof;
wenzelm
parents: 70538
diff changeset
  2057
      |> fold used_frees_proof proofs;
70541
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
  2058
    val inst = Term_Subst.zero_var_indexes_inst used_frees (term :: proof_terms);
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
  2059
    val term' = term |> Term_Subst.instantiate inst |> unvarify |> variant_term [];
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
  2060
    val proofs' = proofs |> map (instantiate inst #> unvarify_proof #> variant_proof []);
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
  2061
  in (term', try hd proofs') end;
70529
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2062
70541
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
  2063
fun standard_vars_term used t = #1 (standard_vars used (t, NONE));
70529
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2064
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2065
end;
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2066
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2067
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2068
(* PThm nodes *)
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2069
70409
f881efa6be50 prefer local counter;
wenzelm
parents: 70408
diff changeset
  2070
val proof_serial = Counter.make ();
f881efa6be50 prefer local counter;
wenzelm
parents: 70408
diff changeset
  2071
70416
wenzelm
parents: 70415
diff changeset
  2072
local
wenzelm
parents: 70415
diff changeset
  2073
70458
9e2173eb23eb more direct proofs for type classes;
wenzelm
parents: 70454
diff changeset
  2074
fun unconstrainT_proof algebra classrel_proof arity_proof (ucontext: Logic.unconstrain_context) =
70436
251f1fb44ccd clarified signature;
wenzelm
parents: 70435
diff changeset
  2075
  let
251f1fb44ccd clarified signature;
wenzelm
parents: 70435
diff changeset
  2076
    fun hyp_map hyp =
251f1fb44ccd clarified signature;
wenzelm
parents: 70435
diff changeset
  2077
      (case AList.lookup (op =) (#constraints ucontext) hyp of
251f1fb44ccd clarified signature;
wenzelm
parents: 70435
diff changeset
  2078
        SOME t => Hyp t
70458
9e2173eb23eb more direct proofs for type classes;
wenzelm
parents: 70454
diff changeset
  2079
      | NONE => raise Fail "unconstrainT_proof: missing constraint");
70436
251f1fb44ccd clarified signature;
wenzelm
parents: 70435
diff changeset
  2080
251f1fb44ccd clarified signature;
wenzelm
parents: 70435
diff changeset
  2081
    val typ = Term_Subst.map_atypsT_same (Type.strip_sorts o #atyp_map ucontext);
251f1fb44ccd clarified signature;
wenzelm
parents: 70435
diff changeset
  2082
    fun ofclass (ty, c) =
251f1fb44ccd clarified signature;
wenzelm
parents: 70435
diff changeset
  2083
      let val ty' = Term.map_atyps (#atyp_map ucontext) ty;
70458
9e2173eb23eb more direct proofs for type classes;
wenzelm
parents: 70454
diff changeset
  2084
      in the_single (of_sort_proof algebra classrel_proof arity_proof  hyp_map (ty', [c])) end;
70436
251f1fb44ccd clarified signature;
wenzelm
parents: 70435
diff changeset
  2085
  in
251f1fb44ccd clarified signature;
wenzelm
parents: 70435
diff changeset
  2086
    Same.commit (map_proof_same (Term_Subst.map_types_same typ) typ ofclass)
251f1fb44ccd clarified signature;
wenzelm
parents: 70435
diff changeset
  2087
    #> fold_rev (implies_intr_proof o snd) (#constraints ucontext)
251f1fb44ccd clarified signature;
wenzelm
parents: 70435
diff changeset
  2088
  end;
251f1fb44ccd clarified signature;
wenzelm
parents: 70435
diff changeset
  2089
70448
bf28f0179914 more robust export, based on reconstruct_proof / expand_proof;
wenzelm
parents: 70447
diff changeset
  2090
fun clean_proof thy = rew_proof thy #> shrink_proof;
bf28f0179914 more robust export, based on reconstruct_proof / expand_proof;
wenzelm
parents: 70447
diff changeset
  2091
70534
fb876ebbf5a7 export facts with reconstructed proof term (if possible), but its PThm boxes need to be collected separately;
wenzelm
parents: 70531
diff changeset
  2092
fun encode_export prop prf =
fb876ebbf5a7 export facts with reconstructed proof term (if possible), but its PThm boxes need to be collected separately;
wenzelm
parents: 70531
diff changeset
  2093
  let open XML.Encode Term_XML.Encode
fb876ebbf5a7 export facts with reconstructed proof term (if possible), but its PThm boxes need to be collected separately;
wenzelm
parents: 70531
diff changeset
  2094
  in pair term encode_full (prop, prf) end;
70529
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2095
70500
5d540dbbe5ba export each PThm node separately: slightly more scalable;
wenzelm
parents: 70497
diff changeset
  2096
fun export_proof thy i prop prf =
70451
550a5a822edb clarified export: retain proof boxes as local definitions -- more scalable;
wenzelm
parents: 70449
diff changeset
  2097
  let
70541
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
  2098
    val (prop', SOME prf') =
f3fbc7f3559d more careful treatment of hidden type variable names: smash before zero_var_indexes to get standard enumeration;
wenzelm
parents: 70540
diff changeset
  2099
      standard_vars Name.context (prop, SOME (reconstruct_proof thy prop prf));
70529
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2100
    val xml = encode_export prop' prf';
70500
5d540dbbe5ba export each PThm node separately: slightly more scalable;
wenzelm
parents: 70497
diff changeset
  2101
    val chunks = Buffer.chunks (YXML.buffer_body xml Buffer.empty);
5d540dbbe5ba export each PThm node separately: slightly more scalable;
wenzelm
parents: 70497
diff changeset
  2102
  in
5d540dbbe5ba export each PThm node separately: slightly more scalable;
wenzelm
parents: 70497
diff changeset
  2103
    chunks |> Export.export_params
5d540dbbe5ba export each PThm node separately: slightly more scalable;
wenzelm
parents: 70497
diff changeset
  2104
     {theory = thy,
5d540dbbe5ba export each PThm node separately: slightly more scalable;
wenzelm
parents: 70497
diff changeset
  2105
      binding = Path.binding0 (Path.make ["proofs", string_of_int i]),
5d540dbbe5ba export each PThm node separately: slightly more scalable;
wenzelm
parents: 70497
diff changeset
  2106
      executable = false,
5d540dbbe5ba export each PThm node separately: slightly more scalable;
wenzelm
parents: 70497
diff changeset
  2107
      compress = true,
5d540dbbe5ba export each PThm node separately: slightly more scalable;
wenzelm
parents: 70497
diff changeset
  2108
      strict = false}
5d540dbbe5ba export each PThm node separately: slightly more scalable;
wenzelm
parents: 70497
diff changeset
  2109
  end;
5d540dbbe5ba export each PThm node separately: slightly more scalable;
wenzelm
parents: 70497
diff changeset
  2110
70502
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
  2111
fun export_proof_boxes proof =
70500
5d540dbbe5ba export each PThm node separately: slightly more scalable;
wenzelm
parents: 70497
diff changeset
  2112
  let
5d540dbbe5ba export each PThm node separately: slightly more scalable;
wenzelm
parents: 70497
diff changeset
  2113
    fun export_boxes (AbsP (_, _, prf)) = export_boxes prf
5d540dbbe5ba export each PThm node separately: slightly more scalable;
wenzelm
parents: 70497
diff changeset
  2114
      | export_boxes (Abst (_, _, prf)) = export_boxes prf
5d540dbbe5ba export each PThm node separately: slightly more scalable;
wenzelm
parents: 70497
diff changeset
  2115
      | export_boxes (prf1 %% prf2) = export_boxes prf1 #> export_boxes prf2
5d540dbbe5ba export each PThm node separately: slightly more scalable;
wenzelm
parents: 70497
diff changeset
  2116
      | export_boxes (prf % _) = export_boxes prf
70502
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
  2117
      | export_boxes (PThm ({serial = i, name = "", ...}, thm_body)) =
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
  2118
          (fn boxes =>
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
  2119
            if Inttab.defined boxes i then boxes
70451
550a5a822edb clarified export: retain proof boxes as local definitions -- more scalable;
wenzelm
parents: 70449
diff changeset
  2120
            else
70500
5d540dbbe5ba export each PThm node separately: slightly more scalable;
wenzelm
parents: 70497
diff changeset
  2121
              let
70502
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
  2122
                val prf = thm_body_proof_raw thm_body;
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
  2123
                val boxes' = Inttab.update (i, thm_body_export_proof thm_body) boxes;
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
  2124
              in export_boxes prf boxes' end)
70500
5d540dbbe5ba export each PThm node separately: slightly more scalable;
wenzelm
parents: 70497
diff changeset
  2125
      | export_boxes _ = I;
70502
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
  2126
    val boxes = (proof, Inttab.empty) |-> export_boxes |> Inttab.dest;
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
  2127
  in List.app (Lazy.force o #2) boxes end;
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
  2128
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
  2129
fun export_enabled () = Options.default_bool "export_proofs";
70451
550a5a822edb clarified export: retain proof boxes as local definitions -- more scalable;
wenzelm
parents: 70449
diff changeset
  2130
70500
5d540dbbe5ba export each PThm node separately: slightly more scalable;
wenzelm
parents: 70497
diff changeset
  2131
fun export thy i prop prf =
70502
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
  2132
  if export_enabled () then (export_proof_boxes prf; export_proof thy i prop prf) else ();
70416
wenzelm
parents: 70415
diff changeset
  2133
wenzelm
parents: 70415
diff changeset
  2134
fun prune proof =
wenzelm
parents: 70415
diff changeset
  2135
  if Options.default_bool "prune_proofs" then MinProof
70448
bf28f0179914 more robust export, based on reconstruct_proof / expand_proof;
wenzelm
parents: 70447
diff changeset
  2136
  else proof;
70416
wenzelm
parents: 70415
diff changeset
  2137
70458
9e2173eb23eb more direct proofs for type classes;
wenzelm
parents: 70454
diff changeset
  2138
fun prepare_thm_proof unconstrain thy classrel_proof arity_proof
70494
41108e3e9ca5 formal position for PThm nodes;
wenzelm
parents: 70493
diff changeset
  2139
    (name, pos) shyps hyps concl promises body =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  2140
  let
70422
wenzelm
parents: 70420
diff changeset
  2141
    val named = name <> "";
wenzelm
parents: 70420
diff changeset
  2142
32810
f3466a5645fa back to simple fold_body_thms and fulfill_proof/thm_proof (reverting a900d3cd47cc) -- the cycle check is implicit in the future computation of join_proofs;
wenzelm
parents: 32785
diff changeset
  2143
    val prop = Logic.list_implies (hyps, concl);
70416
wenzelm
parents: 70415
diff changeset
  2144
    val args = prop_args prop;
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  2145
70436
251f1fb44ccd clarified signature;
wenzelm
parents: 70435
diff changeset
  2146
    val (ucontext, prop1) = Logic.unconstrainT shyps prop;
36882
f33760bb8ca0 conditionally unconstrain thm proofs -- loosely based on the version by krauss/schropp;
wenzelm
parents: 36880
diff changeset
  2147
70416
wenzelm
parents: 70415
diff changeset
  2148
    val PBody {oracles = oracles0, thms = thms0, proof = prf} = body;
37251
72c7e636067b normalize and postprocess proof body in a separate future, taking care of platforms without multithreading (greately improves parallelization in general without the overhead of promised proofs, cf. usedir -q 0);
wenzelm
parents: 37236
diff changeset
  2149
    val body0 =
70416
wenzelm
parents: 70415
diff changeset
  2150
      Future.value
wenzelm
parents: 70415
diff changeset
  2151
        (PBody {oracles = oracles0, thms = thms0,
wenzelm
parents: 70415
diff changeset
  2152
          proof = if proofs_enabled () then fold_rev implies_intr_proof hyps prf else MinProof});
70400
65bbef66e2ec clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents: 70399
diff changeset
  2153
70448
bf28f0179914 more robust export, based on reconstruct_proof / expand_proof;
wenzelm
parents: 70447
diff changeset
  2154
    fun publish i = map_proof_of (clean_proof thy #> tap (export thy i prop1) #> prune);
bf28f0179914 more robust export, based on reconstruct_proof / expand_proof;
wenzelm
parents: 70447
diff changeset
  2155
    val open_proof = not named ? clean_proof thy;
70422
wenzelm
parents: 70420
diff changeset
  2156
70396
425c5f9bc61a support export_proofs, prune_proofs;
wenzelm
parents: 70395
diff changeset
  2157
    fun new_prf () =
425c5f9bc61a support export_proofs, prune_proofs;
wenzelm
parents: 70395
diff changeset
  2158
      let
70409
f881efa6be50 prefer local counter;
wenzelm
parents: 70408
diff changeset
  2159
        val i = proof_serial ();
70458
9e2173eb23eb more direct proofs for type classes;
wenzelm
parents: 70454
diff changeset
  2160
        val unconstrainT =
9e2173eb23eb more direct proofs for type classes;
wenzelm
parents: 70454
diff changeset
  2161
          unconstrainT_proof (Sign.classes_of thy) classrel_proof arity_proof ucontext;
9e2173eb23eb more direct proofs for type classes;
wenzelm
parents: 70454
diff changeset
  2162
        val postproc = map_proof_of unconstrainT #> named ? publish i;
70396
425c5f9bc61a support export_proofs, prune_proofs;
wenzelm
parents: 70395
diff changeset
  2163
      in (i, fulfill_proof_future thy promises postproc body0) end;
70395
af88c05696bd clarified postproc: apply shrink_proof last, e.g. relevant for export of full proof term;
wenzelm
parents: 70394
diff changeset
  2164
36880
49d3cc859a12 avoid redundant rebinding of name/prop -- probably introduced accidentally in 80bb72a0f577;
wenzelm
parents: 36879
diff changeset
  2165
    val (i, body') =
41699
21492e1c2b5a tuned comments;
wenzelm
parents: 41698
diff changeset
  2166
      (*non-deterministic, depends on unknown promises*)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  2167
      (case strip_combt (fst (strip_combP prf)) of
70551
9e87e978be5e clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
wenzelm
parents: 70541
diff changeset
  2168
        (PThm ({serial, name = a, prop = prop', types = NONE, ...}, thm_body'), args') =>
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
  2169
          if (a = "" orelse a = name) andalso prop' = prop1 andalso args' = args then
70551
9e87e978be5e clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
wenzelm
parents: 70541
diff changeset
  2170
            let
9e87e978be5e clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
wenzelm
parents: 70541
diff changeset
  2171
              val Thm_Body {body = body', ...} = thm_body';
9e87e978be5e clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
wenzelm
parents: 70541
diff changeset
  2172
              val i = if a = "" andalso named then proof_serial () else serial;
9e87e978be5e clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
wenzelm
parents: 70541
diff changeset
  2173
            in (i, body' |> serial <> i ? Future.map (publish i)) end
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  2174
          else new_prf ()
28815
80bb72a0f577 proof_body/pthm: removed redundant types field;
wenzelm
parents: 28812
diff changeset
  2175
      | _ => new_prf ());
70416
wenzelm
parents: 70415
diff changeset
  2176
70502
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
  2177
    val export_proof =
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
  2178
      if named orelse not (export_enabled ()) then no_export_proof
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
  2179
      else Lazy.lazy (fn () => join_proof body' |> open_proof |> export_proof thy i prop1);
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
  2180
70423
wenzelm
parents: 70422
diff changeset
  2181
    val pthm = (i, make_thm_node name prop1 body');
wenzelm
parents: 70422
diff changeset
  2182
70538
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
  2183
    val header =
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
  2184
      thm_header i ([pos, Position.thread_data ()]) (Context.theory_long_name thy) name prop1 NONE;
70502
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
  2185
    val thm_body = Thm_Body {export_proof = export_proof, open_proof = open_proof, body = body'};
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
  2186
    val head = PThm (header, thm_body);
70423
wenzelm
parents: 70422
diff changeset
  2187
    val proof =
70439
145fb19d906d tuned -- non-strict args;
wenzelm
parents: 70437
diff changeset
  2188
      if unconstrain then
145fb19d906d tuned -- non-strict args;
wenzelm
parents: 70437
diff changeset
  2189
        proof_combt' (head, (map o Option.map o Term.map_types) (#map_atyps ucontext) args)
145fb19d906d tuned -- non-strict args;
wenzelm
parents: 70437
diff changeset
  2190
      else
145fb19d906d tuned -- non-strict args;
wenzelm
parents: 70437
diff changeset
  2191
        proof_combP (proof_combt' (head, args),
145fb19d906d tuned -- non-strict args;
wenzelm
parents: 70437
diff changeset
  2192
          map OfClass (#outer_constraints ucontext) @ map Hyp hyps);
70423
wenzelm
parents: 70422
diff changeset
  2193
  in (pthm, proof) end;
36883
4ed0d72def50 added Proofterm.unconstrain_thm_proof for Thm.unconstrainT -- loosely based on the version by krauss/schropp;
wenzelm
parents: 36882
diff changeset
  2194
70422
wenzelm
parents: 70420
diff changeset
  2195
in
wenzelm
parents: 70420
diff changeset
  2196
70423
wenzelm
parents: 70422
diff changeset
  2197
val thm_proof = prepare_thm_proof false;
36883
4ed0d72def50 added Proofterm.unconstrain_thm_proof for Thm.unconstrainT -- loosely based on the version by krauss/schropp;
wenzelm
parents: 36882
diff changeset
  2198
70458
9e2173eb23eb more direct proofs for type classes;
wenzelm
parents: 70454
diff changeset
  2199
fun unconstrain_thm_proof thy classrel_proof arity_proof shyps concl promises body =
70494
41108e3e9ca5 formal position for PThm nodes;
wenzelm
parents: 70493
diff changeset
  2200
  prepare_thm_proof true thy classrel_proof arity_proof ("", Position.none)
41108e3e9ca5 formal position for PThm nodes;
wenzelm
parents: 70493
diff changeset
  2201
    shyps [] concl promises body;
36883
4ed0d72def50 added Proofterm.unconstrain_thm_proof for Thm.unconstrainT -- loosely based on the version by krauss/schropp;
wenzelm
parents: 36882
diff changeset
  2202
70422
wenzelm
parents: 70420
diff changeset
  2203
end;
wenzelm
parents: 70420
diff changeset
  2204
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  2205
70554
10d41bf28b92 clarified signature;
wenzelm
parents: 70551
diff changeset
  2206
(* get PThm identity *)
70416
wenzelm
parents: 70415
diff changeset
  2207
70551
9e87e978be5e clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
wenzelm
parents: 70541
diff changeset
  2208
fun get_identity shyps hyps prop prf =
70436
251f1fb44ccd clarified signature;
wenzelm
parents: 70435
diff changeset
  2209
  let val (_, prop) = Logic.unconstrainT shyps (Logic.list_implies (hyps, prop)) in
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
  2210
    (case fst (strip_combt (fst (strip_combP prf))) of
70551
9e87e978be5e clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
wenzelm
parents: 70541
diff changeset
  2211
      PThm ({serial, theory_name, name, prop = prop', ...}, _) =>
9e87e978be5e clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
wenzelm
parents: 70541
diff changeset
  2212
        if prop = prop'
9e87e978be5e clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
wenzelm
parents: 70541
diff changeset
  2213
        then SOME {serial = serial, theory_name = theory_name, name = name} else NONE
9e87e978be5e clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
wenzelm
parents: 70541
diff changeset
  2214
    | _ => NONE)
36877
7699f7fafde7 added Proofterm.get_name variants according to krauss/schropp;
wenzelm
parents: 36742
diff changeset
  2215
  end;
7699f7fafde7 added Proofterm.get_name variants according to krauss/schropp;
wenzelm
parents: 36742
diff changeset
  2216
70554
10d41bf28b92 clarified signature;
wenzelm
parents: 70551
diff changeset
  2217
fun get_approximative_name shyps hyps prop prf =
70551
9e87e978be5e clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
wenzelm
parents: 70541
diff changeset
  2218
  Option.map #name (get_identity shyps hyps prop prf) |> the_default "";
9e87e978be5e clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
wenzelm
parents: 70541
diff changeset
  2219
70554
10d41bf28b92 clarified signature;
wenzelm
parents: 70551
diff changeset
  2220
10d41bf28b92 clarified signature;
wenzelm
parents: 70551
diff changeset
  2221
type thm_id = {serial: proof_serial, theory_name: string};
10d41bf28b92 clarified signature;
wenzelm
parents: 70551
diff changeset
  2222
10d41bf28b92 clarified signature;
wenzelm
parents: 70551
diff changeset
  2223
fun get_id shyps hyps prop prf : thm_id option =
70551
9e87e978be5e clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
wenzelm
parents: 70541
diff changeset
  2224
  (case get_identity shyps hyps prop prf of
9e87e978be5e clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
wenzelm
parents: 70541
diff changeset
  2225
    NONE => NONE
9e87e978be5e clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
wenzelm
parents: 70541
diff changeset
  2226
  | SOME {name = "", ...} => NONE
9e87e978be5e clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
wenzelm
parents: 70541
diff changeset
  2227
  | SOME {serial, theory_name, ...} => SOME {serial = serial, theory_name = theory_name});
9e87e978be5e clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
wenzelm
parents: 70541
diff changeset
  2228
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  2229
end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  2230
32094
89b9210c7506 prefer simultaneous join -- for improved scheduling;
wenzelm
parents: 32057
diff changeset
  2231
structure Basic_Proofterm : BASIC_PROOFTERM = Proofterm;
89b9210c7506 prefer simultaneous join -- for improved scheduling;
wenzelm
parents: 32057
diff changeset
  2232
open Basic_Proofterm;