Agent participating to local ANAC competition in Technical University of Chania
ANAC dedicates to develop successful automated negotiators for scenarios where there is incomplete information about the opponent. The design of generic negotiating agents aims to operate in a variety of scenarios providing benchmarks of performance.
GENIUS (General Environment for Negotiation with Intelligent multi-purpose Usage Simulation) is a negotiation environment that implements an open architecture for heterogeneous negotiating parties. In addition, Genius can be used to implement, or simulate, real life negotiations.
- Java Integrated Development Environment (Eclipse IDE)
- Java Version 8
- Genius.XXX version
Genius can run on any machine running Java 8. Java 9 is not yet supported.
-
Download the file
genius-XXX.zip
fromhttp://ii.tudelft.nl/genius/?q=article/releases
and unzip it to your machine. -
Install the environment, the file
genius-XXX.zip
.
genius-XXX.jar
=> GENIUS negotiation simulator
- Start a console and find the directory of
genius-XXX.jar
- On windows, open the
.jar
usingjava -jar genius-XXX.jar
- On mac, open the
.jar
using
- Systemdisk/Applications/Utilities/Console.app
- Double click on the app on the path above
- On windows, open the
For more information, check readme
in the genius folder.
-
Open Eclipse
-
Select File->New Java Project
- Make sure you select
JavaSE-1.8
. If you missedJavaSE
, you can download it fromhttps://www.oracle.com/java/technologies/downloads/#java17
- Make sure you select
-
Import (or drag)
genius-XXX.jar
into the project in the navigator area -
Connect genius Jar - Right click on the
<your_project_name>
icon and select ”Properties”. - Select the Java Build Path. - Select the Libraries Tab. - Select ”Add JARs”, in the JAR Selection window.
- Open the<your_project_name>
folder, scroll down to select genius.jar and run as java application .
- Drag an example folder from your unzipped genius
- Drop it on the
src
folder - Copy files and rename folder
- Work using imagination and check out other agents policy to enrich yours.
There are two modes to run a negotiation:
- Session
In each mode, parameters need to be specified for running.
Log files get the filename tournament- followed by day and time followed by the domain name and
an extension.
There are 3 log files:
- log.csv
- log.xml
- logStats.xml
For more info about parameter description/selection, see readme
Agent's name: PappousAgent
Heuristic agent1 with four basic rules for accepting bids.
-
Expected utility = [Lower Bound Upper Bound]
-
Bound differentiation in time (percentage reduction of bounds).
-
Bid History.
-
Final Offer with Reserved Value.
-
First move as the best possible.
-
Bid with utility in a range.
-
Bid dependance from the previous (or bid history).
-
Reservation Bid in the end of the negotiation.
- This project was created for the requirements of the lesson Multiagent Systems
- You can find every annual competition in ANAC
Footnotes
-
The implementation is a union of existed agents worked in ANAC agent. ↩