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
{{ message }}
This repository has been archived by the owner on Apr 7, 2021. It is now read-only.
reorder.c:1629
if (!bdd_reorder_ready)
return;
Here bdd_reorder_ready() is a function so bdd_reorder_ready is a function address which is trivially true. I believe the code should be:
if (!(bdd_reorder_ready()))
return;
The text was updated successfully, but these errors were encountered: