Changeset 24 for boa/src


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/src/main/java/geniusweb/boa
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • 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.