Skip to content

Commit

Permalink
fix new sorries in Bml
Browse files Browse the repository at this point in the history
  • Loading branch information
m4lvin committed Dec 18, 2023
1 parent 6109d61 commit b849714
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions Bml/Tableauexamples.lean
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,12 @@ example : ClosedTableau {r⋀~(□p), r↣□(p⋀q)} :=
· -- right branch
-- not:
apply LocalTableau.byLocalRule (@LocalRule.Not _ r _) emptyTableau
sorry -- was: aesop
subst h1
subst branch_def
simp
right
by_contra hyp
contradiction
· --left branch
have h2 : b = branch \ {~(r⋀~(□(p⋀q)))} ∪ {~~(□(p⋀q))} := by tauto
-- neg:
Expand Down Expand Up @@ -141,7 +146,11 @@ example : ClosedTableau {r⋀~(□p), r↣□(p⋀q)} :=
constructor <;> intro hyp
aesop
simp (config := {decide := true}) at *
sorry
rcases hyp with hyp|(hyp|hyp)
all_goals (subst hyp ; simp at *)
right
by_contra
contradiction
subst Yis
exact subTabForEx2

0 comments on commit b849714

Please sign in to comment.