Changeset 24 for boa


Ignore:
Timestamp:
10/06/20 13:12:20 (4 years ago)
Author:
bart
Message:

Fixes an issue with processing maxPower of a vote. Javadoc maven plugin now uses latest version.

Location:
boa
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • boa/pom.xml

    r23 r24  
    66        <groupId>geniusweb</groupId>
    77        <artifactId>boa</artifactId>
    8         <version>1.5.2</version> <!-- must equal ${geniusweb.version} -->
     8        <version>1.5.3</version> <!-- must equal ${geniusweb.version} -->
    99        <packaging>jar</packaging>
    1010
     
    1717                <passwd>${env.ARTIFACTORY_PASS}</passwd>
    1818                <jackson-2-version>2.9.10</jackson-2-version>
    19                 <geniusweb.version>1.5.2</geniusweb.version>
     19                <geniusweb.version>1.5.3</geniusweb.version>
    2020        </properties>
    2121
     
    146146                                <groupId>org.apache.maven.plugins</groupId>
    147147                                <artifactId>maven-javadoc-plugin</artifactId>
    148                                 <version>2.10.1</version>
     148                                <version>3.2.0</version>
    149149                                <executions>
    150150                                        <execution>
     
    153153                                                        <goal>jar</goal>
    154154                                                </goals>
    155                                                 <configuration>
    156                                                         <additionalparam>${javadoc.opts}</additionalparam>
    157                                                         <additionalparam>-Xdoclint:none</additionalparam>
    158                                                 </configuration>
    159155                                        </execution>
    160156                                </executions>
  • boa/src/main/java/geniusweb/boa/BoaState.java

    r21 r24  
    3838        /**
    3939         * Initial state. Update using with(settings).
     40         *
     41         * @param reporter the {@link Reporter} to use for logging
    4042         */
    4143        public BoaState(Reporter reporter) {
     
    8385         * This should be the first update call used.
    8486         *
    85          * @param settings    the negoi {@link Settings}
     87         * @param newsettings the negoi {@link Settings}
    8688         * @param bidstrat    the {@link BiddingStrategy}
    8789         * @param acceptstrat the {@link AcceptanceStrategy}
    8890         * @param omClass     the class of the {@link OpponentModel}
    89          * @param reporter    the {@link Reporter} that can be used to log messages
    9091         * @return initialized BoaState
    9192         */
     
    175176        /**
    176177         *
    177          * @param bid
     178         * @param bid the {@link Bid} to check
    178179         * @return true iff {@link #acceptanceStrategy} says the bid is acceptable
    179180         */
  • boa/src/main/java/geniusweb/boa/DefaultBoa.java

    r21 r24  
    106106         * @param settings the {@link Settings}
    107107         * @return the {@link OpponentModel} class to use for modeling opponents
     108         * @throws InstantiationFailedException if the requested opponent model can
     109         *                                      not be loaded
    108110         */
    109111        abstract protected Class<? extends OpponentModel> getOpponentModel(
     
    117119         * @return the {@link BiddingStrategy} to use for determining the next
    118120         *         {@link Action}
     121         * @throws InstantiationFailedException if the requested opponent model can
     122         *                                      not be loaded
    119123         */
    120124        abstract protected BiddingStrategy getBiddingStrategy(Settings settings)
     
    128132         * @return the {@link AcceptanceStrategy} to use for determining if a bid is
    129133         *         acceptable
     134         * @throws InstantiationFailedException if the requested opponent model can
     135         *                                      not be loaded
    130136         */
    131137        abstract protected AcceptanceStrategy getAccceptanceStrategy(
  • boa/src/main/java/geniusweb/boa/biddingstrategy/ExtendedUtilSpace.java

    r20 r24  
    9393
    9494        /**
    95          * @param utilityGoal
     95         * @param utilityGoal the intended utilty
    9696         * @return bids with utility inside [utilitygoal-tolerance, utilitygoal]
    9797         */
  • boa/src/main/java/geniusweb/boa/biddingstrategy/TimeDependentBiddingStrategy.java

    r21 r24  
    242242         * Overridable eg for tests
    243243         *
    244          * @param profile
     244         * @param profile a {@link LinearAdditive} profile
    245245         *
    246246         * @return {@link ExtendedUtilSpace}
Note: See TracChangeset for help on using the changeset viewer.