src/HOL/Tools/Lifting/lifting_info.ML
author haftmann
Sat, 25 Jan 2014 23:50:49 +0100
changeset 55147 bce3dbc11f95
parent 53754 124bb918f45f
child 55563 a64d49f49ca3
permissions -rw-r--r--
prefer explicit code symbol type over ad-hoc name mangling
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
     1
(*  Title:      HOL/Tools/Lifting/lifting_info.ML
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
     2
    Author:     Ondrej Kuncar
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
     3
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
     4
Context data for the lifting package.
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
     5
*)
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
     6
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
     7
signature LIFTING_INFO =
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
     8
sig
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
     9
  type quot_map = {rel_quot_thm: thm}
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    10
  val lookup_quot_maps: Proof.context -> string -> quot_map option
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    11
  val print_quot_maps: Proof.context -> unit
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    12
  
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    13
  type pcr = {pcrel_def: thm, pcr_cr_eq: thm}
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    14
  type quotient = {quot_thm: thm, pcr_info: pcr option}
53651
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
    15
  val pcr_eq: pcr * pcr -> bool
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
    16
  val quotient_eq: quotient * quotient -> bool
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    17
  val transform_quotient: morphism -> quotient -> quotient
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    18
  val lookup_quotients: Proof.context -> string -> quotient option
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    19
  val update_quotients: string -> quotient -> Context.generic -> Context.generic
53650
71a0a8687d6c make ML function for deleting quotients public
kuncar
parents: 53284
diff changeset
    20
  val delete_quotients: thm -> Context.generic -> Context.generic
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
    21
  val print_quotients: Proof.context -> unit
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
    22
53651
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
    23
  type restore_data = {quotient : quotient, transfer_rules: thm Item_Net.T}
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
    24
  val lookup_restore_data: Proof.context -> string -> restore_data option
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
    25
  val init_restore_data: string -> quotient -> Context.generic -> Context.generic
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
    26
  val add_transfer_rules_in_restore_data: string -> thm Item_Net.T -> Context.generic -> Context.generic  
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
    27
47634
091bcd569441 hide the invariant constant for relators: invariant_commute infrastracture
kuncar
parents: 47308
diff changeset
    28
  val get_invariant_commute_rules: Proof.context -> thm list
47936
756f30eac792 infrastructure that makes possible to prove that a relation is reflexive
kuncar
parents: 47784
diff changeset
    29
  
47982
7aa35601ff65 prove reflexivity also for the quotient composition relation; reflp_preserve renamed to reflexivity_rule
kuncar
parents: 47951
diff changeset
    30
  val get_reflexivity_rules: Proof.context -> thm list
51994
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
    31
  val add_reflexivity_rule_raw_attribute: attribute
47982
7aa35601ff65 prove reflexivity also for the quotient composition relation; reflp_preserve renamed to reflexivity_rule
kuncar
parents: 47951
diff changeset
    32
  val add_reflexivity_rule_attribute: attribute
47634
091bcd569441 hide the invariant constant for relators: invariant_commute infrastracture
kuncar
parents: 47308
diff changeset
    33
51374
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
    34
  type relator_distr_data = {pos_mono_rule: thm, neg_mono_rule: thm, 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
    35
    pos_distr_rules: thm list, neg_distr_rules: thm list}
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
    36
  val lookup_relator_distr_data: Proof.context -> string -> relator_distr_data option
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    37
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    38
  val get_quot_maps           : Proof.context -> quot_map Symtab.table
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    39
  val get_quotients           : Proof.context -> quotient Symtab.table
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    40
  val get_relator_distr_data  : Proof.context -> relator_distr_data Symtab.table
53651
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
    41
  val get_restore_data        : Proof.context -> restore_data Symtab.table
51374
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
    42
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
    43
  val setup: theory -> theory
53651
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
    44
end
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
    45
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
    46
structure Lifting_Info: LIFTING_INFO =
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
    47
struct
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
    48
47777
f29e7dcd7c40 use a quot_map theorem attribute instead of the complicated map attribute
kuncar
parents: 47634
diff changeset
    49
open Lifting_Util
f29e7dcd7c40 use a quot_map theorem attribute instead of the complicated map attribute
kuncar
parents: 47634
diff changeset
    50
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    51
(** data container **)
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    52
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    53
type quot_map = {rel_quot_thm: thm}
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    54
type pcr = {pcrel_def: thm, pcr_cr_eq: thm}
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    55
type quotient = {quot_thm: thm, pcr_info: pcr option}
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    56
type relator_distr_data = {pos_mono_rule: thm, neg_mono_rule: thm, 
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    57
  pos_distr_rules: thm list, neg_distr_rules: thm list}
53651
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
    58
type restore_data = {quotient : quotient, transfer_rules: thm Item_Net.T}
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    59
53684
339aefeacb57 correct merging of restore data
kuncar
parents: 53651
diff changeset
    60
fun pcr_eq ({pcrel_def = pcrel_def1, pcr_cr_eq = pcr_cr_eq1},
339aefeacb57 correct merging of restore data
kuncar
parents: 53651
diff changeset
    61
           {pcrel_def = pcrel_def2, pcr_cr_eq = pcr_cr_eq2}) = 
339aefeacb57 correct merging of restore data
kuncar
parents: 53651
diff changeset
    62
           Thm.eq_thm (pcrel_def1, pcrel_def2) andalso Thm.eq_thm (pcr_cr_eq1, pcr_cr_eq2)
339aefeacb57 correct merging of restore data
kuncar
parents: 53651
diff changeset
    63
339aefeacb57 correct merging of restore data
kuncar
parents: 53651
diff changeset
    64
fun option_eq _ (NONE,NONE) = true
339aefeacb57 correct merging of restore data
kuncar
parents: 53651
diff changeset
    65
  | option_eq _ (NONE,_) = false
339aefeacb57 correct merging of restore data
kuncar
parents: 53651
diff changeset
    66
  | option_eq _ (_,NONE) = false
339aefeacb57 correct merging of restore data
kuncar
parents: 53651
diff changeset
    67
  | option_eq cmp (SOME x, SOME y) = cmp (x,y);
339aefeacb57 correct merging of restore data
kuncar
parents: 53651
diff changeset
    68
339aefeacb57 correct merging of restore data
kuncar
parents: 53651
diff changeset
    69
fun quotient_eq ({quot_thm = quot_thm1, pcr_info = pcr_info1},
339aefeacb57 correct merging of restore data
kuncar
parents: 53651
diff changeset
    70
                {quot_thm = quot_thm2, pcr_info = pcr_info2}) =
339aefeacb57 correct merging of restore data
kuncar
parents: 53651
diff changeset
    71
                Thm.eq_thm (quot_thm1, quot_thm2) andalso option_eq pcr_eq (pcr_info1, pcr_info2)
339aefeacb57 correct merging of restore data
kuncar
parents: 53651
diff changeset
    72
53754
124bb918f45f make SML/NJ happy
kuncar
parents: 53684
diff changeset
    73
fun join_restore_data key (rd1:restore_data, rd2) =
53684
339aefeacb57 correct merging of restore data
kuncar
parents: 53651
diff changeset
    74
  if pointer_eq (rd1, rd2) then raise Symtab.SAME else
339aefeacb57 correct merging of restore data
kuncar
parents: 53651
diff changeset
    75
  if not (quotient_eq (#quotient rd1, #quotient rd2)) then raise Symtab.DUP key else
339aefeacb57 correct merging of restore data
kuncar
parents: 53651
diff changeset
    76
    { quotient = #quotient rd1, 
339aefeacb57 correct merging of restore data
kuncar
parents: 53651
diff changeset
    77
      transfer_rules = Item_Net.merge (#transfer_rules rd1, #transfer_rules rd2)}
339aefeacb57 correct merging of restore data
kuncar
parents: 53651
diff changeset
    78
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    79
structure Data = Generic_Data
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    80
(
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    81
  type T = 
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    82
    { quot_maps : quot_map Symtab.table,
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    83
      quotients : quotient Symtab.table,
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    84
      reflexivity_rules : thm Item_Net.T,
53651
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
    85
      relator_distr_data : relator_distr_data Symtab.table,
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
    86
      restore_data : restore_data Symtab.table
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    87
    }
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    88
  val empty =
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    89
    { quot_maps = Symtab.empty,
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    90
      quotients = Symtab.empty,
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    91
      reflexivity_rules = Thm.full_rules,
53651
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
    92
      relator_distr_data = Symtab.empty,
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
    93
      restore_data = Symtab.empty
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    94
    }
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    95
  val extend = I
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
    96
  fun merge
53651
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
    97
    ( { quot_maps = qm1, quotients = q1, reflexivity_rules = rr1, relator_distr_data = rdd1, 
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
    98
        restore_data = rd1 },
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
    99
      { quot_maps = qm2, quotients = q2, reflexivity_rules = rr2, relator_distr_data = rdd2,
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   100
        restore_data = rd2 } ) =
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   101
    { quot_maps = Symtab.merge (K true) (qm1, qm2),
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   102
      quotients = Symtab.merge (K true) (q1, q2),
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   103
      reflexivity_rules = Item_Net.merge (rr1, rr2),
53651
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   104
      relator_distr_data = Symtab.merge (K true) (rdd1, rdd2),
53684
339aefeacb57 correct merging of restore data
kuncar
parents: 53651
diff changeset
   105
      restore_data = Symtab.join join_restore_data (rd1, rd2) }
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   106
)
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   107
53651
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   108
fun map_data f1 f2 f3 f4 f5
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   109
  { quot_maps, quotients, reflexivity_rules, relator_distr_data, restore_data } =
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   110
  { quot_maps = f1 quot_maps,
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   111
    quotients = f2 quotients,
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   112
    reflexivity_rules = f3 reflexivity_rules,
53651
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   113
    relator_distr_data = f4 relator_distr_data,
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   114
    restore_data = f5 restore_data }
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   115
53651
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   116
fun map_quot_maps           f = map_data f I I I I
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   117
fun map_quotients           f = map_data I f I I I
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   118
fun map_reflexivity_rules   f = map_data I I f I I
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   119
fun map_relator_distr_data  f = map_data I I I f I
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   120
fun map_restore_data        f = map_data I I I I f
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   121
  
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   122
val get_quot_maps'           = #quot_maps o Data.get
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   123
val get_quotients'           = #quotients o Data.get
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   124
val get_reflexivity_rules'   = #reflexivity_rules o Data.get
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   125
val get_relator_distr_data'  = #relator_distr_data o Data.get
53651
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   126
val get_restore_data'        = #restore_data o Data.get
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   127
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   128
fun get_quot_maps          ctxt = get_quot_maps' (Context.Proof ctxt)
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   129
fun get_quotients          ctxt = get_quotients' (Context.Proof ctxt)
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   130
fun get_relator_distr_data ctxt = get_relator_distr_data' (Context.Proof ctxt)
53651
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   131
fun get_restore_data       ctxt = get_restore_data' (Context.Proof ctxt)
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   132
47777
f29e7dcd7c40 use a quot_map theorem attribute instead of the complicated map attribute
kuncar
parents: 47634
diff changeset
   133
(* info about Quotient map theorems *)
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   134
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   135
val lookup_quot_maps = Symtab.lookup o get_quot_maps
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   136
47784
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   137
fun quot_map_thm_sanity_check rel_quot_thm ctxt =
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   138
  let
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   139
    fun quot_term_absT ctxt quot_term = 
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   140
      let 
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   141
        val (_, abs, _, _) = (dest_Quotient o HOLogic.dest_Trueprop) quot_term
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   142
          handle TERM (_, [t]) => error (Pretty.string_of (Pretty.block
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   143
            [Pretty.str "The Quotient map theorem is not in the right form.",
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   144
             Pretty.brk 1,
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   145
             Pretty.str "The following term is not the Quotient predicate:",
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   146
             Pretty.brk 1,
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   147
             Syntax.pretty_term ctxt t]))
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   148
      in
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   149
        fastype_of abs
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   150
      end
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   151
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   152
    val ((_, [rel_quot_thm_fixed]), ctxt') = Variable.importT [rel_quot_thm] ctxt
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   153
    val rel_quot_thm_prop = prop_of rel_quot_thm_fixed
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   154
    val rel_quot_thm_concl = Logic.strip_imp_concl rel_quot_thm_prop
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   155
    val rel_quot_thm_prems = Logic.strip_imp_prems rel_quot_thm_prop;
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   156
    val concl_absT = quot_term_absT ctxt' rel_quot_thm_concl
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   157
    val concl_tfrees = Term.add_tfree_namesT (concl_absT) []
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   158
    val prems_tfrees = fold (fn typ => fn list => Term.add_tfree_namesT (quot_term_absT ctxt' typ) list) 
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   159
                          rel_quot_thm_prems []
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   160
    val extra_prem_tfrees =
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   161
      case subtract (op =) concl_tfrees prems_tfrees of
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   162
        [] => []
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   163
      | extras => [Pretty.block ([Pretty.str "Extra type variables in the premises:",
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   164
                                 Pretty.brk 1] @ 
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   165
                                 ((Pretty.commas o map (Pretty.str o quote)) extras) @
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   166
                                 [Pretty.str "."])]
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   167
    val errs = extra_prem_tfrees 
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   168
  in
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   169
    if null errs then () else error (cat_lines (["Sanity check of the quotient map theorem failed:",""] 
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   170
                                                 @ (map Pretty.string_of errs)))
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   171
  end
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   172
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   173
47777
f29e7dcd7c40 use a quot_map theorem attribute instead of the complicated map attribute
kuncar
parents: 47634
diff changeset
   174
fun add_quot_map rel_quot_thm ctxt = 
f29e7dcd7c40 use a quot_map theorem attribute instead of the complicated map attribute
kuncar
parents: 47634
diff changeset
   175
  let
47784
fe43977e434f added a basic sanity check for quot_map
kuncar
parents: 47777
diff changeset
   176
    val _ = Context.cases (K ()) (quot_map_thm_sanity_check rel_quot_thm) ctxt
47777
f29e7dcd7c40 use a quot_map theorem attribute instead of the complicated map attribute
kuncar
parents: 47634
diff changeset
   177
    val rel_quot_thm_concl = (Logic.strip_imp_concl o prop_of) rel_quot_thm
f29e7dcd7c40 use a quot_map theorem attribute instead of the complicated map attribute
kuncar
parents: 47634
diff changeset
   178
    val (_, abs, _, _) = (dest_Quotient o HOLogic.dest_Trueprop) rel_quot_thm_concl
f29e7dcd7c40 use a quot_map theorem attribute instead of the complicated map attribute
kuncar
parents: 47634
diff changeset
   179
    val relatorT_name = (fst o dest_Type o fst o dest_funT o fastype_of) abs
f29e7dcd7c40 use a quot_map theorem attribute instead of the complicated map attribute
kuncar
parents: 47634
diff changeset
   180
    val minfo = {rel_quot_thm = rel_quot_thm}
f29e7dcd7c40 use a quot_map theorem attribute instead of the complicated map attribute
kuncar
parents: 47634
diff changeset
   181
  in
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   182
    Data.map (map_quot_maps (Symtab.update (relatorT_name, minfo))) ctxt
47777
f29e7dcd7c40 use a quot_map theorem attribute instead of the complicated map attribute
kuncar
parents: 47634
diff changeset
   183
  end    
f29e7dcd7c40 use a quot_map theorem attribute instead of the complicated map attribute
kuncar
parents: 47634
diff changeset
   184
47951
8c8a03765de7 quot_del attribute, it allows us to deregister quotient types
kuncar
parents: 47936
diff changeset
   185
val quot_map_attribute_setup =
47777
f29e7dcd7c40 use a quot_map theorem attribute instead of the complicated map attribute
kuncar
parents: 47634
diff changeset
   186
  Attrib.setup @{binding quot_map} (Scan.succeed (Thm.declaration_attribute add_quot_map))
f29e7dcd7c40 use a quot_map theorem attribute instead of the complicated map attribute
kuncar
parents: 47634
diff changeset
   187
    "declaration of the Quotient map theorem"
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   188
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   189
fun print_quot_maps ctxt =
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   190
  let
47777
f29e7dcd7c40 use a quot_map theorem attribute instead of the complicated map attribute
kuncar
parents: 47634
diff changeset
   191
    fun prt_map (ty_name, {rel_quot_thm}) =
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   192
      Pretty.block (separate (Pretty.brk 2)
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   193
         [Pretty.str "type:", 
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   194
          Pretty.str ty_name,
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   195
          Pretty.str "quot. theorem:", 
47777
f29e7dcd7c40 use a quot_map theorem attribute instead of the complicated map attribute
kuncar
parents: 47634
diff changeset
   196
          Syntax.pretty_term ctxt (prop_of rel_quot_thm)])
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   197
  in
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   198
    map prt_map (Symtab.dest (get_quot_maps ctxt))
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   199
    |> Pretty.big_list "maps for type constructors:"
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   200
    |> Pretty.writeln
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   201
  end
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   202
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   203
(* info about quotient types *)
53651
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   204
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   205
fun transform_pcr_info phi {pcrel_def, pcr_cr_eq} =
51374
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   206
  {pcrel_def = Morphism.thm phi pcrel_def, pcr_cr_eq = Morphism.thm phi pcr_cr_eq}
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   207
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   208
fun transform_quotient phi {quot_thm, pcr_info} =
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   209
  {quot_thm = Morphism.thm phi quot_thm, pcr_info = Option.map (transform_pcr_info phi) pcr_info}
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   210
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   211
fun lookup_quotients ctxt type_name = Symtab.lookup (get_quotients ctxt) type_name
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   212
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   213
fun update_quotients type_name qinfo ctxt = 
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   214
  Data.map (map_quotients (Symtab.update (type_name, qinfo))) ctxt
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   215
47951
8c8a03765de7 quot_del attribute, it allows us to deregister quotient types
kuncar
parents: 47936
diff changeset
   216
fun delete_quotients quot_thm ctxt =
8c8a03765de7 quot_del attribute, it allows us to deregister quotient types
kuncar
parents: 47936
diff changeset
   217
  let
8c8a03765de7 quot_del attribute, it allows us to deregister quotient types
kuncar
parents: 47936
diff changeset
   218
    val (_, qtyp) = quot_thm_rty_qty quot_thm
8c8a03765de7 quot_del attribute, it allows us to deregister quotient types
kuncar
parents: 47936
diff changeset
   219
    val qty_full_name = (fst o dest_Type) qtyp
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   220
    val symtab = get_quotients' ctxt
53284
d0153a0a9b2b make SML/NJ happy
kuncar
parents: 53219
diff changeset
   221
    fun compare_data (_, data:quotient) = Thm.eq_thm_prop (#quot_thm data, quot_thm)
47951
8c8a03765de7 quot_del attribute, it allows us to deregister quotient types
kuncar
parents: 47936
diff changeset
   222
  in
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   223
    if Symtab.member compare_data symtab (qty_full_name, quot_thm)
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   224
      then Data.map (map_quotients (Symtab.delete qty_full_name)) ctxt
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   225
      else ctxt
47951
8c8a03765de7 quot_del attribute, it allows us to deregister quotient types
kuncar
parents: 47936
diff changeset
   226
  end
8c8a03765de7 quot_del attribute, it allows us to deregister quotient types
kuncar
parents: 47936
diff changeset
   227
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   228
fun print_quotients ctxt =
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   229
  let
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   230
    fun prt_quot (qty_name, {quot_thm, pcr_info}: quotient) =
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   231
      Pretty.block (separate (Pretty.brk 2)
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   232
       [Pretty.str "type:", 
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   233
        Pretty.str qty_name,
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   234
        Pretty.str "quot. thm:",
50227
01d545993e8c generate a parameterized correspondence relation
kuncar
parents: 47982
diff changeset
   235
        Syntax.pretty_term ctxt (prop_of quot_thm),
01d545993e8c generate a parameterized correspondence relation
kuncar
parents: 47982
diff changeset
   236
        Pretty.str "pcrel_def thm:",
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   237
        option_fold (Pretty.str "-") ((Syntax.pretty_term ctxt) o prop_of o #pcrel_def) pcr_info,
51374
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   238
        Pretty.str "pcr_cr_eq thm:",
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   239
        option_fold (Pretty.str "-") ((Syntax.pretty_term ctxt) o prop_of o #pcr_cr_eq) pcr_info])
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   240
  in
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   241
    map prt_quot (Symtab.dest (get_quotients ctxt))
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   242
    |> Pretty.big_list "quotients:"
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   243
    |> Pretty.writeln
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   244
  end
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   245
47951
8c8a03765de7 quot_del attribute, it allows us to deregister quotient types
kuncar
parents: 47936
diff changeset
   246
val quot_del_attribute_setup =
8c8a03765de7 quot_del attribute, it allows us to deregister quotient types
kuncar
parents: 47936
diff changeset
   247
  Attrib.setup @{binding quot_del} (Scan.succeed (Thm.declaration_attribute delete_quotients))
8c8a03765de7 quot_del attribute, it allows us to deregister quotient types
kuncar
parents: 47936
diff changeset
   248
    "deletes the Quotient theorem"
8c8a03765de7 quot_del attribute, it allows us to deregister quotient types
kuncar
parents: 47936
diff changeset
   249
53651
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   250
(* data for restoring Transfer/Lifting context *)
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   251
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   252
fun lookup_restore_data ctxt bundle_name = Symtab.lookup (get_restore_data ctxt) bundle_name
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   253
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   254
fun update_restore_data bundle_name restore_data ctxt = 
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   255
  Data.map (map_restore_data (Symtab.update (bundle_name, restore_data))) ctxt
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   256
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   257
fun init_restore_data bundle_name qinfo ctxt = 
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   258
  update_restore_data bundle_name { quotient = qinfo, transfer_rules = Thm.full_rules } ctxt
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   259
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   260
fun add_transfer_rules_in_restore_data bundle_name transfer_rules ctxt =
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   261
  case Symtab.lookup (get_restore_data' ctxt) bundle_name of
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   262
    SOME restore_data => update_restore_data bundle_name { quotient = #quotient restore_data, 
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   263
      transfer_rules = Item_Net.merge ((#transfer_rules restore_data), transfer_rules) } ctxt
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   264
    | NONE => error ("The restore data " ^ quote bundle_name ^ " is not defined.")
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   265
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   266
(* theorems that a relator of an invariant is an invariant of the corresponding predicate *)
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   267
47634
091bcd569441 hide the invariant constant for relators: invariant_commute infrastracture
kuncar
parents: 47308
diff changeset
   268
structure Invariant_Commute = Named_Thms
091bcd569441 hide the invariant constant for relators: invariant_commute infrastracture
kuncar
parents: 47308
diff changeset
   269
(
091bcd569441 hide the invariant constant for relators: invariant_commute infrastracture
kuncar
parents: 47308
diff changeset
   270
  val name = @{binding invariant_commute}
091bcd569441 hide the invariant constant for relators: invariant_commute infrastracture
kuncar
parents: 47308
diff changeset
   271
  val description = "theorems that a relator of an invariant is an invariant of the corresponding predicate"
091bcd569441 hide the invariant constant for relators: invariant_commute infrastracture
kuncar
parents: 47308
diff changeset
   272
)
091bcd569441 hide the invariant constant for relators: invariant_commute infrastracture
kuncar
parents: 47308
diff changeset
   273
091bcd569441 hide the invariant constant for relators: invariant_commute infrastracture
kuncar
parents: 47308
diff changeset
   274
fun get_invariant_commute_rules ctxt = map safe_mk_meta_eq (Invariant_Commute.get ctxt)
091bcd569441 hide the invariant constant for relators: invariant_commute infrastracture
kuncar
parents: 47308
diff changeset
   275
51994
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   276
(* info about reflexivity rules *)
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   277
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   278
fun get_reflexivity_rules ctxt = Item_Net.content (get_reflexivity_rules' (Context.Proof ctxt))
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   279
  
51994
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   280
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   281
(* Conversion to create a reflp' variant of a reflexivity rule  *)
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   282
fun safe_reflp_conv ct =
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   283
  Conv.try_conv (HOLogic.Trueprop_conv (Conv.rewr_conv (Thm.symmetric @{thm reflp'_def}))) ct
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   284
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   285
fun prep_reflp_conv ct = (
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   286
      Conv.implies_conv safe_reflp_conv prep_reflp_conv
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   287
      else_conv
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   288
      safe_reflp_conv
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   289
      else_conv
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   290
      Conv.all_conv) ct
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   291
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   292
fun add_reflexivity_rule_raw thm = Data.map (map_reflexivity_rules (Item_Net.update thm))
51994
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   293
val add_reflexivity_rule_raw_attribute = Thm.declaration_attribute add_reflexivity_rule_raw
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   294
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   295
fun add_reflexivity_rule thm = add_reflexivity_rule_raw thm #>
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   296
  add_reflexivity_rule_raw (Conv.fconv_rule prep_reflp_conv thm)
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   297
val add_reflexivity_rule_attribute = Thm.declaration_attribute add_reflexivity_rule
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   298
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   299
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   300
val relfexivity_rule_setup =
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   301
  let
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   302
    val name = @{binding reflexivity_rule}
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   303
    fun del_thm_raw thm = Data.map (map_reflexivity_rules (Item_Net.remove thm))
51994
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   304
    fun del_thm thm = del_thm_raw thm #>
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   305
      del_thm_raw (Conv.fconv_rule prep_reflp_conv thm)
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   306
    val del = Thm.declaration_attribute del_thm
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   307
    val text = "rules that are used to prove that a relation is reflexive"
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   308
    val content = Item_Net.content o get_reflexivity_rules'
51994
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   309
  in
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   310
    Attrib.setup name (Attrib.add_del add_reflexivity_rule_attribute del) text
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   311
    #> Global_Theory.add_thms_dynamic (name, content)
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   312
  end
47936
756f30eac792 infrastructure that makes possible to prove that a relation is reflexive
kuncar
parents: 47784
diff changeset
   313
51374
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   314
(* info about relator distributivity theorems *)
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   315
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   316
fun map_relator_distr_data' f1 f2 f3 f4
51374
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   317
  {pos_mono_rule, neg_mono_rule, pos_distr_rules, neg_distr_rules} =
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   318
  {pos_mono_rule   = f1 pos_mono_rule, 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   319
   neg_mono_rule   = f2 neg_mono_rule,
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   320
   pos_distr_rules = f3 pos_distr_rules, 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   321
   neg_distr_rules = f4 neg_distr_rules}
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   322
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   323
fun map_pos_mono_rule f = map_relator_distr_data' f I I I
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   324
fun map_neg_mono_rule f = map_relator_distr_data' I f I I
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   325
fun map_pos_distr_rules f = map_relator_distr_data' I I f I 
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   326
fun map_neg_distr_rules f = map_relator_distr_data' I I I f
51374
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   327
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   328
fun introduce_polarities rule =
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   329
  let
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   330
    val dest_less_eq = HOLogic.dest_bin @{const_name "less_eq"} dummyT
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   331
    val prems_pairs = map (dest_less_eq o HOLogic.dest_Trueprop) (prems_of rule)
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   332
    val equal_prems = filter op= prems_pairs
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   333
    val _ = if null equal_prems then () 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   334
      else error "The rule contains reflexive assumptions."
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   335
    val concl_pairs = rule 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   336
      |> concl_of
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   337
      |> HOLogic.dest_Trueprop
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   338
      |> dest_less_eq
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   339
      |> pairself (snd o strip_comb)
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   340
      |> op~~
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   341
      |> filter_out op=
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   342
    
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   343
    val _ = if has_duplicates op= concl_pairs 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   344
      then error "The rule contains duplicated variables in the conlusion." else ()
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   345
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   346
    fun rewrite_prem prem_pair = 
51427
08bb00239652 proper use of "member", without embarking on delicate questions about SML equality types;
wenzelm
parents: 51426
diff changeset
   347
      if member op= concl_pairs prem_pair
51374
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   348
      then HOLogic.Trueprop_conv (Conv.rewr_conv (Thm.symmetric @{thm POS_def}))
51427
08bb00239652 proper use of "member", without embarking on delicate questions about SML equality types;
wenzelm
parents: 51426
diff changeset
   349
      else if member op= concl_pairs (swap prem_pair)
51374
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   350
        then HOLogic.Trueprop_conv (Conv.rewr_conv (Thm.symmetric @{thm NEG_def}))
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   351
      else error "The rule contains a non-relevant assumption."
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   352
    
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   353
    fun rewrite_prems [] = Conv.all_conv
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   354
      | rewrite_prems (x::xs) = Conv.implies_conv (rewrite_prem x) (rewrite_prems xs)
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   355
    
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   356
    val rewrite_prems_conv = rewrite_prems prems_pairs
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   357
    val rewrite_concl_conv = 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   358
      Conv.concl_conv ~1 (HOLogic.Trueprop_conv (Conv.rewr_conv (Thm.symmetric @{thm POS_def})))
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   359
  in
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   360
    (Conv.fconv_rule (rewrite_prems_conv then_conv rewrite_concl_conv)) rule
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   361
  end
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   362
  handle 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   363
    TERM _ => error "The rule has a wrong format."
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   364
    | CTERM _ => error "The rule has a wrong format."
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   365
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   366
fun negate_mono_rule mono_rule = 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   367
  let
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   368
    val rewr_conv = HOLogic.Trueprop_conv (Conv.rewrs_conv [@{thm POS_NEG}, @{thm NEG_POS}])
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   369
  in
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   370
    Conv.fconv_rule (Conv.prems_conv ~1 rewr_conv then_conv Conv.concl_conv ~1 rewr_conv) mono_rule
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   371
  end;
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   372
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   373
fun add_mono_rule mono_rule ctxt = 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   374
  let
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   375
    val mono_rule = introduce_polarities mono_rule
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   376
    val mono_ruleT_name = (fst o dest_Type o fst o relation_types o fst o relation_types o snd o 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   377
      dest_Const o head_of o HOLogic.dest_Trueprop o concl_of) mono_rule
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   378
    val _ = if Symtab.defined (get_relator_distr_data' ctxt) mono_ruleT_name 
51374
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   379
      then error ("Monotocity rule for type " ^ quote mono_ruleT_name ^ " is already_defined.")
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   380
      else ()
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   381
    val neg_mono_rule = negate_mono_rule mono_rule
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   382
    val relator_distr_data = {pos_mono_rule = mono_rule, neg_mono_rule = neg_mono_rule, 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   383
      pos_distr_rules = [], neg_distr_rules = []}
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   384
  in
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   385
    Data.map (map_relator_distr_data (Symtab.update (mono_ruleT_name, relator_distr_data))) ctxt
51374
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   386
  end;
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   387
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   388
local 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   389
  fun add_distr_rule update_entry distr_rule ctxt =
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   390
    let
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   391
      val distr_ruleT_name = (fst o dest_Type o fst o relation_types o fst o relation_types o snd o 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   392
        dest_Const o head_of o HOLogic.dest_Trueprop o concl_of) distr_rule
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   393
    in
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   394
      if Symtab.defined (get_relator_distr_data' ctxt) distr_ruleT_name then 
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   395
        Data.map (map_relator_distr_data (Symtab.map_entry distr_ruleT_name (update_entry distr_rule))) 
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   396
          ctxt
51374
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   397
      else error "The monoticity rule is not defined."
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   398
    end
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   399
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   400
    fun rewrite_concl_conv thm ctm = 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   401
      Conv.concl_conv ~1 (HOLogic.Trueprop_conv (Conv.rewr_conv (Thm.symmetric thm))) ctm
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   402
      handle CTERM _ => error "The rule has a wrong format."
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   403
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   404
in
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   405
  fun add_pos_distr_rule distr_rule ctxt = 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   406
    let
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   407
      val distr_rule = Conv.fconv_rule (rewrite_concl_conv @{thm POS_def}) distr_rule
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   408
      fun update_entry distr_rule data = 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   409
        map_pos_distr_rules (cons (@{thm POS_trans} OF [distr_rule, #pos_mono_rule data])) data
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   410
    in
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   411
      add_distr_rule update_entry distr_rule ctxt
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   412
    end
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   413
    handle THM _ => error "Combining of the distr. rule and the monotonicity rule together has failed."
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   414
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   415
  
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   416
  fun add_neg_distr_rule distr_rule ctxt = 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   417
    let
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   418
      val distr_rule = Conv.fconv_rule (rewrite_concl_conv @{thm NEG_def}) distr_rule
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   419
      fun update_entry distr_rule data = 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   420
        map_neg_distr_rules (cons (@{thm NEG_trans} OF [distr_rule, #neg_mono_rule data])) data
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   421
    in
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   422
      add_distr_rule update_entry distr_rule ctxt
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   423
    end
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   424
    handle THM _ => error "Combining of the distr. rule and the monotonicity rule together has failed."
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   425
end
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   426
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   427
local 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   428
  val eq_refl2 = sym RS @{thm eq_refl}
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   429
in
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   430
  fun add_eq_distr_rule distr_rule ctxt =
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   431
    let 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   432
      val pos_distr_rule = @{thm eq_refl} OF [distr_rule]
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   433
      val neg_distr_rule = eq_refl2 OF [distr_rule]
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   434
    in
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   435
      ctxt 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   436
      |> add_pos_distr_rule pos_distr_rule
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   437
      |> add_neg_distr_rule neg_distr_rule
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   438
    end
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   439
end;
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   440
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   441
local
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   442
  fun sanity_check rule =
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   443
    let
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   444
      val assms = map (perhaps (try HOLogic.dest_Trueprop)) (prems_of rule)
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   445
      val concl = (perhaps (try HOLogic.dest_Trueprop)) (concl_of rule);
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   446
      val (lhs, rhs) = case concl of
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   447
        Const ("Orderings.ord_class.less_eq", _) $ (lhs as Const ("Relation.relcompp",_) $ _ $ _) $ rhs => 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   448
          (lhs, rhs)
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   449
        | Const ("Orderings.ord_class.less_eq", _) $ rhs $ (lhs as Const ("Relation.relcompp",_) $ _ $ _) => 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   450
          (lhs, rhs)
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   451
        | Const ("HOL.eq", _) $ (lhs as Const ("Relation.relcompp",_) $ _ $ _) $ rhs => (lhs, rhs)
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   452
        | _ => error "The rule has a wrong format."
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   453
      
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   454
      val lhs_vars = Term.add_vars lhs []
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   455
      val rhs_vars = Term.add_vars rhs []
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   456
      val assms_vars = fold Term.add_vars assms [];
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   457
      val _ = if has_duplicates op= lhs_vars then error "Left-hand side has variable duplicates" else ()
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   458
      val _ = if subset op= (rhs_vars, lhs_vars) then () 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   459
        else error "Extra variables in the right-hand side of the rule"
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   460
      val _ = if subset op= (assms_vars, lhs_vars) then () 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   461
        else error "Extra variables in the assumptions of the rule"
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   462
      val rhs_args = (snd o strip_comb) rhs;
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   463
      fun check_comp t = case t of 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   464
        Const ("Relation.relcompp", _) $ Var (_, _) $ Var (_,_) => ()
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   465
        | _ => error "There is an argument on the rhs that is not a composition."
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   466
      val _ = map check_comp rhs_args
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   467
    in
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   468
      ()
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   469
    end
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   470
in
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   471
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   472
  fun add_distr_rule distr_rule ctxt = 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   473
    let
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   474
      val _ = sanity_check distr_rule
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   475
      val concl = (perhaps (try HOLogic.dest_Trueprop)) (concl_of distr_rule)
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   476
    in
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   477
      case concl of
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   478
        Const ("Orderings.ord_class.less_eq", _) $ (Const ("Relation.relcompp",_) $ _ $ _) $ _ => 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   479
          add_pos_distr_rule distr_rule ctxt
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   480
        | Const ("Orderings.ord_class.less_eq", _) $ _ $ (Const ("Relation.relcompp",_) $ _ $ _) => 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   481
          add_neg_distr_rule distr_rule ctxt
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   482
        | Const ("HOL.eq", _) $ (Const ("Relation.relcompp",_) $ _ $ _) $ _ =>
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   483
          add_eq_distr_rule distr_rule ctxt
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   484
    end
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   485
end
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   486
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   487
fun get_distr_rules_raw ctxt = Symtab.fold 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   488
  (fn (_, {pos_distr_rules, neg_distr_rules, ...}) => fn rules => pos_distr_rules @ neg_distr_rules @ rules) 
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   489
    (get_relator_distr_data' ctxt) []
51374
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   490
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   491
fun get_mono_rules_raw ctxt = Symtab.fold 
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   492
  (fn (_, {pos_mono_rule, neg_mono_rule, ...}) => fn rules => [pos_mono_rule, neg_mono_rule] @ rules) 
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   493
    (get_relator_distr_data' ctxt) []
51374
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   494
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   495
val lookup_relator_distr_data = Symtab.lookup o get_relator_distr_data
51374
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   496
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   497
val relator_distr_attribute_setup =
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   498
  Attrib.setup @{binding relator_mono} (Scan.succeed (Thm.declaration_attribute add_mono_rule))
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   499
    "declaration of relator's monoticity"
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   500
  #> Attrib.setup @{binding relator_distr} (Scan.succeed (Thm.declaration_attribute add_distr_rule))
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   501
    "declaration of relator's distributivity over OO"
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   502
  #> Global_Theory.add_thms_dynamic
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   503
     (@{binding relator_distr_raw}, get_distr_rules_raw)
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   504
  #> Global_Theory.add_thms_dynamic
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   505
     (@{binding relator_mono_raw}, get_mono_rules_raw)
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   506
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   507
(* theory setup *)
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   508
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   509
val setup =
47951
8c8a03765de7 quot_del attribute, it allows us to deregister quotient types
kuncar
parents: 47936
diff changeset
   510
  quot_map_attribute_setup
8c8a03765de7 quot_del attribute, it allows us to deregister quotient types
kuncar
parents: 47936
diff changeset
   511
  #> quot_del_attribute_setup
47634
091bcd569441 hide the invariant constant for relators: invariant_commute infrastracture
kuncar
parents: 47308
diff changeset
   512
  #> Invariant_Commute.setup
51994
82cc2aeb7d13 stronger reflexivity prover
kuncar
parents: 51427
diff changeset
   513
  #> relfexivity_rule_setup
51374
84d01fd733cf lift_definition and setup_lifting generate parametric transfer rules if parametricity theorems are provided
kuncar
parents: 50227
diff changeset
   514
  #> relator_distr_attribute_setup
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   515
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   516
(* outer syntax commands *)
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   517
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   518
val _ =
53219
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   519
  Outer_Syntax.improper_command @{command_spec "print_quot_maps"} "print quotient map functions"
ca237b9e4542 use only one data slot; rename print_quotmaps to print_quot_maps; tuned
kuncar
parents: 51994
diff changeset
   520
    (Scan.succeed (Toplevel.keep (print_quot_maps o Toplevel.context_of)))
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   521
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   522
val _ =
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   523
  Outer_Syntax.improper_command @{command_spec "print_quotients"} "print quotients"
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   524
    (Scan.succeed (Toplevel.keep (print_quotients o Toplevel.context_of)))
9caab698dbe4 new package Lifting - initial commit
kuncar
parents:
diff changeset
   525
53651
ee90c67502c9 restoring Transfer/Lifting context
kuncar
parents: 53650
diff changeset
   526
end