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

feat: stronger proof strategy for partial inhabitation #5847

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Commits on Oct 26, 2024

  1. feat: stronger proof strategy for partial inhabitation

    Now `partial` will try to extract more inhabitants of types by trying to find inhabitants of arguments' arguments.
    
    For example, in a callback like
    ```lean
    partial def withCallback (k : Array Nat → IO α) : IO α := ...
    ```
    it can see that `Array Nat` is inhabited, so with `k` it gets an inhabitant of `IO α`.
    kmill committed Oct 26, 2024
    Configuration menu
    Copy the full SHA
    9be0817 View commit details
    Browse the repository at this point in the history
  2. forall first

    kmill committed Oct 26, 2024
    Configuration menu
    Copy the full SHA
    5636e4a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    34333be View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2024

  1. Configuration menu
    Copy the full SHA
    18902f9 View commit details
    Browse the repository at this point in the history