You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
287 B

package plonky2_verifier
const UNUSED_SELECTOR = ^uint64(0) // max uint
type Range struct {
start uint64
end uint64
}
type SelectorsInfo struct {
selectorIndices []uint64
groups []Range
}
func (s *SelectorsInfo) NumSelectors() uint64 {
return uint64(len(s.groups))
}