source: src/main/java/agents/UncertaintyAgentExample.java@ 32

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

Bid toString() fix
initialization of example agent

File size: 542 bytes
Line 
1package agents;
2
3import java.util.List;
4
5import genius.core.actions.Action;
6import genius.core.parties.AbstractNegotiationParty;
7
8public class UncertaintyAgentExample extends AbstractNegotiationParty {
9
10 @Override
11 public Action chooseAction(List<Class<? extends Action>> possibleActions)
12 {
13 System.out.println("UncertaintyAgentExample: ");
14 userModel.comparisonsToString();
15 return null;
16 }
17
18 @Override
19 public String getDescription()
20 {
21 return "Example agent that can deal with uncertain preferences";
22 }
23
24}
Note: See TracBrowser for help on using the repository browser.