Line | |
---|
1 | package geniusweb.bidspace.pareto;
|
---|
2 |
|
---|
3 | import java.util.List;
|
---|
4 | import java.util.Set;
|
---|
5 |
|
---|
6 | import org.eclipse.jdt.annotation.NonNull;
|
---|
7 |
|
---|
8 | import geniusweb.issuevalue.Bid;
|
---|
9 | import geniusweb.profile.Profile;
|
---|
10 |
|
---|
11 | /**
|
---|
12 | * The pareto frontier is the set of {@link Bid}s for which there is no other
|
---|
13 | * bid that is similar or better for the involved profiles.
|
---|
14 | *
|
---|
15 | */
|
---|
16 | public interface ParetoFrontier {
|
---|
17 |
|
---|
18 | @NonNull
|
---|
19 | /**
|
---|
20 | *
|
---|
21 | * @return the profiles that form the basis of this pareto frontier.
|
---|
22 | */
|
---|
23 | List<@NonNull Profile> getProfiles();
|
---|
24 |
|
---|
25 | @NonNull
|
---|
26 | /**
|
---|
27 | * @return the set of all {@link Bid}s that are on the pareto frontier.
|
---|
28 | */
|
---|
29 | Set<@NonNull Bid> getPoints();
|
---|
30 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.