Skip to content

Commit

Permalink
Fix usage of fresh_cases theorem
Browse files Browse the repository at this point in the history
  • Loading branch information
jvanbruegge committed Nov 21, 2024
1 parent 2f9551b commit a479bcd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion thys/Infinitary_Lambda_Calculus/ILC.thy
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ lemma iLam_avoid: "|A::ivar set| <o |UNIV::ivar set| \<Longrightarrow> \<exists>
apply (rule trans)
apply (rule sym)
apply assumption
apply (rotate_tac 2)
apply (rotate_tac 3)
apply assumption
apply (drule iffD1[OF disjoint_iff])
by auto
Expand Down
2 changes: 1 addition & 1 deletion thys/Pi_Calculus/Commitment.thy
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ local_setup \<open>MRBNF_Sugar.register_binder_sugar "Commitment.commit" {
SOME @{term "\<lambda>x P. bns x"}
]],
bset_bounds = @{thms bns_bound},
strong_induct = @{thm refl},
strong_induct = NONE,
mrbnf = the (MRBNF_Def.mrbnf_of @{context} "Commitment.commit_pre"),
set_simpss = [],
subst_simps = NONE
Expand Down
2 changes: 1 addition & 1 deletion thys/Pi_Calculus/Pi.thy
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ lemma Abs_avoid: "|A::var set| <o |UNIV::var set| \<Longrightarrow> \<exists>x'
apply (rule trans)
apply (rule sym)
apply assumption
apply (rotate_tac 2)
apply (rotate_tac 3)
apply assumption
apply (drule iffD1[OF disjoint_iff])
apply (erule allE)
Expand Down
2 changes: 1 addition & 1 deletion thys/STLC/STLC.thy
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ lemma Abs_avoid: "|A::'a::var_terms_pre set| <o |UNIV::'a set| \<Longrightarrow>
apply (rule trans)
apply (rule sym)
apply assumption
apply (rotate_tac 2)
apply (rotate_tac 3)
apply assumption
apply (drule iffD1[OF disjoint_iff])
apply (erule allE)
Expand Down
2 changes: 1 addition & 1 deletion thys/Untyped_Lambda_Calculus/LC.thy
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ lemma Lam_avoid: "|A::var set| <o |UNIV::var set| \<Longrightarrow> \<exists>x'
apply (rule trans)
apply (rule sym)
apply assumption
apply (rotate_tac 2)
apply (rotate_tac 3)
apply assumption
apply (drule iffD1[OF disjoint_iff])
apply (erule allE)
Expand Down

0 comments on commit a479bcd

Please sign in to comment.