We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
simp_all は再帰的に単純化を繰り返している気がするので、再帰的でないといけない例をつくればよさそう…?
example (n : Nat) (P : Nat → Prop) (h1 : P (n + 0)) : P (n + 0 + 0) := by simp at * -- まだゴールが残っている show P n assumption example (n : Nat) (P : Nat → Prop) (h1 : P (n + 0)) : P (n + 0 + 0) := by simp_all
The text was updated successfully, but these errors were encountered:
4339c20
Seasawher
No branches or pull requests
simp_all は再帰的に単純化を繰り返している気がするので、再帰的でないといけない例をつくればよさそう…?
The text was updated successfully, but these errors were encountered: