Changes between Version 316 and Version 317 of WikiStart


Ignore:
Timestamp:
07/29/20 14:22:24 (4 years ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v316 v317  
    691691These components may be configurable through the parameters. Currently they just share the parameters with the DefaultBoa party. This means that the names of your parameters should avoid names already in use.
    692692
    693 === BiddingStrategy
    694 A BiddingStrategy determines what action to take in which state, through this interface function
     693=== Bidding Strategy
     694A Bidding Strategy determines what action to take in which state, through this interface function
    695695{{{
    696696Action getAction(BoaState state);
     
    698698The following implementations are provided with the Boa Framework
    699699
    700 ||Implementation||behaviour||parameters||
     700||= Implementation =||= behaviour =||= parameters =||
    701701||TimeDependentBiddingStrategy||Bids according to an exponentially decreasing utility target. See javadoc for details. ||e,k,min,max. See javadoc for details.||
     702
     703=== Acceptance Strategy
     704A Acceptance Strategy determines what action to take in which state, through this interface function
     705{{{
     706Boolean isAcceptable(Bid bid, BoaState negoState);
     707}}}
     708The following implementations are provided with the Boa Framework
     709
     710||= Implementation =||= behaviour =||= parameters =||
     711||TimeDependentAcceptanceStrategy||Accepts according to an exponentially decreasing utility target. See javadoc for details. ||e,k,min,max. See javadoc for details.||
     712
     713
     714
    702715
    703716= Writing a party in other languages