You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TC.Pending_mode "+".
Class A (i: nat -> nat -> nat).
GlobalHintMode A + : typeclass_instances.
Axiom (f : nat -> nat -> nat).
Instance instA: A f := {}.
Class B (i: nat).
Instance instB : forall R, A R -> forall x y, B (R x y) := {}.
Goal B (f 2 3).
apply _.
Qed.
The problem:
R x y is a potential beta producing the link $X =_\beta R\ x\ y$
This link is not triggered, when $X$ is assigned to f 2 3 since we still hope someone "correctily" instantiate $R$
$R$ is still flexible and the recursive call $A\ R` is made
The first arg of $A$ should be not flexible
Here the failure...
The text was updated successfully, but these errors were encountered:
The problem:
R x y
is a potential beta producing the linkf 2 3
since we still hope someone "correctily" instantiateThe text was updated successfully, but these errors were encountered: