public abstract class AbstractNegotiationParty extends java.lang.Object implements NegotiationParty
NegotiationParty
interface. This basic
implementation sets up some common variables for you.Modifier and Type | Field and Description |
---|---|
protected java.util.Random |
rand
Random seed used by this party.
|
protected TimeLineInfo |
timeline
Time line used by the party if time deadline is set.
|
protected PairwiseComparisonUserModel |
userModel |
protected AbstractUtilitySpace |
utilitySpace
utility space used by this party (set in constructor).
|
Constructor and Description |
---|
AbstractNegotiationParty() |
Modifier and Type | Method and Description |
---|---|
protected Bid |
generateRandomBid()
Generates a random bid which will be generated using this.utilitySpace.
|
PersistentDataContainer |
getData() |
Deadline |
getDeadlines() |
Action |
getLastReceivedAction() |
int |
getNumberOfParties() |
AgentID |
getPartyId() |
java.lang.Class<? extends MultilateralProtocol> |
getProtocol()
Get the protocol that this party supports.
|
protected Value |
getRandomValue(Issue currentIssue)
Gets a random value for the given issue.
|
TimeLineInfo |
getTimeLine()
Gets this agent's time line.
|
double |
getUtility(Bid bid)
Gets the utility for the given bid.
|
AbstractUtilitySpace |
getUtilitySpace()
Gets this agent's utility space.
|
double |
getUtilityWithDiscount(Bid bid)
Gets the time discounted utility for the given bid.
|
void |
init(NegotiationInfo info)
Initializes the party, informing it of many negotiation details.
|
java.util.HashMap<java.lang.String,java.lang.String> |
negotiationEnded(Bid acceptedBid)
This is called to inform the agent that the negotiation has been ended.
|
void |
receiveMessage(AgentID sender,
Action act)
This method is called to inform the party that another
NegotiationParty chose an Action . |
java.lang.String |
toString()
Returns a human readable string representation of this party.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
chooseAction, getDescription
protected TimeLineInfo timeline
protected java.util.Random rand
protected AbstractUtilitySpace utilitySpace
protected PairwiseComparisonUserModel userModel
public void init(NegotiationInfo info)
NegotiationParty
init
in interface NegotiationParty
info
- information about the negotiation that this party is part of.protected Bid generateRandomBid()
protected Value getRandomValue(Issue currentIssue) throws java.lang.Exception
currentIssue
- The issue to generate a random value forjava.lang.Exception
- if the issues type is not Discrete, Real or Integer.public double getUtility(Bid bid)
bid
- The bid to get the utility forpublic double getUtilityWithDiscount(Bid bid)
bid
- The bid to get the utility forpublic final AbstractUtilitySpace getUtilitySpace()
public TimeLineInfo getTimeLine()
public java.lang.String toString()
toString
in class java.lang.Object
public void receiveMessage(AgentID sender, Action act)
NegotiationParty
NegotiationParty
chose an Action
.receiveMessage
in interface NegotiationParty
sender
- The initiator of the action.This is either the AgentID, or
null if the sender is not an agent (e.g., the protocol).act
- The action performedpublic Action getLastReceivedAction()
Action
or null if nothing received yet.public int getNumberOfParties()
public final AgentID getPartyId()
public java.lang.Class<? extends MultilateralProtocol> getProtocol()
NegotiationParty
getProtocol
in interface NegotiationParty
MultilateralProtocol
, usually
StackedAlternatingOffersProtocol
.public java.util.HashMap<java.lang.String,java.lang.String> negotiationEnded(Bid acceptedBid)
NegotiationParty
negotiationEnded
in interface NegotiationParty
acceptedBid
- the final accepted bid, or null if no agreement was reached.Map
containing data to log for this agent. null is equal
to returning an empty HashMap. Typically, this info will be
logged by XmlWriteStream.write(String, java.util.Map)
to
an XML file.public PersistentDataContainer getData()
public Deadline getDeadlines()