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
if we consider h1 and h2, two hint functions.
h1 produces wire w1, h2 --> w2.
Now, if h2 takes as input w1, and w1 didn't appear in a constraint preceding the one solving w2, then the solver needs to solve h1 first when encountering h2, which is not currently the case.
add simple test case to reproduce the issue
restore panics in solver when a wire is unsolved (with debug tags only)
figure out how to deal with recursive hint solving (either when building dependencies in parallel levels, or at a later stage in the solver)
The text was updated successfully, but these errors were encountered:
if we consider h1 and h2, two hint functions.
h1 produces wire w1, h2 --> w2.
Now, if h2 takes as input w1, and w1 didn't appear in a constraint preceding the one solving w2, then the solver needs to solve h1 first when encountering h2, which is not currently the case.
The text was updated successfully, but these errors were encountered: