Changes between Version 9 and Version 10 of WikiStart


Ignore:
Timestamp:
07/27/21 12:05:24 (3 years ago)
Author:
Wouter Pasman
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v9 v10  
    77''GeniusWeb'' is an open architecture for negotiation via the internet. The core of the architecture is a JSON based communication protocol that standardizes the communication messages comprising a negotiation.
    88
    9 This project contains a python-based implementation of GeniusWeb core objects. It allows easy (de)serialization of many data structures needed for negotiation in GeniusWeb. Some data structures have not yet been implemented in GeniusWebPython, this will be done as needed. A full reference implementation is available [https://tracinsy.ewi.tudelft.nl/pubtrac/GeniusWeb here]
     9This project contains a python-based implementation of GeniusWeb core objects. It allows easy (de)serialization of many data structures needed for negotiation in GeniusWeb. Some data structures have not yet been implemented in GeniusWebPython, this will be done as needed. Please contact us if you need some missing classes.
     10
     11A specification and full reference implementation of the GeniusWeb core is available [https://tracinsy.ewi.tudelft.nl/pubtrac/GeniusWeb here]
     12
     13= Overview of the available core objects
     14
     15= Example Parties
     16Example parties can be found [source:/exampleparties here]. Many of these are also included with the basic [https://tracinsy.ewi.tudelft.nl/pubtrac/GeniusWebPythonPartiesServer parties server] to provide basic functionality.
     17
     18Below is a table showing the currently available example parties and their properties. Notice, "Supported profile types" gives the class names of all supported types, so for instance "PartialOrdering" means all subclasses of PartialOrdering which also includes all UtilitySpaces.
     19
     20||= Party =||= Protocol =||= Supported profile types =||= Parameters (default value) =||
     21||RandomParty||SAOP, Learn||LinearAdditive||minPower (2), maxPower (infinity). Used to control voting behaviour||
     22||stupidparty||SAOP||LinearAdditive||-||
     23
    1024
    1125== GeniusWeb sources