Ignore:
Timestamp:
11/28/19 14:40:48 (5 years ago)
Author:
bart
Message:

Release 1.1.0

Location:
exampleparties/randompartypy
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • exampleparties/randompartypy/pom.xml

    r6 r9  
    66        <groupId>geniusweb.exampleparties</groupId>
    77        <artifactId>randompyparty</artifactId>
    8         <version>1.0.0</version>
     8        <version>1.1.0</version>
    99        <packaging>jar</packaging>
    1010
     
    1616                <basedir>.</basedir>
    1717                <passwd>${env.ARTIFACTORY_PASS}</passwd>
    18                 <jackson-2-version>2.9.6</jackson-2-version>
     18                <jackson-2-version>2.9.10</jackson-2-version>
    1919        </properties>
    2020
     
    3131                        <groupId>geniusweb</groupId>
    3232                        <artifactId>pythonadapter</artifactId>
    33                         <version>1.0.0</version>
     33                        <version>1.1.0</version>
    3434                </dependency>
    3535
     
    3737                        <groupId>geniusweb</groupId>
    3838                        <artifactId>bidspace</artifactId>
    39                         <version>1.0.0</version>
     39                        <version>1.1.0</version>
    4040                </dependency>
    4141                <dependency>
    4242                        <groupId>geniusweb</groupId>
    4343                        <artifactId>profileconnection</artifactId>
    44                         <version>1.0.0</version>
     44                        <version>1.1.0</version>
    4545                </dependency>
    4646                <dependency>
  • exampleparties/randompartypy/src/main/resources/RandomParty.py

    r2 r9  
    2424import geniusweb.profile.Profile as Profile
    2525import geniusweb.profile.PartialOrdering as PartialOrdering
    26 import geniusweb.profile.utilityspace.LinearAdditiveUtilitySpace as LinearAdditiveUtilitySpace
     26import geniusweb.profile.utilityspace.UtilitySpace as UtilitySpace
    2727import geniusweb.references.ProfileRef as ProfileRef
    2828import geniusweb.references.ProtocolRef as ProtocolRef
     
    9797                        return false
    9898                profile = self.profile.getProfile()
    99                 if isinstance(profile, LinearAdditiveUtilitySpace):
     99                if isinstance(profile, UtilitySpace):
    100100                        return profile.getUtility(bid).doubleValue() > 0.6;
    101101                if isinstance(profile, PartialOrdering):
  • exampleparties/randompartypy/src/test/java/geniusweb/exampleparties/randompartypy/RandomPartyTest.java

    r8 r9  
    3131import geniusweb.actions.PartyId;
    3232import geniusweb.bidspace.AllBidsList;
    33 import geniusweb.connection.Connection;
     33import geniusweb.connection.ConnectionEnd;
    3434import geniusweb.issuevalue.Bid;
    3535import geniusweb.party.Capabilities;
     
    111111        public void testInformSettings() {
    112112                party.connect(connection);
    113                 connection.notifyChange(settings);
     113                connection.notifyListeners(settings);
    114114                assertEquals(0, connection.getActions().size());
    115115        }
     
    190190 */
    191191class TestConnection extends DefaultListenable<Inform>
    192                 implements Connection<Inform, Action> {
     192                implements ConnectionEnd<Inform, Action> {
    193193        private List<Action> actions = new LinkedList<>();
    194194
Note: See TracChangeset for help on using the changeset viewer.