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 avoids needing to track witnesses other than the ones which can potentially be optimized out in future. This means that even in the case where a million opcodes reference a single witness then we can represent this with the memory equivalent of 2 usizes.
The text was updated successfully, but these errors were encountered:
In merge_expression.rs, we currently track all of the opcodes which reference a particular witness index in a
As we don't need to track these sets past 2 opcodes referencing a witness, this would be more efficient if we were to instead use
This avoids needing to track witnesses other than the ones which can potentially be optimized out in future. This means that even in the case where a million opcodes reference a single witness then we can represent this with the memory equivalent of 2
usize
s.The text was updated successfully, but these errors were encountered: