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
This is hindered by the fact that the else_conditions for if-else instructions in Noir's SSA are constructed on the fly so that they're very unlikely to share a valueid with a different value in the circuit. When we make this more reliable we can enable this optimization.
The text was updated successfully, but these errors were encountered:
In #6875 we added an optimisation such that we'd flatten the below nested if statement such that it became the simple if-statement below.
In theory we could perform a similar simplification for the case below:
This is hindered by the fact that the
else_condition
s for if-else instructions in Noir's SSA are constructed on the fly so that they're very unlikely to share a valueid with a different value in the circuit. When we make this more reliable we can enable this optimization.The text was updated successfully, but these errors were encountered: