public class MultilateralAnalysis
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static int |
ENUMERATION_CUTOFF
Maximum number of bids to analyse
|
Constructor and Description |
---|
MultilateralAnalysis(java.util.List<? extends PartyWithUtility> parties,
Bid agreedBid,
java.lang.Double endTime) |
Modifier and Type | Method and Description |
---|---|
Bid |
getAgreement() |
double |
getDistanceToNash() |
double |
getDistanceToPareto() |
BidPoint |
getKalaiPoint() |
BidPoint |
getNashPoint() |
java.util.List<BidPoint> |
getParetoFrontier()
Returns the Pareto frontier.
|
java.util.List<Bid> |
getParetoFrontierBids()
Method which returns a list of the Pareto efficient bids.
|
static java.util.ArrayList<double[][]> |
getPartyBidSeries(java.util.ArrayList<java.util.ArrayList<java.lang.Double[]>> partyUtilityHistoryList) |
double |
getSocialWelfare() |
java.util.List<UtilitySpace> |
getUtilitySpaces() |
public static final int ENUMERATION_CUTOFF
public MultilateralAnalysis(java.util.List<? extends PartyWithUtility> parties, Bid agreedBid, java.lang.Double endTime)
parties
- agreedBid
- agreement, or null if there is no agreement.endTime
- the time in range [0,1] at which the negotiation ended where 0
is the start and 1 the deadline time/round. If null,
undiscounted utilities will be used.public static java.util.ArrayList<double[][]> getPartyBidSeries(java.util.ArrayList<java.util.ArrayList<java.lang.Double[]>> partyUtilityHistoryList)
public java.util.List<UtilitySpace> getUtilitySpaces()
public java.util.List<BidPoint> getParetoFrontier()
public java.util.List<Bid> getParetoFrontierBids()
public double getSocialWelfare()
public double getDistanceToNash()
public double getDistanceToPareto()
Double.POSITIVE_INFINITY
if there is no pareto frontier.public BidPoint getNashPoint()
public BidPoint getKalaiPoint()
public Bid getAgreement()