src/HOL/Library/Quotient_Option.thy
author kuncar
Thu, 26 Apr 2012 12:01:58 +0200
changeset 47777 f29e7dcd7c40
parent 47635 ebb79474262c
child 47936 756f30eac792
permissions -rw-r--r--
use a quot_map theorem attribute instead of the complicated map attribute
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
47455
26315a545e26 updated headers;
wenzelm
parents: 47308
diff changeset
     1
(*  Title:      HOL/Library/Quotient_Option.thy
47624
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
     2
    Author:     Cezary Kaliszyk, Christian Urban and Brian Huffman
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
     3
*)
35788
f1deaca15ca3 observe standard header format;
wenzelm
parents: 35222
diff changeset
     4
f1deaca15ca3 observe standard header format;
wenzelm
parents: 35222
diff changeset
     5
header {* Quotient infrastructure for the option type *}
f1deaca15ca3 observe standard header format;
wenzelm
parents: 35222
diff changeset
     6
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
     7
theory Quotient_Option
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
     8
imports Main Quotient_Syntax
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
     9
begin
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    10
47624
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    11
subsection {* Relator for option type *}
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    12
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    13
fun
40542
9a173a22771c re-generalized type of option_rel and sum_rel (accident from 2989f9f3aa10)
haftmann
parents: 40464
diff changeset
    14
  option_rel :: "('a \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> 'a option \<Rightarrow> 'b option \<Rightarrow> bool"
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    15
where
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    16
  "option_rel R None None = True"
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    17
| "option_rel R (Some x) None = False"
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    18
| "option_rel R None (Some x) = False"
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    19
| "option_rel R (Some x) (Some y) = R x y"
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    20
40820
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    21
lemma option_rel_unfold:
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    22
  "option_rel R x y = (case (x, y) of (None, None) \<Rightarrow> True
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    23
    | (Some x, Some y) \<Rightarrow> R x y
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    24
    | _ \<Rightarrow> False)"
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    25
  by (cases x) (cases y, simp_all)+
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    26
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    27
lemma option_rel_map1:
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    28
  "option_rel R (Option.map f x) y \<longleftrightarrow> option_rel (\<lambda>x. R (f x)) x y"
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    29
  by (simp add: option_rel_unfold split: option.split)
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    30
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    31
lemma option_rel_map2:
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    32
  "option_rel R x (Option.map f y) \<longleftrightarrow> option_rel (\<lambda>x y. R x (f y)) x y"
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    33
  by (simp add: option_rel_unfold split: option.split)
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    34
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    35
lemma option_map_id [id_simps]:
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    36
  "Option.map id = id"
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    37
  by (simp add: id_def Option.map.identity fun_eq_iff)
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    38
47624
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    39
lemma option_rel_eq [id_simps, relator_eq]:
40820
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    40
  "option_rel (op =) = (op =)"
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    41
  by (simp add: option_rel_unfold fun_eq_iff split: option.split)
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    42
47624
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    43
lemma split_option_all: "(\<forall>x. P x) \<longleftrightarrow> P None \<and> (\<forall>x. P (Some x))"
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    44
  by (metis option.exhaust) (* TODO: move to Option.thy *)
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    45
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    46
lemma split_option_ex: "(\<exists>x. P x) \<longleftrightarrow> P None \<or> (\<exists>x. P (Some x))"
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    47
  by (metis option.exhaust) (* TODO: move to Option.thy *)
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    48
40820
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    49
lemma option_reflp:
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    50
  "reflp R \<Longrightarrow> reflp (option_rel R)"
47624
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    51
  unfolding reflp_def split_option_all by simp
40820
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    52
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    53
lemma option_symp:
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    54
  "symp R \<Longrightarrow> symp (option_rel R)"
47624
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    55
  unfolding symp_def split_option_all option_rel.simps by fast
40820
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    56
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    57
lemma option_transp:
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    58
  "transp R \<Longrightarrow> transp (option_rel R)"
47624
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    59
  unfolding transp_def split_option_all option_rel.simps by fast
40820
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    60
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    61
lemma option_equivp [quot_equiv]:
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    62
  "equivp R \<Longrightarrow> equivp (option_rel R)"
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    63
  by (blast intro: equivpI option_reflp option_symp option_transp elim: equivpE)
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
    64
47624
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    65
lemma right_total_option_rel [transfer_rule]:
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    66
  "right_total R \<Longrightarrow> right_total (option_rel R)"
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    67
  unfolding right_total_def split_option_all split_option_ex by simp
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    68
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    69
lemma right_unique_option_rel [transfer_rule]:
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    70
  "right_unique R \<Longrightarrow> right_unique (option_rel R)"
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    71
  unfolding right_unique_def split_option_all by simp
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    72
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    73
lemma bi_total_option_rel [transfer_rule]:
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    74
  "bi_total R \<Longrightarrow> bi_total (option_rel R)"
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    75
  unfolding bi_total_def split_option_all split_option_ex by simp
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    76
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    77
lemma bi_unique_option_rel [transfer_rule]:
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    78
  "bi_unique R \<Longrightarrow> bi_unique (option_rel R)"
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    79
  unfolding bi_unique_def split_option_all by simp
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    80
47635
ebb79474262c rename 'correspondence' method to 'transfer_prover'
huffman
parents: 47634
diff changeset
    81
subsection {* Transfer rules for transfer package *}
47624
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    82
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    83
lemma None_transfer [transfer_rule]: "(option_rel A) None None"
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    84
  by simp
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    85
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    86
lemma Some_transfer [transfer_rule]: "(A ===> option_rel A) Some Some"
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    87
  unfolding fun_rel_def by simp
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    88
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    89
lemma option_case_transfer [transfer_rule]:
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    90
  "(B ===> (A ===> B) ===> option_rel A ===> B) option_case option_case"
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    91
  unfolding fun_rel_def split_option_all by simp
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    92
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    93
lemma option_map_transfer [transfer_rule]:
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    94
  "((A ===> B) ===> option_rel A ===> option_rel B) Option.map Option.map"
47635
ebb79474262c rename 'correspondence' method to 'transfer_prover'
huffman
parents: 47634
diff changeset
    95
  unfolding Option.map_def by transfer_prover
47624
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    96
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    97
lemma option_bind_transfer [transfer_rule]:
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    98
  "(option_rel A ===> (A ===> option_rel B) ===> option_rel B)
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
    99
    Option.bind Option.bind"
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
   100
  unfolding fun_rel_def split_option_all by simp
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
   101
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
   102
subsection {* Setup for lifting package *}
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
   103
47777
f29e7dcd7c40 use a quot_map theorem attribute instead of the complicated map attribute
kuncar
parents: 47635
diff changeset
   104
lemma Quotient_option[quot_map]:
47624
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
   105
  assumes "Quotient R Abs Rep T"
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
   106
  shows "Quotient (option_rel R) (Option.map Abs)
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
   107
    (Option.map Rep) (option_rel T)"
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
   108
  using assms unfolding Quotient_alt_def option_rel_unfold
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
   109
  by (simp split: option.split)
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
   110
47634
091bcd569441 hide the invariant constant for relators: invariant_commute infrastracture
kuncar
parents: 47624
diff changeset
   111
fun option_pred :: "('a \<Rightarrow> bool) \<Rightarrow> 'a option \<Rightarrow> bool"
091bcd569441 hide the invariant constant for relators: invariant_commute infrastracture
kuncar
parents: 47624
diff changeset
   112
where
091bcd569441 hide the invariant constant for relators: invariant_commute infrastracture
kuncar
parents: 47624
diff changeset
   113
  "option_pred R None = True"
091bcd569441 hide the invariant constant for relators: invariant_commute infrastracture
kuncar
parents: 47624
diff changeset
   114
| "option_pred R (Some x) = R x"
091bcd569441 hide the invariant constant for relators: invariant_commute infrastracture
kuncar
parents: 47624
diff changeset
   115
091bcd569441 hide the invariant constant for relators: invariant_commute infrastracture
kuncar
parents: 47624
diff changeset
   116
lemma option_invariant_commute [invariant_commute]:
091bcd569441 hide the invariant constant for relators: invariant_commute infrastracture
kuncar
parents: 47624
diff changeset
   117
  "option_rel (Lifting.invariant P) = Lifting.invariant (option_pred P)"
091bcd569441 hide the invariant constant for relators: invariant_commute infrastracture
kuncar
parents: 47624
diff changeset
   118
  apply (simp add: fun_eq_iff Lifting.invariant_def)
091bcd569441 hide the invariant constant for relators: invariant_commute infrastracture
kuncar
parents: 47624
diff changeset
   119
  apply (intro allI) 
091bcd569441 hide the invariant constant for relators: invariant_commute infrastracture
kuncar
parents: 47624
diff changeset
   120
  apply (case_tac x rule: option.exhaust)
091bcd569441 hide the invariant constant for relators: invariant_commute infrastracture
kuncar
parents: 47624
diff changeset
   121
  apply (case_tac xa rule: option.exhaust)
091bcd569441 hide the invariant constant for relators: invariant_commute infrastracture
kuncar
parents: 47624
diff changeset
   122
  apply auto[2]
091bcd569441 hide the invariant constant for relators: invariant_commute infrastracture
kuncar
parents: 47624
diff changeset
   123
  apply (case_tac xa rule: option.exhaust)
091bcd569441 hide the invariant constant for relators: invariant_commute infrastracture
kuncar
parents: 47624
diff changeset
   124
  apply auto
091bcd569441 hide the invariant constant for relators: invariant_commute infrastracture
kuncar
parents: 47624
diff changeset
   125
done
091bcd569441 hide the invariant constant for relators: invariant_commute infrastracture
kuncar
parents: 47624
diff changeset
   126
47624
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
   127
subsection {* Rules for quotient package *}
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
   128
40820
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
   129
lemma option_quotient [quot_thm]:
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47094
diff changeset
   130
  assumes "Quotient3 R Abs Rep"
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47094
diff changeset
   131
  shows "Quotient3 (option_rel R) (Option.map Abs) (Option.map Rep)"
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47094
diff changeset
   132
  apply (rule Quotient3I)
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47094
diff changeset
   133
  apply (simp_all add: Option.map.compositionality comp_def Option.map.identity option_rel_eq option_rel_map1 option_rel_map2 Quotient3_abs_rep [OF assms] Quotient3_rel_rep [OF assms])
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47094
diff changeset
   134
  using Quotient3_rel [OF assms]
40820
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
   135
  apply (simp add: option_rel_unfold split: option.split)
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   136
  done
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   137
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47094
diff changeset
   138
declare [[mapQ3 option = (option_rel, option_quotient)]]
47094
1a7ad2601cb5 store the relational theorem for every relator
kuncar
parents: 45802
diff changeset
   139
40820
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
   140
lemma option_None_rsp [quot_respect]:
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47094
diff changeset
   141
  assumes q: "Quotient3 R Abs Rep"
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   142
  shows "option_rel R None None"
47624
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
   143
  by (rule None_transfer)
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   144
40820
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
   145
lemma option_Some_rsp [quot_respect]:
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47094
diff changeset
   146
  assumes q: "Quotient3 R Abs Rep"
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   147
  shows "(R ===> option_rel R) Some Some"
47624
16d433895d2e add new transfer rules and setup for lifting package
huffman
parents: 47455
diff changeset
   148
  by (rule Some_transfer)
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   149
40820
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
   150
lemma option_None_prs [quot_preserve]:
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47094
diff changeset
   151
  assumes q: "Quotient3 R Abs Rep"
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   152
  shows "Option.map Abs None = None"
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   153
  by simp
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   154
40820
fd9c98ead9a9 more systematic and compact proofs on type relation operators using natural deduction rules
haftmann
parents: 40542
diff changeset
   155
lemma option_Some_prs [quot_preserve]:
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47094
diff changeset
   156
  assumes q: "Quotient3 R Abs Rep"
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   157
  shows "(Rep ---> Option.map Abs) Some = Some"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39198
diff changeset
   158
  apply(simp add: fun_eq_iff)
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47094
diff changeset
   159
  apply(simp add: Quotient3_abs_rep[OF q])
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   160
  done
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   161
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   162
end