299 | | * The "bids" field contains a list of the bids that are relevant for this partial profile. Each bid contains (possibly partial) bids in the bid space. |
300 | | * The "better" field contains a list of tuples of numbers. Presence of a tuple (A,B) in this list indicates that bids[A] >= bids[B] where bids[X] means the Xth element in the bids list, 0 being the first element. |
| 299 | * The "better" field contains a {{{Map<Bid,List<Bid>>}}}. If bid A is a key in this map and bid B is an element in the list of values for key A, then A is better than B. |
| 300 | Notice that the key is encoded as String because JSON requires this. The string contains a Bid serialized as json. |