public abstract class AbstractUtilitySpace extends java.lang.Object implements UtilitySpace
UtilitySpace
but does not
implement the details. Adds the discountFactor as a mechanism to implement
discount. A filename is remembered. Also adds default functionality to
support implementation of concrete utility spaces.
In the future this class may have to be split in more parts.Modifier and Type | Field and Description |
---|---|
static java.lang.String |
DISCOUNT_FACTOR |
protected java.lang.String |
fileName |
static java.lang.String |
RESERVATION |
Constructor and Description |
---|
AbstractUtilitySpace(Domain dom)
sets domain and tries to load the file into XML root.
|
Modifier and Type | Method and Description |
---|---|
void |
checkReadyForNegotiation(Domain dom)
Check if this utility space is ready for negotiation.
|
java.lang.Double |
discount(double util,
double time)
Specific implementation for discount, based on a discount factor.
|
double |
getDiscountFactor() |
Domain |
getDomain() |
java.lang.String |
getFileName() |
Bid |
getMaxUtilityBid()
Returns the maximum bid in the utility space.
|
Bid |
getMinUtilityBid()
Returns the worst bid in the utility space.
|
java.lang.String |
getName() |
java.lang.Double |
getReservationValue()
The reservation value is the least favourable point at which one will
accept a negotiated agreement.
|
double |
getReservationValueUndiscounted()
Equivalent to
getReservationValue() , but always returns a double
value. |
double |
getReservationValueWithDiscount(double time)
The discounted version of
getReservationValue() . |
double |
getReservationValueWithDiscount(TimeLineInfo timeline)
The discounted version of
getReservationValue() . |
double |
getUtilityWithDiscount(Bid bid,
double time)
|
double |
getUtilityWithDiscount(Bid bid,
TimeLineInfo timeline)
Let d in (0, 1) be the discount factor.
|
boolean |
isDiscounted() |
void |
setDiscount(double newDiscount) |
void |
setReservationValue(double newRV) |
protected double |
validateDiscount(double df) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
copy, getUtility, isComplete, toXML
public static final java.lang.String DISCOUNT_FACTOR
public static final java.lang.String RESERVATION
protected java.lang.String fileName
public Domain getDomain()
getDomain
in interface UtilitySpace
public void setReservationValue(double newRV)
newRV
- new reservation value.public void setDiscount(double newDiscount)
newDiscount
- new discount factor.public java.lang.Double getReservationValue()
This is value remains constant during the negotiation. However, by
default, the reservation value descreases with time. To obtain the
discounted version of the reservation value, use
getReservationValueWithDiscount(TimeLineInfo)
.
getReservationValue
in interface UtilitySpace
public double getReservationValueUndiscounted()
getReservationValue()
, but always returns a double
value. When the original reservation value is null it returns the
default value 0.getReservationValue()
public double getReservationValueWithDiscount(double time)
getReservationValue()
.time
- at which we want to know the utility of the reservation value.public double getReservationValueWithDiscount(TimeLineInfo timeline)
getReservationValue()
.timeline
- specifying the current time in the negotiation.public boolean isDiscounted()
public final double getDiscountFactor()
public java.lang.String getFileName()
public double getUtilityWithDiscount(Bid bid, TimeLineInfo timeline)
Timeline
. We compute the discounted utility
discountedUtility as follows:
discountedUtility = originalUtility * d^t.
For t = 0 the utility remains unchanged, and for t = 1 the original
utility is multiplied by the discount factor. The effect is almost linear
in between. Works with any utility space.bid
- of which we are interested in its utility.timeline
- indicating the time passed in the negotiation.public double getUtilityWithDiscount(Bid bid, double time)
bid
- of which we want to know the utility at the given time.time
- at which we want to know the utility of the bid.public java.lang.Double discount(double util, double time)
discount
in interface UtilitySpace
util
- the undiscounted utility as coming from
UtilitySpace.getUtility(Bid)
.time
- a real number in the range [0,1] where 0 is the start of the
negotiation and 1 the end. See also TimeLineInfo
.protected double validateDiscount(double df)
public final Bid getMaxUtilityBid() throws java.lang.Exception
java.lang.Exception
- if there is no bid at all in this util space.public Bid getMinUtilityBid() throws java.lang.Exception
java.lang.Exception
- if there is no bid at all in the util spacepublic void checkReadyForNegotiation(Domain dom) throws java.lang.Exception
dom
- is the domain in which nego is taking placejava.lang.Exception
- if utility space is incomplete (@see isComplete())public java.lang.String getName()
getName
in interface UtilitySpace