Last change
on this file since 85 was 84, checked in by Bart Vastenhouw, 3 years ago |
Added time-dependent parties for python and simpleRunner-GUI for java
|
File size:
361 bytes
|
Rev | Line | |
---|
[84] | 1 | from geniusweb.actions.AbstractAction import AbstractAction
|
---|
| 2 | from geniusweb.actions.PartyId import PartyId
|
---|
| 3 |
|
---|
| 4 | class LearningDone ( AbstractAction):
|
---|
| 5 | '''
|
---|
| 6 | * Indicates that a party turns away from the negotiation and.
|
---|
| 7 |
|
---|
| 8 | '''
|
---|
| 9 | def __init__(self, actor:PartyId ):
|
---|
| 10 | super().__init__(actor)
|
---|
| 11 |
|
---|
| 12 | def __repr__(self):
|
---|
| 13 | return "LearningDone[" + str(self.getActor()) + "]";
|
---|
| 14 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.