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
GHC's idUnfolding function checks to see if the function is a loop breaker and does not return an unfolding if so. HERMIT doesn't want this. It turns out there is a realIdUnfolding function which bypasses the check.
Codemod any instances of idUnfolding and ensure it doesn't cause any infinite loops.
The text was updated successfully, but these errors were encountered:
GHC's
idUnfolding
function checks to see if the function is a loop breaker and does not return an unfolding if so. HERMIT doesn't want this. It turns out there is arealIdUnfolding
function which bypasses the check.Codemod any instances of
idUnfolding
and ensure it doesn't cause any infinite loops.The text was updated successfully, but these errors were encountered: