1 | package geniusweb.bidspace.pareto;
|
---|
2 |
|
---|
3 | import java.util.ArrayList;
|
---|
4 | import java.util.Collections;
|
---|
5 | import java.util.HashSet;
|
---|
6 | import java.util.List;
|
---|
7 | import java.util.Set;
|
---|
8 | import java.util.stream.Collectors;
|
---|
9 |
|
---|
10 | import geniusweb.bidspace.AllBidsList;
|
---|
11 | import geniusweb.issuevalue.Bid;
|
---|
12 | import geniusweb.issuevalue.Domain;
|
---|
13 | import geniusweb.profile.PartialOrdering;
|
---|
14 | import geniusweb.profile.Profile;
|
---|
15 |
|
---|
16 | /**
|
---|
17 | * A set of all pareto points associated with a set of profiles. Generally
|
---|
18 | * applicable but slow. It is recommended to use {@link ParetoLinearAdditive} if
|
---|
19 | * applicable.
|
---|
20 | */
|
---|
21 | public class GenericPareto implements ParetoFrontier {
|
---|
22 |
|
---|
23 | private final List<? extends PartialOrdering> profiles;
|
---|
24 | private transient Set<Bid> paretobids = null; // cache
|
---|
25 |
|
---|
26 | /**
|
---|
27 | * Constructs pareto from a general {@link PartialOrdering}. This is a
|
---|
28 | * brute-force algorithm that will inspect (but not store) ALL bids in the
|
---|
29 | * space, and therefore may be inapproproate depending on the size of your
|
---|
30 | * domain. Complexity O( |bidspace|^2 |profiles| )
|
---|
31 | *
|
---|
32 | * @param profiles a set of at least 2 {@link PartialOrdering}s. All must be
|
---|
33 | * defined on the same domain.
|
---|
34 | */
|
---|
35 | public GenericPareto(List<? extends PartialOrdering> profiles) {
|
---|
36 | if (profiles.size() < 2) {
|
---|
37 | throw new IllegalArgumentException(
|
---|
38 | "at least 2 profiles are needed");
|
---|
39 | }
|
---|
40 | if (profiles.contains(null)) {
|
---|
41 | throw new IllegalArgumentException("Profiles must not be null");
|
---|
42 | }
|
---|
43 | Domain domain = profiles.get(0).getDomain();
|
---|
44 | for (PartialOrdering profile : profiles) {
|
---|
45 | if (!domain.equals(profile.getDomain())) {
|
---|
46 | throw new IllegalArgumentException(
|
---|
47 | "All profiles must be on same domain ("
|
---|
48 | + domain.getName() + ") but found " + profile);
|
---|
49 | }
|
---|
50 | }
|
---|
51 | this.profiles = new ArrayList<>(profiles);
|
---|
52 | }
|
---|
53 |
|
---|
54 | @Override
|
---|
55 | public List<Profile> getProfiles() {
|
---|
56 | return Collections.unmodifiableList(profiles);
|
---|
57 | }
|
---|
58 |
|
---|
59 | @Override
|
---|
60 | public synchronized Set<Bid> getPoints() {
|
---|
61 | if (paretobids == null)
|
---|
62 | computePareto();
|
---|
63 | return Collections.unmodifiableSet(paretobids);
|
---|
64 | }
|
---|
65 |
|
---|
66 | @Override
|
---|
67 | public String toString() {
|
---|
68 | return "Pareto " + getPoints();
|
---|
69 | }
|
---|
70 |
|
---|
71 | /**
|
---|
72 | * assigns {@link #paretobids}.
|
---|
73 | */
|
---|
74 | private void computePareto() {
|
---|
75 | paretobids = new HashSet<Bid>();
|
---|
76 |
|
---|
77 | for (Bid newbid : new AllBidsList(profiles.get(0).getDomain())) {
|
---|
78 | /*
|
---|
79 | * invariant: paretobids contains bids not dominated by other bids
|
---|
80 | * in paretobids. That means we need (1) check if new bid is
|
---|
81 | * dominated (2) if existing bids are dominated if we add a new bid
|
---|
82 | */
|
---|
83 | //#PY newBidIsDominated=any( self.__isDominatedBy(newbid, paretobid) for paretobid in paretobids )
|
---|
84 | boolean newBidIsDominated = paretobids.stream()
|
---|
85 | .anyMatch(paretobid -> isDominatedBy(newbid, paretobid));
|
---|
86 |
|
---|
87 | // if new bid is not dominated, we add it and we re-check existing
|
---|
88 | // if they are now dominated
|
---|
89 | if (!newBidIsDominated) {
|
---|
90 | //#PY paretobids = { paretobid for paretobid in paretobids if not isDominatedBy(paretobid, newbid) }
|
---|
91 | paretobids = paretobids.stream()
|
---|
92 | .filter(paretobid -> !isDominatedBy(paretobid, newbid))
|
---|
93 | .collect(Collectors.toSet());
|
---|
94 | paretobids.add(newbid);
|
---|
95 | }
|
---|
96 | }
|
---|
97 | }
|
---|
98 |
|
---|
99 | /**
|
---|
100 | *
|
---|
101 | * @param bid1 the bid to check
|
---|
102 | * @param dominantbid the bid that is supposed to dominate bid1
|
---|
103 | * @return true iff bid1 is dominated by dominant bid. "Dominated by" means
|
---|
104 | * that the bid is preferred or equal in all profiles.
|
---|
105 | */
|
---|
106 | private boolean isDominatedBy(Bid bid1, Bid dominantbid) {
|
---|
107 | //#PY return all( [ profile.isPreferredOrEqual(dominantbid, bid1) for profile in self.__profiles ] )
|
---|
108 | return profiles.stream().allMatch(
|
---|
109 | profile -> profile.isPreferredOrEqual(dominantbid, bid1));
|
---|
110 | }
|
---|
111 | }
|
---|