Multi-player Multi-issue Negotiation with Mediator using CP-nets
Thiri Haymar Kyaw, Sujata Ghosh, Rineke Verbrugge
2013
Abstract
This paper presents a simple interactive negotiation approach for conflicts in everyday life with incomplete information. We focus on mediation to obtain an agreement while going through alternating offers over a finite time bargaining game. The mediator searches and proposes a jointly optimal negotiation text for all players participating in the negotiation process based on their conditional preference networks (CP-nets). The players make a decision whether to accept or reject by examining their utility CP-nets. We develop two algorithms for the mediator and the players. If the first negotiation text cannot be accepted by all players, the mediator offers the next negotiation texts by searching for jointly optimal solutions. This negotiation process continues until an agreement is achieved or a deadline is reached. This proposed approach can support multi-issue, multi-party negotiation to achieve an agreement during a finite number of rounds with near optimal outcomes.
References
- Apt, K. R., Rossi, F., and Venable, K. B. (2005). CP-nets and Nash equilibria. In Proceedings of the 3rd International Conference on Computational Intelligence, Robotics and Autonomous Systems (CIRAS), pages 13-16.
- Aydogan, R., Baarslag, T., Hindriks, K., Jonker, C., and Yolum, P. (2011). Heuristic-based approaches for CPnets in negotiation. In Proceedings of The 4th International Workshop on Agent-based Complex Automated Negotiations (ACAN).
- Bacchus, F. and Grove, A. (1995). Graphical models for preference and utility. In Proceedings of the Eleventh conference on Uncertainty in Artificial Intelligence, UAI'95, pages 3-10.
- Boutilier, C., Bacchus, F., and Brafman, R. I. (2001). UCPnetworks: A directed graphical representation of conditional utilities. In The 17th Conference on Uncertainty in Artificial Intelligence (UAI-01), pages 56-64.
- Boutilier, C., Brafman, R. I., Hoos, H. H., and Poole, D. (2004a). CP-nets: A tool for representing and reasoning with conditional ceteris paribus preference statements. Journal of Artificial Intelligence Research, 21:135-191.
- Boutilier, C., Brafman, R. I., Hoos, H. H., and Poole, D. (2004b). Preference-based constrained optimization with CP-nets. Computational Intelligence, 20:137- 157.
- Chalamish, M. and Kraus, S. (2012). Automed: An automated mediator for multi-issue bilateral negotiations. Autonomous Agents and Multi-Agent Systems, 24(3):536-564.
- Ehtamo, H., Kettunen, E., and Hamalainen, R. P. (2001). Searching for joint gains in multi-party negotiations. European Journal of Operational Research, 130(1):54-69.
- Fatima, S. S., Wooldridge, M., and Jennings, N. R. (2005). Bargaining with incomplete information. Annals of Mathematics and AI, 44(3):207-232.
- Fisher, R. (1978). International Mediation: A Working Guide. International Peace Academy, New York.
- Korhonen, P., Oretskin, N., Teich, J., and Wallenius, J. (1995). The impact of a biased starting position in a single negotiation text type mediation. Group Decision and Negotiation, 4:357-374.
- Li, M., Vo, Q. B., and Kowalczyk, R. (2011a). Efficient heuristic approach to dominance testing in CP-nets. In Proceedings of 10th International Conference on Autonomous Agents and Multiagent Systems (AAMAS), pages 353-360.
- Li, M., Vo, Q. B., and Kowalczyk, R. (2011b). An efficient protocol for negotiation over combinatorial domains with incomplete information. In Proceedings of the 27th Conference on Uncertainty in Artificial Intelligence (UAI), pages 436-444, Barcelona, Spain.
- Li, M., Vo, Q. B., and Kowalczyk, R. (2011c). Majorityrule-based preference aggregation on multi-attribute domains with CP-nets,. In Tumer, Yolum, S. and Stone, editors, Proceedings of 10th International Conference on Autonomous Agents and Multiagent Systems (AAMAS), pages 659-666.
- Liu, Z., Li, X., Guo, S., and Liu, J. (2012). A game tree algorithm for optimal outcome of CP-nets. International Journal of Digital Content Technology and its Applications (JDCTA), 6.
- Oakman, J. (2002). The Camp David Accords: A case study on international negotiation. Technical report, Princeton University, Woodrow Wilson School of Public and International Affairs.
- Pearl, J. (1988). Probabilistic Reasoning in Intelligent Systems: Networks of Plausible Inference. Morgan Kaufmann Publishers Inc, San Francisco, CA, USA.
- Purrington, K. and Durfee, E. H. (2009). Agreeing on social outcomes using individual CP-nets. Multiagent and Grid Systems, 5(4):409-425.
- Raiffa, H., Richardson, J., and Metcalfe, D. (2002). Negotiation Analysis: The Science and Art of Collaborative Decision Making. Belknap Press of Harvard Univ. Press, Cambridge (MA).
- Rasmusen, E. (2007). Games and Information. Blackwell Publishing, four edition.
- Rossi, F., Venable, K. B., and Walsh, T. (2004). mCP nets: Representing and reasoning with preferences of multiple agents. In Proceedings of the 19th National Conference on Artificial Intelligence (AAAI), pages 729- 734.
- Telhami, S. (1993). Evaluating bargaining performance: The case of Camp David. Political Science Quarterly, 107:629-653.
- Algorithm 2: Negotiation by Mediator.
- 1: Input:
- 2: Player N: N = (1; 2; : : : ; n)
- 3: CPN1;CPN2; : : : ;CPNn //Players' CP-nets
- 4: S1; S2; :::; Sn //Players' proposals
- 5: maxP 0:9; avgP 0:5 //maximum and average acceptable probability
- 6: Agreement 0; JointOptimal 0/; t 0
- 7: threshold 0:3
- 8: while Agreement 6= 1 and t 6 f inalRound do
- 9: for i = 1 to n do
- 10: for j = 1 to n do
- 11: Search acceptableProbability (Si; S j : i 6= j)
- 12: end for
- 13: end for
- 14: Mark all Si; S j: acceptableProbability < threshold;
- 15: while maxP > avgP do
- 16: for i = 1 to n do
- 17: for j = 1 to n do
- 18: if 9Si : (acceptableProbability(Si; S j) = maxP ; i 6= j) then
- 19: JointOptimal Si
- 20: else
- 21: Search alternativeOptimal(Si) //Other proposals with same maxP
- 22: if 9Sl : (acceptableProbability(Sl ; S j) = maxP; l 6= j) then
- 23: JointOptimal Sl
- 24: else
- 25: maxP maxP 0:1
- 26: end if
- 27: end if
- 28: end for
- 29: end for
- 30: end while
- 31: Propose JointOptimal
- 32: if 8 Player k 2 N accept Proposal then
- 33: Agreement 1
- 34: else if Player k (k 2 N) rejects Si then
- 35: Ask new proposal to Player k
- 36: Update Si (i = k)
- 37: maxP 0:9
- 38: end if
- 39: end while
- 40: if Agreement = 0 and t = finalRound then
- 41: Announce finalRound and Ask for evaluating all proposals to Players
- 42: end if
Paper Citation
in Harvard Style
Kyaw T., Ghosh S. and Verbrugge R. (2013). Multi-player Multi-issue Negotiation with Mediator using CP-nets . In Proceedings of the 5th International Conference on Agents and Artificial Intelligence - Volume 1: ICAART, ISBN 978-989-8565-38-9, pages 99-108. DOI: 10.5220/0004256900990108
in Bibtex Style
@conference{icaart13,
author={Thiri Haymar Kyaw and Sujata Ghosh and Rineke Verbrugge},
title={Multi-player Multi-issue Negotiation with Mediator using CP-nets},
booktitle={Proceedings of the 5th International Conference on Agents and Artificial Intelligence - Volume 1: ICAART,},
year={2013},
pages={99-108},
publisher={SciTePress},
organization={INSTICC},
doi={10.5220/0004256900990108},
isbn={978-989-8565-38-9},
}
in EndNote Style
TY - CONF
JO - Proceedings of the 5th International Conference on Agents and Artificial Intelligence - Volume 1: ICAART,
TI - Multi-player Multi-issue Negotiation with Mediator using CP-nets
SN - 978-989-8565-38-9
AU - Kyaw T.
AU - Ghosh S.
AU - Verbrugge R.
PY - 2013
SP - 99
EP - 108
DO - 10.5220/0004256900990108