Searched defs:adversaryTestingData (Results 1 – 1 of 1) sorted by relevance
536 type adversaryTestingData struct { struct537 t *testing.T538 data []int // item values, initialized to special gas value and changed by Less539 maxcmp int // number of comparisons allowed540 ncmp int // number of comparisons (calls to Less)541 nsolid int // number of elements that have been set to non-gas values542 candidate int // guess at current pivot543 gas int // special value for unset elements, higher than everything else546 func (d *adversaryTestingData) Len() int { return len(d.data) }548 func (d *adversaryTestingData) Less(i, j int) bool {[all …]