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
I notice that in circuits.gl/mux1.circom, the output of MultiMux1(n) is like this:
out[i] <== (c[1][i] - c[0][i])*s + c[0][i];
It seemed like a non-deterministic circuit, when "s=0" or "c[1][i] - c[0][i]=0", the other factor can be any value.
I'm not pretty sure, does that sound like a real problem for the team?
The text was updated successfully, but these errors were encountered:
I notice that in
circuits.gl/mux1.circom
, the output ofMultiMux1(n)
is like this:out[i] <== (c[1][i] - c[0][i])*s + c[0][i];
It seemed like a non-deterministic circuit, when "s=0" or "c[1][i] - c[0][i]=0", the other factor can be any value.
I'm not pretty sure, does that sound like a real problem for the team?
The text was updated successfully, but these errors were encountered: