source: src/main/java/bargainingchips/outcomes/Outcome.java@ 330

Last change on this file since 330 was 327, checked in by Tim Baarslag, 5 years ago

Outcome defined

File size: 452 bytes
Line 
1package bargainingchips.outcomes;
2
3import bargainingchips.Bundle;
4import bargainingchips.actions.Offer;
5import bargainingchips.actions.OfferType;
6/**
7 * An outcome is the final result of a negotiation.
8 * It is an {@link Offer} for convenience, so that Agents can easily pass it around.
9 * The offer type is always END.
10 */
11public class Outcome extends Offer
12{
13 public Outcome(Bundle outcome)
14 {
15 super(outcome, OfferType.END);
16 }
17}
Note: See TracBrowser for help on using the repository browser.