Skip to content

Commit

Permalink
Use "try" instead of "or idtac"
Browse files Browse the repository at this point in the history
  • Loading branch information
Ailrun committed May 6, 2024
1 parent ae57eb3 commit 62b06f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion theories/Core/Semantic/Realize.v
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Lemma realize_per_univ_elem_gen : forall i a a' R,
{{ Dom a ≈ a' ∈ per_top_typ }}
/\ (forall {c c'}, {{ Dom c ≈ c' ∈ per_bot }} -> {{ Dom ⇑ a c ≈ ⇑ a' c' ∈ R }})
/\ (forall {b b'}, {{ Dom b ≈ b' ∈ R }} -> {{ Dom ⇓ a b ≈ ⇓ a' b' ∈ per_top }}).
Proof with (solve [(((eexists; split) || idtac; econstructor) || idtac); mauto]).
Proof with (solve [try (try (eexists; split); econstructor); mauto]).
intros * H; simpl in H.
induction H using per_univ_elem_ind; repeat split; intros.
- subst; intro s...
Expand Down

0 comments on commit 62b06f3

Please sign in to comment.