public abstract class BOAagent extends Agent
Modifier and Type | Field and Description |
---|---|
protected AcceptanceStrategy |
acceptConditions
Decides when to accept
|
protected NegotiationSession |
negotiationSession
Links to the negotiation domain
|
protected OfferingStrategy |
offeringStrategy
Decides what to offer
|
protected OMStrategy |
omStrategy
Selects which bid to send when using an opponent model
|
protected OpponentModel |
opponentModel
Approximates the utility of a bid for the opponent
|
protected OutcomeSpace |
outcomeSpace
Contains the space of possible bids
|
java.util.ArrayList<Pair<Bid,java.lang.String>> |
savedOutcomes
Store
Multi_AcceptanceCondition outcomes |
fNegotiation, parametervalues, sessionNr, sessionsTotal, startTime, strategyParameters, timeline, totalTime, utilitySpace
Constructor and Description |
---|
BOAagent() |
Modifier and Type | Method and Description |
---|---|
abstract void |
agentSetup()
Method used to setup the agent.
|
Action |
chooseAction()
Chooses an action to perform.
|
void |
cleanUp()
Clears the agent's variables.
|
void |
endSession(NegotiationResult result)
Method that first calls the endSession method of each component to
receiveMessage the session data and then stores the session data if it is
not empty and is changed.
|
AcceptanceStrategy |
getAcceptanceStrategy()
Returns the acceptance strategy of the agent.
|
abstract java.lang.String |
getName() |
OfferingStrategy |
getOfferingStrategy()
Returns the offering strategy of the agent.
|
OpponentModel |
getOpponentModel()
Returns the opponent model of the agent.
|
protected java.lang.String |
getUniqueIdentifier()
Unique identifier for the BOA agent.
|
java.lang.String |
getVersion() |
void |
init()
Initializes the agent and creates a new negotiation session object.
|
void |
ReceiveMessage(Action opponentAction)
Stores the actions made by a partner.
|
void |
setDecoupledComponents(AcceptanceStrategy ac,
OfferingStrategy os,
OpponentModel om,
OMStrategy oms)
Sets the components of the decoupled agent.
|
equals, getAgent, getAgentID, getParameterValues, getSessionNumber, getSessionsTotal, getStrategyParameters, getSupportedNegotiationSetting, getUtility, hashCode, internalInit, loadSessionData, parseStrategyParameters, saveSessionData, setName, sleep
chooseAction, getDescription, getProtocol, init, negotiationEnded, receiveMessage
protected AcceptanceStrategy acceptConditions
protected OfferingStrategy offeringStrategy
protected OpponentModel opponentModel
protected NegotiationSession negotiationSession
protected OMStrategy omStrategy
public java.util.ArrayList<Pair<Bid,java.lang.String>> savedOutcomes
Multi_AcceptanceCondition
outcomesprotected OutcomeSpace outcomeSpace
public void init()
public abstract void agentSetup()
public void setDecoupledComponents(AcceptanceStrategy ac, OfferingStrategy os, OpponentModel om, OMStrategy oms)
ac
- the acceptance strategyos
- the offering strategyom
- the opponent modeloms
- the opponent model strategyprotected java.lang.String getUniqueIdentifier()
getUniqueIdentifier
in class Agent
public java.lang.String getVersion()
getVersion
in class Agent
public abstract java.lang.String getName()
public void ReceiveMessage(Action opponentAction)
ReceiveMessage
in class Agent
opponentAction
- by opponent in current turnpublic Action chooseAction()
chooseAction
in class Agent
public OfferingStrategy getOfferingStrategy()
public OpponentModel getOpponentModel()
public AcceptanceStrategy getAcceptanceStrategy()
public void endSession(NegotiationResult result)
endSession
in class Agent
result
- discounted utility of previous session round.public void cleanUp()