source: src/main/java/negotiator/parties/RandomParty.java

Last change on this file was 160, checked in by Tim Baarslag, 6 years ago

Cleanup of agent names to improve the readability of the party repository

File size: 304 bytes
RevLine 
[1]1package negotiator.parties;
2
3/**
4 * Copies of the random party , needed for assignment to have 2 random agents in
5 * tournament.
6 *
7 */
[160]8public class RandomParty extends RandomCounterOfferNegotiationParty
9{
10 @Override
11 public String getDescription()
12 {
13 return super.getDescription() + " (copy)";
14 }
[1]15}
Note: See TracBrowser for help on using the repository browser.