1 | /**
|
---|
2 | * This file contains the main class of BraveCat agent, which should be directly imported into the GENIUS 5.1.
|
---|
3 | * BraveCat agent is developed in order to take part in The Fourth International Automated Negotiating Agents Competition (ANAC 2014), and
|
---|
4 | * Created by Farhad Zafari (email address: f_z_uut@yahoo.com), and Faria Nasiri Mofakham (website address: http://eng.ui.ac.ir/~fnasiri), in
|
---|
5 | * Department of Information Technology Engineering,
|
---|
6 | * Faculty of Engineering,
|
---|
7 | * University of Isfahan, Isfahan, Iran (http://www.ui.ac.ir/).
|
---|
8 | * BraveCat agent is consistent with the BOA framework devised by Baarslag et al.
|
---|
9 | * For more information on the BOA framework you can see:
|
---|
10 | * T. Baarslag, K. Hindriks, M. Hendrikx, A. Dirkzwager, and C. Jonker, "Decoupling negotiating agents to explore the space of negotiation strategies",
|
---|
11 | * in Proceedings of the 5th International Workshop on Agent-based Complex Automated Negotiations, ACAN, 2012.
|
---|
12 | */
|
---|
13 |
|
---|
14 | package agents.anac.y2014.BraveCat;
|
---|
15 |
|
---|
16 | import agents.anac.y2014.BraveCat.AcceptanceStrategies.AC_LAST;
|
---|
17 | import agents.anac.y2014.BraveCat.AcceptanceStrategies.AcceptanceStrategy;
|
---|
18 | import agents.anac.y2014.BraveCat.OfferingStrategies.BRTOfferingStrategy;
|
---|
19 | import agents.anac.y2014.BraveCat.OfferingStrategies.OfferingStrategy;
|
---|
20 | import agents.anac.y2014.BraveCat.OpponentModelStrategies.BestBid;
|
---|
21 | import agents.anac.y2014.BraveCat.OpponentModelStrategies.OMStrategy;
|
---|
22 | import agents.anac.y2014.BraveCat.OpponentModels.OpponentModel;
|
---|
23 | import agents.anac.y2014.BraveCat.OpponentModels.DBOMModel.DBOMModel;
|
---|
24 | import agents.anac.y2014.BraveCat.necessaryClasses.BOAagent;
|
---|
25 |
|
---|
26 | public class BraveCat extends BOAagent {
|
---|
27 | @Override
|
---|
28 | public void agentSetup() {
|
---|
29 | System.out.println(
|
---|
30 | "..........................Agent Setup Started.............................");
|
---|
31 | try {
|
---|
32 | OpponentModel om = null;
|
---|
33 | om = new DBOMModel();
|
---|
34 | om.init(negotiationSession);
|
---|
35 | OMStrategy oms = new BestBid(negotiationSession, om);
|
---|
36 | OfferingStrategy offering = new BRTOfferingStrategy(
|
---|
37 | this.negotiationSession, om, oms, 0.005, 0);
|
---|
38 | AcceptanceStrategy ac = new AC_LAST();
|
---|
39 | ac.init(this.negotiationSession, offering, om, null);
|
---|
40 | setDecoupledComponents(ac, offering, om, oms);
|
---|
41 | } catch (Exception ex) {
|
---|
42 | }
|
---|
43 | System.out.println(
|
---|
44 | "..........................Agent Setup Ended...............................");
|
---|
45 | }
|
---|
46 |
|
---|
47 | @Override
|
---|
48 | public String getName() {
|
---|
49 | return "BraveCat v0.3";
|
---|
50 | }
|
---|
51 |
|
---|
52 | @Override
|
---|
53 | public String getDescription() {
|
---|
54 | return "ANAC 2014 compatible with non-linear utility spaces";
|
---|
55 | }
|
---|
56 | } |
---|