source: src/main/java/negotiator/parties/RandomParty2.java@ 209

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

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

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