Skip to content
New issue

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

Fix default value for hash_collision in EVMState #17

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Commits on Oct 29, 2024

  1. Fix default value for hash_collision in EVMState

    `false` is a `Bool`. The intended default value.
    `False` is the `Prop` representing a contradiction, not the intended default value of `hash_collision`, but since `False` is a decidable proposition, Lean automatically treats this as `decide False` which is a `Bool`.
    Although we can actually prove `false = False` in Lean, using `false` directly is preferable.
    Coda-Coda committed Oct 29, 2024
    Configuration menu
    Copy the full SHA
    885e094 View commit details
    Browse the repository at this point in the history