1 | from abc import ABC
|
---|
2 | from typing import Optional
|
---|
3 |
|
---|
4 | from pyson.JsonSubTypes import JsonSubTypes
|
---|
5 | from pyson.JsonTypeInfo import Id, As
|
---|
6 | from pyson.JsonTypeInfo import JsonTypeInfo
|
---|
7 |
|
---|
8 | from geniusweb.issuevalue.Bid import Bid
|
---|
9 | from geniusweb.issuevalue.Domain import Domain
|
---|
10 |
|
---|
11 |
|
---|
12 | @JsonTypeInfo(use=Id.NAME, include=As.WRAPPER_OBJECT)
|
---|
13 | @JsonSubTypes(["geniusweb.profile.utilityspace.LinearAdditiveUtilitySpace.LinearAdditiveUtilitySpace"])
|
---|
14 | class Profile(ABC):
|
---|
15 | '''
|
---|
16 | Profile is a very general object describing how much a {@link Bid} is
|
---|
17 | preferred. "is preferred" can be worked out in different ways, eg by a
|
---|
18 | function "isBetter" that says if bid1 is preferred over bid2, or by assigning
|
---|
19 | utility values to each bid that says how much I like that particular bid. All
|
---|
20 | profiles should be implemented immutable
|
---|
21 | '''
|
---|
22 |
|
---|
23 | def getName(self)->str:
|
---|
24 | '''
|
---|
25 | @return the name of this profile. Must be simple name (a-Z, 0-9)
|
---|
26 | '''
|
---|
27 |
|
---|
28 | def getDomain(self)->Domain :
|
---|
29 | '''
|
---|
30 | @return the domain in which this profile is defined.
|
---|
31 | '''
|
---|
32 |
|
---|
33 | def getReservationBid(self) -> Optional[Bid] :
|
---|
34 | '''
|
---|
35 | @return a (hypothetical) bid that is the best alternative to a
|
---|
36 | non-agreement. Only bids that are equal or better should be
|
---|
37 | accepted. If a negotiation does not reach an agreement, the party
|
---|
38 | can get this offer somewhere else. This replaces the older notion
|
---|
39 | of a "reservation value" and is more general. If None, there is
|
---|
40 | no reservation bid and any agreement is better than no agreement.
|
---|
41 | This bid can be partial.
|
---|
42 | '''
|
---|
43 |
|
---|