-
Notifications
You must be signed in to change notification settings - Fork 10
Discount Factor & Reservation Value
Taha Doğan Güneş edited this page Oct 24, 2017
·
2 revisions
-
Discount Factor (
double
in range [0,1]): Discount factor of the given preference profile. -
Reservation Value (
double
in range [0,1]): The reservation value is the least favourable point at which one will accept a negotiated agreement.
To get the discount factor and reservation value of your preference profile (which is assigned by the negotiation settings):
/**
* This is your negotiation party.
*/
public class Groupn extends AbstractNegotiationParty {
private Bid lastReceivedBid = null;
@Override
public void init(NegotiationInfo info) {
super.init(info);
System.out.println("Discount Factor is " + info.getUtilitySpace().getDiscountFactor());
System.out.println("Reservation Value is " + info.getUtilitySpace().getReservationValueUndiscounted());
}
...
Please create an issue, if you find any errors or you want a topic covered in this wiki.
- Java Programming Cheatsheet
- Setting Up Genius Environment
- Stacked Alternating Offers Protocol
- AbstractNegotationParty Methods
- How to generate a random bid?
- How to generate a random bid with a utility threshold?
- How to change the content of a bid?
- How to keep track of time in a negotiation session?
- How to get the maximum and minimum bid?
- How to iterate all bids in a domain?
- How to access weights of each issue?
- How to access the evaluation of a value?