# HG changeset patch # User nipkow # Date 1368507271 -7200 # Node ID 9c80e62161a5839b458af6e9105f3f002a77fcff # Parent e116eb9e5e17a77f902b2ae82bd06f20944e716f tuned names diff -r e116eb9e5e17 -r 9c80e62161a5 src/HOL/IMP/Abs_Int0.thy --- a/src/HOL/IMP/Abs_Int0.thy Mon May 13 22:49:00 2013 +0200 +++ b/src/HOL/IMP/Abs_Int0.thy Tue May 14 06:54:31 2013 +0200 @@ -208,9 +208,9 @@ lemma mono_gamma_c: "C1 \ C2 \ \\<^isub>c C1 \ \\<^isub>c C2" by (induction C1 C2 rule: less_eq_acom.induct) (simp_all add:mono_gamma_o) -text{* Soundness: *} +text{* Correctness: *} -lemma aval'_sound: "s : \\<^isub>s S \ aval a s : \(aval' a S)" +lemma aval'_correct: "s : \\<^isub>s S \ aval a s : \(aval' a S)" by (induct a) (auto simp: gamma_num' gamma_plus' \_fun_def) lemma in_gamma_update: "\ s : \\<^isub>s S; i : \ a \ \ s(x := i) : \\<^isub>s(S(x := a))" @@ -225,9 +225,9 @@ lemma step_step': "step (\\<^isub>o S) (\\<^isub>c C) \ \\<^isub>c (step' S C)" unfolding step_def step'_def by(rule gamma_Step_subcomm) - (auto simp: aval'_sound in_gamma_update asem_def split: option.splits) + (auto simp: aval'_correct in_gamma_update asem_def split: option.splits) -lemma AI_sound: "AI c = Some C \ CS c \ \\<^isub>c C" +lemma AI_correct: "AI c = Some C \ CS c \ \\<^isub>c C" proof(simp add: CS_def AI_def) assume 1: "pfp (step' \) (bot c) = Some C" have pfp': "step' \ C \ C" by(rule pfp_pfp[OF 1]) diff -r e116eb9e5e17 -r 9c80e62161a5 src/HOL/IMP/Abs_Int1.thy --- a/src/HOL/IMP/Abs_Int1.thy Mon May 13 22:49:00 2013 +0200 +++ b/src/HOL/IMP/Abs_Int1.thy Tue May 14 06:54:31 2013 +0200 @@ -16,7 +16,7 @@ "aval' (V x) S = fun S x" | "aval' (Plus a1 a2) S = plus' (aval' a1 S) (aval' a2 S)" -lemma aval'_sound: "s : \\<^isub>s S \ aval a s : \(aval' a S)" +lemma aval'_correct: "s : \\<^isub>s S \ aval a s : \(aval' a S)" by (induction a) (auto simp: gamma_num' gamma_plus' \_st_def) lemma gamma_Step_subcomm: fixes C1 C2 :: "'a::semilattice_sup acom" @@ -48,14 +48,14 @@ by(simp add: step'_def) -text{* Soundness: *} +text{* Correctness: *} lemma step_step': "step (\\<^isub>o S) (\\<^isub>c C) \ \\<^isub>c (step' S C)" unfolding step_def step'_def by(rule gamma_Step_subcomm) - (auto simp: intro!: aval'_sound in_gamma_update split: option.splits) + (auto simp: intro!: aval'_correct in_gamma_update split: option.splits) -lemma AI_sound: "AI c = Some C \ CS c \ \\<^isub>c C" +lemma AI_correct: "AI c = Some C \ CS c \ \\<^isub>c C" proof(simp add: CS_def AI_def) assume 1: "pfp (step' \) (bot c) = Some C" have pfp': "step' \ C \ C" by(rule pfp_pfp[OF 1]) diff -r e116eb9e5e17 -r 9c80e62161a5 src/HOL/IMP/Abs_Int2.thy --- a/src/HOL/IMP/Abs_Int2.thy Mon May 13 22:49:00 2013 +0200 +++ b/src/HOL/IMP/Abs_Int2.thy Tue May 14 06:54:31 2013 +0200 @@ -48,12 +48,12 @@ locale Val_abs1 = Val_abs1_gamma where \ = \ for \ :: "'av::bounded_lattice \ val set" + fixes test_num' :: "val \ 'av \ bool" -and constrain_plus' :: "'av \ 'av \ 'av \ 'av * 'av" -and constrain_less' :: "bool \ 'av \ 'av \ 'av * 'av" +and inv_plus' :: "'av \ 'av \ 'av \ 'av * 'av" +and inv_less' :: "bool \ 'av \ 'av \ 'av * 'av" assumes test_num': "test_num' i a = (i : \ a)" -and constrain_plus': "constrain_plus' a a1 a2 = (a\<^isub>1',a\<^isub>2') \ +and inv_plus': "inv_plus' a a1 a2 = (a\<^isub>1',a\<^isub>2') \ i1 : \ a1 \ i2 : \ a2 \ i1+i2 : \ a \ i1 : \ a\<^isub>1' \ i2 : \ a\<^isub>2'" -and constrain_less': "constrain_less' (i11',a\<^isub>2') \ +and inv_less': "inv_less' (i11',a\<^isub>2') \ i1 : \ a1 \ i2 : \ a2 \ i1 : \ a\<^isub>1' \ i2 : \ a\<^isub>2'" @@ -69,19 +69,19 @@ "aval'' e None = \" | "aval'' e (Some S) = aval' e S" -lemma aval''_sound: "s : \\<^isub>o S \ aval a s : \(aval'' a S)" -by(cases S)(auto simp add: aval'_sound split: option.splits) +lemma aval''_correct: "s : \\<^isub>o S \ aval a s : \(aval'' a S)" +by(cases S)(auto simp add: aval'_correct split: option.splits) subsubsection "Backward analysis" -fun aconstrain :: "aexp \ 'av \ 'av st option \ 'av st option" where -"aconstrain (N n) a S = (if test_num' n a then S else None)" | -"aconstrain (V x) a S = (case S of None \ None | Some S \ +fun inv_aval'' :: "aexp \ 'av \ 'av st option \ 'av st option" where +"inv_aval'' (N n) a S = (if test_num' n a then S else None)" | +"inv_aval'' (V x) a S = (case S of None \ None | Some S \ let a' = fun S x \ a in if a' = \ then None else Some(update S x a'))" | -"aconstrain (Plus e1 e2) a S = - (let (a1,a2) = constrain_plus' a (aval'' e1 S) (aval'' e2 S) - in aconstrain e1 a1 (aconstrain e2 a2 S))" +"inv_aval'' (Plus e1 e2) a S = + (let (a1,a2) = inv_plus' a (aval'' e1 S) (aval'' e2 S) + in inv_aval'' e1 a1 (inv_aval'' e2 a2 S))" text{* The test for @{const bot} in the @{const V}-case is important: @{const bot} indicates that a variable has no possible values, i.e.\ that the current @@ -93,17 +93,17 @@ making the analysis less precise. *} -fun bconstrain :: "bexp \ bool \ 'av st option \ 'av st option" where -"bconstrain (Bc v) res S = (if v=res then S else None)" | -"bconstrain (Not b) res S = bconstrain b (\ res) S" | -"bconstrain (And b1 b2) res S = - (if res then bconstrain b1 True (bconstrain b2 True S) - else bconstrain b1 False S \ bconstrain b2 False S)" | -"bconstrain (Less e1 e2) res S = - (let (a1,a2) = constrain_less' res (aval'' e1 S) (aval'' e2 S) - in aconstrain e1 a1 (aconstrain e2 a2 S))" +fun inv_bval'' :: "bexp \ bool \ 'av st option \ 'av st option" where +"inv_bval'' (Bc v) res S = (if v=res then S else None)" | +"inv_bval'' (Not b) res S = inv_bval'' b (\ res) S" | +"inv_bval'' (And b1 b2) res S = + (if res then inv_bval'' b1 True (inv_bval'' b2 True S) + else inv_bval'' b1 False S \ inv_bval'' b2 False S)" | +"inv_bval'' (Less e1 e2) res S = + (let (a1,a2) = inv_less' res (aval'' e1 S) (aval'' e2 S) + in inv_aval'' e1 a1 (inv_aval'' e2 a2 S))" -lemma aconstrain_sound: "s : \\<^isub>o S \ aval e s : \ a \ s : \\<^isub>o (aconstrain e a S)" +lemma inv_aval''_correct: "s : \\<^isub>o S \ aval e s : \ a \ s : \\<^isub>o (inv_aval'' e a S)" proof(induction e arbitrary: a S) case N thus ?case by simp (metis test_num') next @@ -118,11 +118,11 @@ (metis mono_gamma emptyE in_gamma_inf gamma_bot subset_empty) next case (Plus e1 e2) thus ?case - using constrain_plus'[OF _ aval''_sound aval''_sound] + using inv_plus'[OF _ aval''_correct aval''_correct] by (auto split: prod.split) qed -lemma bconstrain_sound: "s : \\<^isub>o S \ bv = bval b s \ s : \\<^isub>o(bconstrain b bv S)" +lemma inv_bval''_correct: "s : \\<^isub>o S \ bv = bval b s \ s : \\<^isub>o(inv_bval'' b bv S)" proof(induction b arbitrary: S bv) case Bc thus ?case by simp next @@ -133,12 +133,12 @@ next case (Less e1 e2) thus ?case by(auto split: prod.split) - (metis (lifting) aconstrain_sound aval''_sound constrain_less') + (metis (lifting) inv_aval''_correct aval''_correct inv_less') qed definition "step' = Step (\x e S. case S of None \ None | Some S \ Some(update S x (aval' e S))) - (\b S. bconstrain b True S)" + (\b S. inv_bval'' b True S)" definition AI :: "com \ 'av st option acom option" where "AI c = pfp (step' \) (bot c)" @@ -146,25 +146,25 @@ lemma strip_step'[simp]: "strip(step' S c) = strip c" by(simp add: step'_def) -lemma top_on_aconstrain: "\ top_on_opt S X; vars e \ -X \ \ top_on_opt (aconstrain e a S) X" +lemma top_on_inv_aval'': "\ top_on_opt S X; vars e \ -X \ \ top_on_opt (inv_aval'' e a S) X" by(induction e arbitrary: a S) (auto simp: Let_def split: option.splits prod.split) -lemma top_on_bconstrain: "\top_on_opt S X; vars b \ -X\ \ top_on_opt (bconstrain b r S) X" -by(induction b arbitrary: r S) (auto simp: top_on_aconstrain top_on_sup split: prod.split) +lemma top_on_inv_bval'': "\top_on_opt S X; vars b \ -X\ \ top_on_opt (inv_bval'' b r S) X" +by(induction b arbitrary: r S) (auto simp: top_on_inv_aval'' top_on_sup split: prod.split) lemma top_on_step': "top_on_acom C (- vars C) \ top_on_acom (step' \ C) (- vars C)" unfolding step'_def by(rule top_on_Step) - (auto simp add: top_on_top top_on_bconstrain split: option.split) + (auto simp add: top_on_top top_on_inv_bval'' split: option.split) -subsubsection "Soundness" +subsubsection "Correctness" lemma step_step': "step (\\<^isub>o S) (\\<^isub>c C) \ \\<^isub>c (step' S C)" unfolding step_def step'_def by(rule gamma_Step_subcomm) - (auto simp: intro!: aval'_sound bconstrain_sound in_gamma_update split: option.splits) + (auto simp: intro!: aval'_correct inv_bval''_correct in_gamma_update split: option.splits) -lemma AI_sound: "AI c = Some C \ CS c \ \\<^isub>c C" +lemma AI_correct: "AI c = Some C \ CS c \ \\<^isub>c C" proof(simp add: CS_def AI_def) assume 1: "pfp (step' \) (bot c) = Some C" have pfp': "step' \ C \ C" by(rule pfp_pfp[OF 1]) @@ -186,10 +186,10 @@ locale Abs_Int1_mono = Abs_Int1 + assumes mono_plus': "a1 \ b1 \ a2 \ b2 \ plus' a1 a2 \ plus' b1 b2" -and mono_constrain_plus': "a1 \ b1 \ a2 \ b2 \ r \ r' \ - constrain_plus' r a1 a2 \ constrain_plus' r' b1 b2" -and mono_constrain_less': "a1 \ b1 \ a2 \ b2 \ - constrain_less' bv a1 a2 \ constrain_less' bv b1 b2" +and mono_inv_plus': "a1 \ b1 \ a2 \ b2 \ r \ r' \ + inv_plus' r a1 a2 \ inv_plus' r' b1 b2" +and mono_inv_less': "a1 \ b1 \ a2 \ b2 \ + inv_less' bv a1 a2 \ inv_less' bv b1 b2" begin lemma mono_aval': @@ -204,28 +204,28 @@ apply simp by (simp add: mono_aval') -lemma mono_aconstrain: "r1 \ r2 \ S1 \ S2 \ aconstrain e r1 S1 \ aconstrain e r2 S2" +lemma mono_inv_aval'': "r1 \ r2 \ S1 \ S2 \ inv_aval'' e r1 S1 \ inv_aval'' e r2 S2" apply(induction e arbitrary: r1 r2 S1 S2) apply(auto simp: test_num' Let_def inf_mono split: option.splits prod.splits) apply (metis mono_gamma subsetD) apply (metis le_bot inf_mono le_st_iff) apply (metis inf_mono mono_update le_st_iff) -apply(metis mono_aval'' mono_constrain_plus'[simplified less_eq_prod_def] fst_conv snd_conv) +apply(metis mono_aval'' mono_inv_plus'[simplified less_eq_prod_def] fst_conv snd_conv) done -lemma mono_bconstrain: "S1 \ S2 \ bconstrain b bv S1 \ bconstrain b bv S2" +lemma mono_inv_bval'': "S1 \ S2 \ inv_bval'' b bv S1 \ inv_bval'' b bv S2" apply(induction b arbitrary: bv S1 S2) apply(simp) apply(simp) apply simp apply(metis order_trans[OF _ sup_ge1] order_trans[OF _ sup_ge2]) apply (simp split: prod.splits) -apply(metis mono_aval'' mono_aconstrain mono_constrain_less'[simplified less_eq_prod_def] fst_conv snd_conv) +apply(metis mono_aval'' mono_inv_aval'' mono_inv_less'[simplified less_eq_prod_def] fst_conv snd_conv) done theorem mono_step': "S1 \ S2 \ C1 \ C2 \ step' S1 C1 \ step' S2 C2" unfolding step'_def -by(rule mono2_Step) (auto simp: mono_aval' mono_bconstrain split: option.split) +by(rule mono2_Step) (auto simp: mono_aval' mono_inv_bval'' split: option.split) lemma mono_step'_top: "C1 \ C2 \ step' \ C1 \ step' \ C2" by (metis mono_step' order_refl) diff -r e116eb9e5e17 -r 9c80e62161a5 src/HOL/IMP/Abs_Int2_ivl.thy --- a/src/HOL/IMP/Abs_Int2_ivl.thy Mon May 13 22:49:00 2013 +0200 +++ b/src/HOL/IMP/Abs_Int2_ivl.thy Tue May 14 06:54:31 2013 +0200 @@ -265,8 +265,8 @@ end -definition constrain_plus_ivl :: "ivl \ ivl \ ivl \ ivl*ivl" where -"constrain_plus_ivl iv iv1 iv2 = (iv1 \ (iv - iv2), iv2 \ (iv - iv1))" +definition inv_plus_ivl :: "ivl \ ivl \ ivl \ ivl*ivl" where +"inv_plus_ivl iv iv1 iv2 = (iv1 \ (iv - iv2), iv2 \ (iv - iv1))" definition above_rep :: "eint2 \ eint2" where "above_rep p = (if is_empty_rep p then empty_rep else let (l,h) = p in (l,\))" @@ -290,8 +290,8 @@ (auto simp add: below_rep_def \_rep_cases is_empty_rep_def split: extended.splits) -definition constrain_less_ivl :: "bool \ ivl \ ivl \ ivl * ivl" where -"constrain_less_ivl res iv1 iv2 = +definition inv_less_ivl :: "bool \ ivl \ ivl \ ivl * ivl" where +"inv_less_ivl res iv1 iv2 = (if res then (iv1 \ (below iv2 - [Fin 1,Fin 1]), iv2 \ (above iv1 + [Fin 1,Fin 1])) @@ -339,18 +339,18 @@ interpretation Val_abs1 where \ = \_ivl and num' = num_ivl and plus' = "op +" and test_num' = in_ivl -and constrain_plus' = constrain_plus_ivl and constrain_less' = constrain_less_ivl +and inv_plus' = inv_plus_ivl and inv_less' = inv_less_ivl proof case goal1 thus ?case by transfer (auto simp: \_rep_def) next case goal2 thus ?case - unfolding constrain_plus_ivl_def minus_ivl_def + unfolding inv_plus_ivl_def minus_ivl_def apply(clarsimp simp add: \_inf) using gamma_plus'[of "i1+i2" _ "-i1"] gamma_plus'[of "i1+i2" _ "-i2"] by(simp add: \_uminus) next case goal3 thus ?case - unfolding constrain_less_ivl_def minus_ivl_def + unfolding inv_less_ivl_def minus_ivl_def apply(clarsimp simp add: \_inf split: if_splits) using gamma_plus'[of "i1+1" _ "-1"] gamma_plus'[of "i2 - 1" _ "1"] apply(simp add: \_belowI[of i2] \_aboveI[of i1] @@ -362,9 +362,9 @@ interpretation Abs_Int1 where \ = \_ivl and num' = num_ivl and plus' = "op +" and test_num' = in_ivl -and constrain_plus' = constrain_plus_ivl and constrain_less' = constrain_less_ivl -defines aconstrain_ivl is aconstrain -and bconstrain_ivl is bconstrain +and inv_plus' = inv_plus_ivl and inv_less' = inv_less_ivl +defines inv_aval_ivl is inv_aval'' +and inv_bval_ivl is inv_bval'' and step_ivl is step' and AI_ivl is AI and aval_ivl' is aval'' @@ -396,16 +396,16 @@ interpretation Abs_Int1_mono where \ = \_ivl and num' = num_ivl and plus' = "op +" and test_num' = in_ivl -and constrain_plus' = constrain_plus_ivl and constrain_less' = constrain_less_ivl +and inv_plus' = inv_plus_ivl and inv_less' = inv_less_ivl proof case goal1 thus ?case by (rule mono_plus_ivl) next case goal2 thus ?case - unfolding constrain_plus_ivl_def minus_ivl_def less_eq_prod_def + unfolding inv_plus_ivl_def minus_ivl_def less_eq_prod_def by (auto simp: le_infI1 le_infI2 mono_plus_ivl mono_minus_ivl) next case goal3 thus ?case - unfolding less_eq_prod_def constrain_less_ivl_def minus_ivl_def + unfolding less_eq_prod_def inv_less_ivl_def minus_ivl_def by (auto simp: le_infI1 le_infI2 mono_plus_ivl mono_above mono_below) qed diff -r e116eb9e5e17 -r 9c80e62161a5 src/HOL/IMP/Abs_Int3.thy --- a/src/HOL/IMP/Abs_Int3.thy Mon May 13 22:49:00 2013 +0200 +++ b/src/HOL/IMP/Abs_Int3.thy Tue May 14 06:54:31 2013 +0200 @@ -254,7 +254,7 @@ definition AI_wn :: "com \ 'av st option acom option" where "AI_wn c = pfp_wn (step' \) (bot c)" -lemma AI_wn_sound: "AI_wn c = Some C \ CS c \ \\<^isub>c C" +lemma AI_wn_correct: "AI_wn c = Some C \ CS c \ \\<^isub>c C" proof(simp add: CS_def AI_wn_def) assume 1: "pfp_wn (step' \) (bot c) = Some C" have 2: "strip C = c \ step' \ C \ C" @@ -277,7 +277,7 @@ interpretation Abs_Int2 where \ = \_ivl and num' = num_ivl and plus' = "op +" and test_num' = in_ivl -and constrain_plus' = constrain_plus_ivl and constrain_less' = constrain_less_ivl +and inv_plus' = inv_plus_ivl and inv_less' = inv_less_ivl defines AI_wn_ivl is AI_wn .. @@ -557,7 +557,7 @@ interpretation Abs_Int2_measure where \ = \_ivl and num' = num_ivl and plus' = "op +" and test_num' = in_ivl -and constrain_plus' = constrain_plus_ivl and constrain_less' = constrain_less_ivl +and inv_plus' = inv_plus_ivl and inv_less' = inv_less_ivl and m = m_ivl and n = n_ivl and h = 3 proof case goal2 thus ?case by(rule m_ivl_anti_mono)