https://github.com/adrrei/multi-agent-systems-in-jade
A Multi Agent Auction System developed in JADE
https://github.com/adrrei/multi-agent-systems-in-jade
agent fipa interaction-protocols jade multi-agent-systems
Last synced: 8 months ago
JSON representation
A Multi Agent Auction System developed in JADE
- Host: GitHub
- URL: https://github.com/adrrei/multi-agent-systems-in-jade
- Owner: Adrrei
- Created: 2016-10-18T19:23:26.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-12-16T09:43:42.000Z (over 7 years ago)
- Last Synced: 2025-01-31T10:36:14.506Z (over 1 year ago)
- Topics: agent, fipa, interaction-protocols, jade, multi-agent-systems
- Language: Java
- Homepage:
- Size: 32.2 KB
- Stars: 13
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A Multi Agent Auction System developed in JADE
The project aims to showcase different types of auctions using agents, where each agent have their own behavior.
This behavior is made using random number generators and simple logic, but could very well be extended upon.
The interaction protocols used can be found on [FIPA's homepage](http://www.fipa.org/repository/ips.php3 "FIPA's Homepage"):
* [FIPA Contract Net Interaction Protocol Specification](http://www.fipa.org/specs/fipa00029/SC00029H.html "FIPA Contract Net Interaction Protocol Specification")
* [FIPA Iterated Contract Net Interaction Protocol Specification](http://www.fipa.org/specs/fipa00030/SC00030H.html "FIPA Iterated Contract Net Interaction Protocol Specification")
**The classes are connected as follows:**
* All of the classes use DFHelper
* CarrierAgent and CompanyAgent
* VickreyCarrierAgent and VickreyCompanyAgent
* CarrierNegotiationAgent, CompanyNegotiationAgent, and EmployeeAgent
The CarrierAgent/CompanyAgent and CarrierNegotiationAgent/CompanyNegotiationAgent classes use the FIPA Iterated Contract Net Protocol, and can be closely compared to reverse English auctions.
VickreyCarrierAgent/VickreyCompanyAgent use the FIPA Contract Net Protocol, following the standard for Vickrey auctions.