EnMAS: A New Tool for Multi-Agent Systems Research and Education
Abstract:
Multi-agent systems (MAS) is a field of growing relevance to our modern world with appli- cations everywhere from heterogenous distributed computing and storage to robot swarms. One model of MAS is the Decentralized, Partially Observable Markov Decision Process, or Dec-POMDP, used extensively in current research, and capable of modeling both large multi-agent and smaller single-agent systems, whether stochastic or deterministic.
The project to be demonstrated is a framework and an application for specifying Dec- POMDP problems and agents. Named EnMAS (Environment for Multi-Agent Simulation), the project is designed to be useful for research and as a teaching tool. To that end, Dec- POMDP problems are specified using Scala, an expressive hybrid functional and object- oriented language that targets the Java Virtual Machine. Agents may be written in Java or Scala. While the latter makes code-writing more efficient, backwards compatibility is provided for those who want to write AI agents in Java, a feature designed to make the framework more useful in the classroom setting.
Algorithms for doing on-line learning have different input requirements than those for off- line planning, and satisfying both can lead to error-prone code duplication. This problem is addressed by the ability to employ a single EnMAS problem specification syntax in both phases. Another major goal of the EnMAS project is to unify the formats used to encode experiments. Efforts are made toward a clean, human-readable problem specification syn- tax, and code for both problem and agent are archived using the common JAR file format for easy sharing. An additional goal is to provide high performance scalability. EnMAS is a client-server application, where each client in turn may host many agents. In this way, users may run both server and clients on a single node and still reap the benefits of today’s multi-core architectures. Alternatively, more machines can run as an ad-hoc cluster.
This work is the product of a Master’s project in software engineering. Sample results to do with Dec-POMDP research come from an undergraduate research project in the area.








