Changes between Version 313 and Version 314 of WikiStart
- Timestamp:
- 07/29/20 14:05:19 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v313 v314 487 487 ||CompareBids||COB||PartialOrdering||-|| 488 488 ||SimpleSHAOP||SHAOP||DefaultPartialOrdering||elicitationcost|| 489 ||Boa||SAOP||"as":class.of.AcceptanceStrategy,"bs":class.of.BiddingStrategy,"om":"class.of.OpponentModel plus model-specific parameters|| 489 ||Boa||SAOP||LinearAdditive||"as":class.of.AcceptanceStrategy,"bs":class.of.BiddingStrategy,"om":"class.of.OpponentModel plus model-specific parameters|| 490 ||SimpleBoa||SAOP||LinearAdditive||-|| 490 491 491 492 == HumanGUI party … … 650 651 651 652 = Writing a Boa Party 652 THe defaultBoaParty as mentioned in the exampleparties list is fully configurable to use BOA components. But this adds some hassle when setting up a negotiation as all the components must be explicitly added in the parameters. ALso there is no mechanism available to load BOA components into the runtime system, you need to load any required components as part of the progess of loading a Party.653 THe BoaParty as mentioned in the exampleparties list is fully configurable to use BOA components. But this adds some hassle when setting up a negotiation as all the components must be explicitly added in the parameters. ALso there is no mechanism available to load BOA components into the runtime system, you need to load any required components as part of the progess of loading a Party. 653 654 654 655 You can hard code a Boa Party by extending the DefaultBoa class. You can use all the Boa components, you can add your own components, and you wire them hard into your party. An example is proviced in the simpleboa example package. SimpleBoa looks like this