public abstract class AcceptanceStrategy extends BOA
Modifier and Type | Field and Description |
---|---|
protected SharedAgentState |
helper
Reference to the helper-object, which is used when there is overlap
between the acceptance condition and offering strategy.
|
protected OfferingStrategy |
offeringStrategy
Reference to the offering strategy.
|
protected OpponentModel |
opponentModel
Reference to opponnent model of agent.
|
negotiationSession
Constructor and Description |
---|
AcceptanceStrategy() |
Modifier and Type | Method and Description |
---|---|
abstract Actions |
determineAcceptability()
Determines to either to either accept or reject the opponent's bid or
even quit the negotiation.
|
void |
init(NegotiationSession negotiationSession,
OfferingStrategy offeringStrategy,
OpponentModel opponentModel,
java.util.Map<java.lang.String,java.lang.Double> parameters)
Standard initialize method to be called after using the empty
constructor.
|
boolean |
isMAC()
Method which states if the current acceptance strategy is the
Multi-Acceptance Strategy.
|
java.io.Serializable |
loadData()
Method used to load the saved object, possibly created in a previous
negotiation session.
|
java.lang.String |
printParameters() |
void |
setOpponentUtilitySpace(BilateralAtomicNegotiationSession fNegotiation)
Method which may be overwritten to get access to the opponent's
utilityspace in an experimental setup.
|
void |
storeData(java.io.Serializable object)
Method used to store data that should be accessible in the next
negotiation session on the same scenario.
|
endSession, getName, getParameters, getParameterSpec, init
protected OfferingStrategy offeringStrategy
protected SharedAgentState helper
protected OpponentModel opponentModel
public void init(NegotiationSession negotiationSession, OfferingStrategy offeringStrategy, OpponentModel opponentModel, java.util.Map<java.lang.String,java.lang.Double> parameters) throws java.lang.Exception
negotiationSession
- state of the negotiation.offeringStrategy
- of the agent.parameters
- of the acceptance strategy.java.lang.Exception
- thrown when initializing the acceptance strategy fails.public java.lang.String printParameters()
public void setOpponentUtilitySpace(BilateralAtomicNegotiationSession fNegotiation)
fNegotiation
- reference to negotiation setting.public abstract Actions determineAcceptability()
public final void storeData(java.io.Serializable object)
BOA
public final java.io.Serializable loadData()
BOA
public boolean isMAC()