Changeset 4 for exampleparties


Ignore:
Timestamp:
09/18/19 10:00:22 (5 years ago)
Author:
bart
Message:

Faster example parties

Location:
exampleparties
Files:
8 added
8 edited

Legend:

Unmodified
Added
Removed
  • exampleparties/boulware/pom.xml

    r2 r4  
    7474                                        <target>1.8</target>
    7575                                </configuration>
     76                        </plugin>
     77                        <plugin>
     78                                <groupId>org.apache.maven.plugins</groupId>
     79                                <artifactId>maven-source-plugin</artifactId>
     80                                <executions>
     81                                        <execution>
     82                                                <id>attach-sources</id>
     83                                                <goals>
     84                                                        <goal>jar</goal>
     85                                                </goals>
     86                                        </execution>
     87                                </executions>
    7688                        </plugin>
    7789
  • exampleparties/conceder/pom.xml

    r2 r4  
    7474                                        <target>1.8</target>
    7575                                </configuration>
     76                        </plugin>
     77                        <plugin>
     78                                <groupId>org.apache.maven.plugins</groupId>
     79                                <artifactId>maven-source-plugin</artifactId>
     80                                <executions>
     81                                        <execution>
     82                                                <id>attach-sources</id>
     83                                                <goals>
     84                                                        <goal>jar</goal>
     85                                                </goals>
     86                                        </execution>
     87                                </executions>
    7688                        </plugin>
    7789
  • exampleparties/hardliner/pom.xml

    r2 r4  
    7474                                        <target>1.8</target>
    7575                                </configuration>
     76                        </plugin>
     77                        <plugin>
     78                                <groupId>org.apache.maven.plugins</groupId>
     79                                <artifactId>maven-source-plugin</artifactId>
     80                                <executions>
     81                                        <execution>
     82                                                <id>attach-sources</id>
     83                                                <goals>
     84                                                        <goal>jar</goal>
     85                                                </goals>
     86                                        </execution>
     87                                </executions>
    7688                        </plugin>
    7789
  • exampleparties/linear/pom.xml

    r2 r4  
    7474                                        <target>1.8</target>
    7575                                </configuration>
     76                        </plugin>
     77                        <plugin>
     78                                <groupId>org.apache.maven.plugins</groupId>
     79                                <artifactId>maven-source-plugin</artifactId>
     80                                <executions>
     81                                        <execution>
     82                                                <id>attach-sources</id>
     83                                                <goals>
     84                                                        <goal>jar</goal>
     85                                                </goals>
     86                                        </execution>
     87                                </executions>
    7688                        </plugin>
    7789
  • exampleparties/randomparty/pom.xml

    r2 r4  
    156156                                        <target>1.8</target>
    157157                                </configuration>
     158                        </plugin>
     159                        <plugin>
     160                                <groupId>org.apache.maven.plugins</groupId>
     161                                <artifactId>maven-source-plugin</artifactId>
     162                                <executions>
     163                                        <execution>
     164                                                <id>attach-sources</id>
     165                                                <goals>
     166                                                        <goal>jar</goal>
     167                                                </goals>
     168                                        </execution>
     169                                </executions>
    158170                        </plugin>
    159171
  • exampleparties/randompartypy/pom.xml

    r2 r4  
    147147                                        <target>1.8</target>
    148148                                </configuration>
     149                        </plugin>
     150                        <plugin>
     151                                <groupId>org.apache.maven.plugins</groupId>
     152                                <artifactId>maven-source-plugin</artifactId>
     153                                <executions>
     154                                        <execution>
     155                                                <id>attach-sources</id>
     156                                                <goals>
     157                                                        <goal>jar</goal>
     158                                                </goals>
     159                                        </execution>
     160                                </executions>
    149161                        </plugin>
    150162
  • exampleparties/timedependentparty/pom.xml

    r2 r4  
    158158                        </plugin>
    159159
     160                        <plugin>
     161                                <groupId>org.apache.maven.plugins</groupId>
     162                                <artifactId>maven-source-plugin</artifactId>
     163                                <executions>
     164                                        <execution>
     165                                                <id>attach-sources</id>
     166                                                <goals>
     167                                                        <goal>jar</goal>
     168                                                </goals>
     169                                        </execution>
     170                                </executions>
     171                        </plugin>
    160172
    161173                        <plugin>
  • exampleparties/timedependentparty/src/main/java/geniusweb/exampleparties/timedependentparty/TimeDependentParty.java

    r3 r4  
    33import java.io.IOException;
    44import java.math.BigDecimal;
     5import java.math.BigInteger;
    56import java.net.URI;
    67import java.net.URISyntaxException;
     
    1415import geniusweb.actions.Offer;
    1516import geniusweb.actions.PartyId;
    16 import geniusweb.bidspace.AllBidsList;
    17 import geniusweb.bidspace.BidsWithUtility;
    1817import geniusweb.issuevalue.Bid;
    1918import geniusweb.party.Capabilities;
     
    2423import geniusweb.party.inform.Settings;
    2524import geniusweb.party.inform.YourTurn;
     25import geniusweb.profile.Profile;
    2626import geniusweb.profile.utilityspace.LinearAdditiveUtilitySpace;
    27 import geniusweb.profile.utilityspace.UtilitySpace;
    2827import geniusweb.profileconnection.ProfileConnectionFactory;
    2928import geniusweb.profileconnection.ProfileInterface;
     
    3130import geniusweb.progress.ProgressRounds;
    3231import geniusweb.references.ProtocolRef;
     32import tudelft.utilities.immutablelist.ImmutableList;
    3333import tudelft.utilities.logging.Reporter;
    3434
     
    4141public abstract class TimeDependentParty extends DefaultParty {
    4242
     43        private static final BigDecimal DEC0001 = new BigDecimal("0.0001");
     44        private static final BigDecimal DEC100 = new BigDecimal("100");
    4345        private ProfileInterface profileint;
     46        private LinearAdditiveUtilitySpace utilspace = null; // last received space
    4447        private PartyId me;
    4548        private Progress progress;
    46         private Double minUtil = null, maxUtil = null;
    4749        private Bid lastReceivedBid = null;
    48         private double tolerance;
     50        private ExtendedUtilSpace extendedspace;
    4951
    5052        public TimeDependentParty() {
     
    7779                                this.me = settings.getID();
    7880                                this.progress = settings.getProgress();
    79                                 computeMinMax();
    8081                        } else if (info instanceof ActionDone) {
    8182                                Action otheract = ((ActionDone) info).getAction();
     
    117118
    118119        private void myTurn() throws IOException {
    119                 Action myAction = null;
     120                updateUtilSpace();
    120121                Bid bid = makeBid();
    121                 UtilitySpace utilspace = getUtilSpace();
    122122
    123                 if (lastReceivedBid != null && utilspace.getUtility(lastReceivedBid)
    124                                 .compareTo(utilspace.getUtility(bid)) >= 0) {
     123                Action myAction;
     124                if (bid == null || lastReceivedBid != null
     125                                && utilspace.getUtility(lastReceivedBid)
     126                                                .compareTo(utilspace.getUtility(bid)) >= 0) {
     127                        // if bid==null we failed to suggest next bid.
    125128                        myAction = new Accept(me, lastReceivedBid);
    126129                } else {
    127                         myAction = new Offer(me, makeBid());
     130                        myAction = new Offer(me, bid);
    128131                }
    129132                getConnection().send(myAction);
     
    131134        }
    132135
    133         private UtilitySpace getUtilSpace() {
    134                 return (LinearAdditiveUtilitySpace) profileint.getProfile();
     136        private LinearAdditiveUtilitySpace updateUtilSpace() {
     137                Profile newutilspace = profileint.getProfile();
     138                if (!newutilspace.equals(utilspace)) {
     139                        utilspace = (LinearAdditiveUtilitySpace) newutilspace;
     140                        extendedspace = new ExtendedUtilSpace(utilspace);
     141                }
     142                return utilspace;
    135143        }
    136144
    137145        /**
    138          * Computes the fields minutil and maxUtil if not yet computed. minutil is
    139          * the minimum utility of any bid, but at least the utility of the
    140          * reservation bid. maxUtil is the maximum util of any bid.
    141          * <p>
    142          * TODO this is simplistic, very expensive method and may cause us to run
    143          * out of time on large domains.
    144          * <p>
    145          * Can be called only after profileint has been set.
     146         * @return next possible bid with current target utility, or null if no such
     147         *         bid.
    146148         */
    147         private void computeMinMax() {
    148                 if (this.maxUtil != null && this.minUtil != null)
    149                         return;
    150                 this.minUtil = 1d;
    151                 this.maxUtil = 0d;
    152                 UtilitySpace utilspace = getUtilSpace();
    153                 AllBidsList allbidslist = new AllBidsList(
    154                                 profileint.getProfile().getDomain());
    155                 for (Bid bid : allbidslist) {
    156                         double util = utilspace.getUtility(bid).doubleValue();
    157                         if (util < minUtil)
    158                                 minUtil = util;
    159                         if (util > maxUtil)
    160                                 maxUtil = util;
    161                 }
    162 
    163                 Bid rvbid = utilspace.getReservationBid();
    164                 if (rvbid != null) {
    165                         double rv = utilspace.getUtility(rvbid).doubleValue();
    166                         if (rv > minUtil)
    167                                 minUtil = rv;
    168                 }
    169                 tolerance = 100 / allbidslist.size().longValue();
    170                 tolerance = Math.max(tolerance, 0.1);
    171         }
    172 
    173149        private Bid makeBid() {
    174150                double time = progress.get(System.currentTimeMillis());
    175                 double utilityGoal = utilityGoal(time, getE());
    176                 BidsWithUtility options = new BidsWithUtility(
    177                                 (LinearAdditiveUtilitySpace) profileint.getProfile(),
    178                                 BigDecimal.valueOf(utilityGoal),
    179                                 BigDecimal.valueOf(utilityGoal + tolerance));
     151                BigDecimal utilityGoal = utilityGoal(time, getE());
     152                ImmutableList<Bid> options = extendedspace.getBids(utilityGoal);
     153                if (options.size() == BigInteger.ZERO)
     154                        return null;
    180155                // pick a random one.
    181156                return options.get(new Random().nextInt(options.size().intValue()));
     
    190165         * @return the utility goal for this time and e value
    191166         */
    192         private double utilityGoal(double t, double e) {
     167        private BigDecimal utilityGoal(double t, double e) {
     168                BigDecimal minUtil = extendedspace.getMin();
     169                BigDecimal maxUtil = extendedspace.getMax();
     170
    193171                double ft = 0;
    194172                if (e != 0)
    195173                        ft = Math.pow(t, 1 / e);
    196                 // we subtract 0.000001 to correct possibly small round-up errors
    197                 return minUtil + (maxUtil - minUtil) * (1 - ft) - 0.000001;
     174                // we subtract epsilon to correct possibly small round-up errors
     175                return new BigDecimal(minUtil.doubleValue()
     176                                + (maxUtil.doubleValue() - minUtil.doubleValue()) * (1 - ft))
     177                                                .min(maxUtil).max(minUtil);
    198178        }
    199179}
Note: See TracChangeset for help on using the changeset viewer.