public abstract class Agent extends AgentAdapter
Modifier and Type | Field and Description |
---|---|
BilateralAtomicNegotiationSession |
fNegotiation
Reference to protocol which is set when experimental setup is enabled.
|
protected java.util.HashMap<AgentParameterVariable,AgentParamValue> |
parametervalues
Deprecated.
|
int |
sessionNr
A session can be repeated multiple times.
|
int |
sessionsTotal
Amount of repetitions of this session, how many times this session is
repeated in total.
|
java.util.Date |
startTime
Deprecated.
Use timeline instead.
|
protected StrategyParameters |
strategyParameters
Parameters given to the agent which may be specified in the agent
repository.
|
TimeLineInfo |
timeline
Use timeline for everything time-related.
|
java.lang.Integer |
totalTime
Deprecated.
Use timeline instead.
|
AbstractUtilitySpace |
utilitySpace
Preference profile of the agent as assigned by the tournamentrunner.
|
Constructor and Description |
---|
Agent()
Empty constructor used to initialize the agent.
|
Modifier and Type | Method and Description |
---|---|
abstract Action |
chooseAction()
this function is called after ReceiveMessage, with an Offer-action.
|
void |
endSession(NegotiationResult dUtil)
Method which informs an agent about the utility it received.
|
boolean |
equals(java.lang.Object obj) |
Agent |
getAgent() |
AgentID |
getAgentID() |
java.lang.String |
getName() |
java.util.HashMap<AgentParameterVariable,AgentParamValue> |
getParameterValues()
Deprecated.
|
int |
getSessionNumber() |
int |
getSessionsTotal() |
StrategyParameters |
getStrategyParameters() |
SupportedNegotiationSetting |
getSupportedNegotiationSetting()
Indicates what negotiation settings are supported by an agent, such as
linear or non-linear utility spaces.
|
protected java.lang.String |
getUniqueIdentifier() |
double |
getUtility(Bid bid)
A convenience method to get the discounted utility of a bid.
|
java.lang.String |
getVersion() |
int |
hashCode()
WARNING hashCode and equals are incomplete because we ignore
AgentAdapter BilateralAtomicNegotiationSession
StrategyParameters TimeLineInfo
AbstractUtilitySpace because they did not implement
equals/hashcode. |
void |
init()
This method is called by the protocol every time before starting a new
session after the internalInit method is called.
|
void |
internalInit(int sessionNr,
int sessionsTotal,
java.util.Date startTimeP,
java.lang.Integer totalTimeP,
TimeLineInfo timeline,
AbstractUtilitySpace us,
java.util.HashMap<AgentParameterVariable,AgentParamValue> params,
AgentID id)
This method is called by the protocol to initialize the agent with a new
session information.
|
protected java.io.Serializable |
loadSessionData()
Loads the
Serializable data for the agent. |
void |
parseStrategyParameters(java.lang.String variables)
Used to parse parameters presented in the agent repository.
|
void |
ReceiveMessage(Action opponentAction)
informs you which action the opponent did
|
protected boolean |
saveSessionData(java.io.Serializable dataToSave)
Saves information (dataToSave) about the current session for future
loading by the agent, when negotiating again with the specific preference
profile referred by "filename".
|
void |
setName(java.lang.String pName)
Sets the name of the agent to the given name.
|
void |
sleep(double fraction)
Let the agent wait in case of a time-based protocol.
|
chooseAction, getDescription, getProtocol, init, negotiationEnded, receiveMessage
public AbstractUtilitySpace utilitySpace
@Deprecated public java.util.Date startTime
@Deprecated public java.lang.Integer totalTime
public TimeLineInfo timeline
public int sessionNr
public int sessionsTotal
public BilateralAtomicNegotiationSession fNegotiation
@Deprecated protected java.util.HashMap<AgentParameterVariable,AgentParamValue> parametervalues
protected StrategyParameters strategyParameters
public Agent()
public java.lang.String getVersion()
public void init()
public final void internalInit(int sessionNr, int sessionsTotal, java.util.Date startTimeP, java.lang.Integer totalTimeP, TimeLineInfo timeline, AbstractUtilitySpace us, java.util.HashMap<AgentParameterVariable,AgentParamValue> params, AgentID id)
startTimeP
- totalTimeP
- timeline
- keeping track of the time in the negotiation.us
- utility space of the agent for the session.params
- parameters of the agent.public void ReceiveMessage(Action opponentAction)
opponentAction
- public abstract Action chooseAction()
public java.lang.String getName()
@Deprecated public java.util.HashMap<AgentParameterVariable,AgentParamValue> getParameterValues()
public final void setName(java.lang.String pName)
pName
- to which the agent's name must be set.public double getUtility(Bid bid)
timeline
.bid
- of which we are interested in the utility.AdditiveUtilitySpace
public void sleep(double fraction)
Timeline
).fraction
- should be between 0 and 1.public void endSession(NegotiationResult dUtil)
dUtil
- discounted utility of previous session round.public AgentID getAgentID()
public StrategyParameters getStrategyParameters()
public SupportedNegotiationSetting getSupportedNegotiationSetting()
public void parseStrategyParameters(java.lang.String variables) throws java.lang.Exception
variables
- java.lang.Exception
public int getSessionNumber()
public int getSessionsTotal()
protected final boolean saveSessionData(java.io.Serializable dataToSave)
Serializable
interface. This is to make sure the data can be saved. 2) If the function
is used more than once regarding the same preference profile, it will
override the data saved from last session with the new Object
"dataToSave".dataToSave
- the data regarding the last session that "agent" wants to
save.protected java.lang.String getUniqueIdentifier()
protected final java.io.Serializable loadSessionData()
Serializable
data for the agent. If the function
"saveSessionData" wasn't used for this type of agent with the current
preference profile of the agent - the data will be null. Otherwise, it
will load the saved data of the agent for this specific preference
profile.Serializable
data if the load is successful, null
otherwise.public Agent getAgent()
getAgent
in class AgentAdapter
public int hashCode()
AgentAdapter
BilateralAtomicNegotiationSession
StrategyParameters
TimeLineInfo
AbstractUtilitySpace
because they did not implement
equals/hashcode.hashCode
in class java.lang.Object
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object