Changes between Version 180 and Version 181 of WikiStart


Ignore:
Timestamp:
05/14/19 11:37:07 (5 years ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v180 v181  
    5656A profile is a function that can tell if a bid is preferred over another bid.
    5757There are a number of ways to do this:
    58  * FullyOrderedSpace: this provides a function isPreferredOrEqual() that can tell if a bid is preferred over another
    59  * PartiallyOrderedSpace: as FullyOrderedSpace, but may not know the answer for part of the bids
    60  * UtilitySpace: as FullyOrderedSpace, but additionally this provides a function getUtility(bid) that maps the bid into a real in [0,1]. The higher the value, the more preferred is that bid.
     58 * {{{FullyOrderedSpace}}}: this provides a function {{{isPreferredOrEqual()}}} that can tell if a bid is preferred over another
     59 * {{{PartiallyOrderedSpace}}}: as {{{FullyOrderedSpace}}}, but may not know the answer for part of the bids
     60 * {{{UtilitySpace}}}: as {{{FullyOrderedSpace}}}, but additionally this provides a function getUtility(bid) that maps the bid into a real in [0,1]. The higher the value, the more preferred is that bid.
    6161
    6262== Party