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
In OptionMonadTransSpec, the proof of lift_bind:
OptionMonadTransSpec
lift_bind
Lemma lift_bind : forall {M : Type -> Type} `{Monad M} {A B : Type} (m : M A) (f : A -> M B), lift (m >>= f) = @bind (M ∘ option) (TMonad M) _ _ (lift m) (lift ∘ f).
becomes intractable after a few steps. The Goal seems to be true, but maybe more monad properties are needed in the type class in order to prove it.
Goal
The text was updated successfully, but these errors were encountered:
rudynicolop
No branches or pull requests
In
OptionMonadTransSpec
, the proof oflift_bind
:becomes intractable after a few steps. The
Goal
seems to be true, but maybe more monad properties are needed in the type class in order to prove it.The text was updated successfully, but these errors were encountered: