Package | Description |
---|---|
genius.core | |
genius.core.bidding | |
genius.core.boaframework | |
genius.core.representative | |
genius.core.uncertainty | |
genius.core.uncertainty.flattening |
Modifier and Type | Method and Description |
---|---|
BidDetails |
BidHistory.getBestBidDetails()
Returns the bid with the highest utility stored in the history.
|
BidDetails |
BidHistory.getBestDiscountedBidDetails(AbstractUtilitySpace util)
Returns the bid with the highest discounted utility stored in the
history.
|
BidDetails |
BidHistory.getFirstBidDetails()
Returns the first bid stored in the history
|
BidDetails |
BidHistory.getLastBidDetails()
Returns the last bid details added to the history.
|
BidDetails |
BidHistory.getMedianUtilityBid() |
BidDetails |
BidHistory.getRandom() |
BidDetails |
BidHistory.getRandom(java.util.Random rand) |
BidDetails |
BidHistory.getWorstBidDetails()
Returns the bid with the lowest utility stored in the history.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<BidDetails> |
BidHistory.getHistory()
Returns the full history.
|
java.util.List<BidDetails> |
BidHistory.getNBestBids(int count)
Returns a list of the top N bids which the opponent has offered.
|
Modifier and Type | Method and Description |
---|---|
void |
BidHistory.add(BidDetails bid)
Add an offered bid o the history.
|
Constructor and Description |
---|
BidHistory(java.util.List<BidDetails> bids)
Creates a bid history given an array of bids offered by the negotiation
agent.
|
Modifier and Type | Method and Description |
---|---|
int |
BidDetailsStrictSorterUtility.compare(BidDetails b1,
BidDetails b2)
Comperator.
|
int |
BidDetailsSorterUtility.compare(BidDetails b1,
BidDetails b2)
Comperator.
|
int |
BidDetailsSorterTime.compare(BidDetails b1,
BidDetails b2)
Comperator.
|
int |
BidDetails.compareTo(BidDetails other)
A comparator for BidDetails which order the bids in
reverse natural order of utility.
|
Modifier and Type | Field and Description |
---|---|
protected BidDetails |
OfferingStrategy.nextBid
The next bid the agent plans to present
|
Modifier and Type | Field and Description |
---|---|
protected java.util.List<BidDetails> |
OutcomeSpace.allBids
List of all possible bids in the domain
|
Modifier and Type | Method and Description |
---|---|
abstract BidDetails |
OfferingStrategy.determineNextBid()
Determines the next bid the agent will offer to the opponent
|
abstract BidDetails |
OfferingStrategy.determineOpeningBid()
Determines the first bid to be offered by the agent
|
abstract BidDetails |
OMStrategy.getBid(java.util.List<BidDetails> bidsInRange)
Returns a bid selected using the opponent model from the given set of
similarly preferred bids.
|
BidDetails |
OMStrategy.getBid(OutcomeSpace space,
Range range)
Returns a bid selected using the opponent model with a utility in the
given range.
|
BidDetails |
OMStrategy.getBid(SortedOutcomeSpace space,
double targetUtility)
Use this method in case no range is specified, but only a target utility.
|
BidDetails |
SortedOutcomeSpace.getBidNearUtility(double utility)
Gets a BidDetails which is close to the utility
|
BidDetails |
OutcomeSpace.getBidNearUtility(double utility)
gets a BidDetails which is closest to the given utility
|
BidDetails |
NegotiationSession.getMaxBidinDomain()
Returns the best bid in the domain.
|
BidDetails |
SortedOutcomeSpace.getMaxBidPossible() |
BidDetails |
OutcomeSpace.getMaxBidPossible() |
BidDetails |
NegotiationSession.getMinBidinDomain()
Returns the worst bid in the domain.
|
BidDetails |
SortedOutcomeSpace.getMinBidPossible() |
BidDetails |
OutcomeSpace.getMinBidPossible() |
BidDetails |
OfferingStrategy.getNextBid() |
Modifier and Type | Method and Description |
---|---|
java.util.List<BidDetails> |
OutcomeSpace.getAllOutcomes() |
java.util.List<BidDetails> |
SortedOutcomeSpace.getBidsinRange(Range r)
gets a list of BidDetails that have a utility within the range
|
java.util.List<BidDetails> |
OutcomeSpace.getBidsinRange(Range range)
Returns a list of bids (from possibleBids) that have a utility within the
given range.
|
Modifier and Type | Method and Description |
---|---|
void |
OfferingStrategy.setNextBid(BidDetails nextBid)
Set the next bid of the agent.
|
Modifier and Type | Method and Description |
---|---|
abstract BidDetails |
OMStrategy.getBid(java.util.List<BidDetails> bidsInRange)
Returns a bid selected using the opponent model from the given set of
similarly preferred bids.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<java.util.List<BidDetails>> |
UncertainUtilitySpace.getBidsInRangeByUtilitySpace(Range range)
Returns a list of the size of the number of utility spaces each element of which is a list
of the bids in the range we want
|
Constructor and Description |
---|
OutcomeComparison(BidDetails bid1,
BidDetails bid2) |
OutcomeComparison(BidDetails bid1,
BidDetails bid2,
int comparisonResult) |
Modifier and Type | Method and Description |
---|---|
java.util.List<java.util.List<BidDetails>> |
FlattenedUtilitySpace.getBidsInRangeByUtilitySpace(Range range)
Returns a list of the size of the number of utility spaces each element of which is a list
of the bids in the range we want
|