Package | Description |
---|---|
genius.core.events | |
genius.core.logging | |
genius.core.parties | |
genius.core.protocol | |
genius.core.session |
Modifier and Type | Method and Description |
---|---|
Session |
SessionEndedNormallyEvent.getSession() |
Session |
RecoverableSessionErrorEvent.getSession() |
Session |
BrokenPartyException.getSession() |
Constructor and Description |
---|
BrokenPartyException(java.lang.String mes,
SessionConfiguration configuration,
Session session,
java.lang.Throwable cause) |
RecoverableSessionErrorEvent(Session session,
NegotiationPartyInternal party,
java.lang.Exception e) |
SessionEndedNormallyEvent(Session session,
Bid agreement,
java.util.List<NegotiationPartyInternal> parties) |
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
CsvLogger.getDefaultSessionLog(Session session,
MultilateralProtocol protocol,
java.util.List<NegotiationPartyInternal> partiesint,
double runTime)
Log default session information.
|
static java.lang.String |
CsvLogger.logSingleSession(Session session,
MultilateralProtocol protocol,
java.util.List<NegotiationPartyInternal> partiesint,
double runTime) |
Modifier and Type | Method and Description |
---|---|
Session |
NegotiationPartyInternal.getSession()
Get the session that this party is using.
|
Constructor and Description |
---|
NegotiationPartyInternal(ParticipantRepItem partyRepItem,
ProfileRepItem profileRepItem,
Session session,
SessionsInfo info,
AgentID agentID,
UncertainPreferenceContainer uncertainModel)
Creates a new
NegotiationParty from repository items and
initializes it. |
Modifier and Type | Method and Description |
---|---|
void |
MultilateralProtocol.afterSession(Session session,
java.util.List<NegotiationParty> parties)
This will get called just after ending the session.
|
void |
DefaultMultilateralProtocol.afterSession(Session session,
java.util.List<NegotiationParty> parties) |
void |
MultilateralProtocol.applyAction(Action action,
Session session)
Apply the action according to the protocol.
|
void |
DefaultMultilateralProtocol.applyAction(Action action,
Session session) |
java.util.Map<NegotiationParty,java.util.List<Action>> |
StackedAlternatingOffersProtocol.beforeSession(Session session,
java.util.List<NegotiationParty> parties) |
java.util.Map<NegotiationParty,java.util.List<Action>> |
MultilateralProtocol.beforeSession(Session session,
java.util.List<NegotiationParty> parties)
Returns a list of Actions to be sent to
NegotiationParty.receiveMessage(AgentID, Action) . |
java.util.Map<NegotiationParty,java.util.List<Action>> |
DefaultMultilateralProtocol.beforeSession(Session session,
java.util.List<NegotiationParty> parties) |
Bid |
StackedAlternatingOffersProtocol.getCurrentAgreement(Session session,
java.util.List<NegotiationParty> parties)
Will return the current agreement.
|
Bid |
SimpleMediatorBasedProtocol.getCurrentAgreement(Session session,
java.util.List<NegotiationParty> parties)
Returns the last offer for voting as the current agreement.
|
Bid |
MultilateralProtocol.getCurrentAgreement(Session session,
java.util.List<NegotiationParty> parties)
This method should return the current agreement.
|
Bid |
MediatorFeedbackBasedProtocol.getCurrentAgreement(Session session,
java.util.List<NegotiationParty> parties)
Returns the last offer that got accepted.
|
Bid |
DefaultMultilateralProtocol.getCurrentAgreement(Session session,
java.util.List<NegotiationParty> parties)
This method should return the current agreement.
|
Bid |
AlternatingMultipleOffersProtocol.getCurrentAgreement(Session session,
java.util.List<NegotiationParty> parties)
Gets the current agreement if any.
|
int |
StackedAlternatingOffersProtocol.getNumberOfAgreeingParties(Session session,
java.util.List<NegotiationParty> parties) |
int |
MultilateralProtocol.getNumberOfAgreeingParties(Session session,
java.util.List<NegotiationParty> parties)
Gets the number of parties that currently agree to the offer.
|
int |
DefaultMultilateralProtocol.getNumberOfAgreeingParties(Session session,
java.util.List<NegotiationParty> parties)
Gets the number of parties that currently agree to the offer.
|
int |
AlternatingMultipleOffersProtocol.getNumberOfAgreeingParties(Session session,
java.util.List<NegotiationParty> parties)
Gets the maximum number of vote this protocol found.
|
Round |
StackedAlternatingOffersProtocol.getRoundStructure(java.util.List<NegotiationParty> parties,
Session session)
Defines the round structure.
|
Round |
SimpleMediatorBasedProtocol.getRoundStructure(java.util.List<NegotiationParty> parties,
Session session) |
Round |
MultilateralProtocol.getRoundStructure(java.util.List<NegotiationParty> parties,
Session session)
Get the structure of the current round.
|
Round |
MediatorFeedbackBasedProtocol.getRoundStructure(java.util.List<NegotiationParty> parties,
Session session) |
Round |
DefaultMultilateralProtocol.getRoundStructure(java.util.List<NegotiationParty> parties,
Session session) |
Round |
AlternatingMultipleOffersProtocol.getRoundStructure(java.util.List<NegotiationParty> parties,
Session session)
Get the round structure used by this algorithm.
|
boolean |
StackedAlternatingOffersProtocol.isFinished(Session session,
java.util.List<NegotiationParty> parties)
If all agents accept the most recent offer, then this negotiation ends.
|
boolean |
MultilateralProtocol.isFinished(Session session,
java.util.List<NegotiationParty> parties)
Check if the protocol is done or still busy.
|
boolean |
DefaultMultilateralProtocol.isFinished(Session session,
java.util.List<NegotiationParty> parties) |
boolean |
AlternatingMultipleOffersProtocol.isFinished(Session session,
java.util.List<NegotiationParty> parties) |
boolean |
AlternatingMajorityConsensusProtocol.isFinished(Session session,
java.util.List<NegotiationParty> parties) |
protected boolean |
AlternatingMultipleOffersProtocol.isVotingRound(Session session)
Returns whether this is a voting round.
|
Modifier and Type | Method and Description |
---|---|
static java.util.List<NegotiationPartyInternal> |
TournamentManager.getPartyList(ExecutorWithTimeout executor,
MultilateralSessionConfiguration config,
SessionsInfo info,
Session session)
Generate the parties involved in the next round of the tournament
generator.
|
Constructor and Description |
---|
SessionManager(SessionConfiguration config,
java.util.List<NegotiationPartyInternal> theparties,
Session session,
ExecutorWithTimeout exec)
Initializes a new instance of the
SessionManager object. |