| 498 | == Boa Party |
| 499 | The BOA party is a special kind of party, with pluggable components that determine the acceptability of a bid (AcceptanceStrategy), the proper next bid (BiddingStrategy) and modelers of the opponents (OpponentModel). The fully specified class path is to be provided as parameters to the BOA party. A minimal example of such a parameter set is this |
| 500 | {{{ |
| 501 | "as":"geniusweb.boa.acceptancestrategy.TimeDependentAcceptanceStrategy", |
| 502 | "bs":"geniusweb.boa.biddingstrategy.TimeDependentBiddingStrategy", |
| 503 | "om":"geniusweb.opponentmodel.FrequencyOpponentModel" |
| 504 | }}} |
| 505 | |
| 506 | Each of the components can also be parameterized. You just add their parameters to the list. All parameters are forwarded to all components, these components will figure out themselves which of the provided ones are relevant for them. |
| 507 | |