source: src/main/java/onetomany/bargainingchipsgame/BargainingChips.java@ 268

Last change on this file since 268 was 268, checked in by Tim Baarslag, 5 years ago

Bargaining Chips packages cleanup

File size: 560 bytes
Line 
1package onetomany.bargainingchipsgame;
2
3/**
4 * This package describes all the fundamental concepts in Bargaining Chips Game (BCG).
5 *
6 * BCG rules are based on a non-alternating offer protocol in each bilateral negotiation thread.
7 * Multiple deals via simultaneous threads in the BCG one-to-many negotiation need to be coordinated.
8 * So the players are equipped with two modules, one coordinator and multiple negotiators one per each thread.
9 *
10 */
11public class BargainingChips
12{
13 public static void main(String[] args)
14 {
15
16
17 }
18
19}
Note: See TracBrowser for help on using the repository browser.