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
Seems like somewhere in the backend it is assumed that all multi-dimensional slices have consistent lengths. i.e. If there is a witness variable Slice [][]frontend.Variable of length at least 2, it is assumed that len(Slice[0]) == len(Slice[1]).
One of the test routines provided to check this, TestInconsistentSliceLengthProving, fails the marshal/json subtest with panic: runtime error: index out of range [3] with length 3.
Code provided here.
Seems like somewhere in the backend it is assumed that all multi-dimensional slices have consistent lengths. i.e. If there is a witness variable
Slice [][]frontend.Variable
of length at least 2, it is assumed thatlen(Slice[0]) == len(Slice[1])
.One of the test routines provided to check this,
TestInconsistentSliceLengthProving
, fails themarshal/json
subtest withpanic: runtime error: index out of range [3] with length 3
.The text was updated successfully, but these errors were encountered: