Questions tagged [multi-agent]

A Multi-Agent System (MAS) is a system composed of multiple interacting intelligent agents within a given environment based on the new paradigm for conceptualizing, designing, and implementing software systems.

A Multi-Agent system (MAS) is a computerized system composed of multiple interacting intelligent agents within an environment based on the new paradigm for conceptualizing, designing, and implementing software systems. Multi-agent systems can be used to solve problems that are difficult or impossible for an individual agent or a monolithic system to solve. Intelligence may include some methodical, functional, procedural or algorithmic search, find and processing approach.

155 questions
0
votes
1 answer

How to format a float number in Jason to show only two decimals?

How to format a number as a currency with two decimals in Jason? The code bellow illustrates the case: products([["Banana",1], ["Apple",2], ["Pinapple",2.5]]). margin(2). !printPrices. +!printPrices: products(List) & margin(Z)<- …
0
votes
1 answer

eclipse plugin for jason (Agentspeak) could not open the editor

I've followed Jason Eclipse Plugin mini-tutorial (http://jason.sourceforge.net/mini-tutorial/eclipse-plugin/) but after the installation the editor is not highlighting and showing asl and mas2j code properly. For asl and mas2j files eclipse is…
Cleber Jorge Amaral
  • 1,316
  • 13
  • 26
0
votes
1 answer

WakerBehaviour gets blocked by other activities

I am working on a multi-agent system in JADE and use WakerBehaviours to simulate events. However, in some cases, the WakerBehaviour wakes up much too late which leads to problems. I have tested this in the following code, but the "Im awake"-message…
0
votes
1 answer

Multi Agent System - Calculate a distance between agents using jade framework

I'm new user of Jade framework and I want to solve an exercise that asks to create 4 agents (3 taxi and 1 client) then calculate the distance between the client and the 3 taxi agents then I take the closest taxi to the client and communicate with…
0
votes
0 answers

Is there are a way to add Multi Agent layer into a game development ?

I am hoping to build a RTS game for my final year project. Is there are a way to add Multi Agent layer into a game development ? I am hoping to use unity 3d or JMoneky
cs3115
  • 53
  • 1
  • 3
0
votes
2 answers

Jade: how to run the same agent multiple times?

I need to run my agents multiple times. Each time all the agents should be created perform their behaviour and be removed from the platform. My problem is with the last step. How can I remove the agents from the platform or how can I shut the…
0
votes
1 answer

multi-agent frameworks and web application development

Most of the java based web applications with multi agent frameworks are developed using JSP . can multi-agent framework like JADE be used with spring MVC framework? advice please.
thili
  • 27
  • 11
0
votes
0 answers

Agent discovery in a mutli-agent distributed system with p2p communication

Lets say I have a set of Agents in a distributed network without a centralized unit. I want to communicate them with P2P. So every Agent is a peer right? The network should build itself and when a new Agent want to take part in this network or wants…
0
votes
1 answer

Threads vd processes in parallel computing

I am implementing two algotihms that run in a multi-agent framework, so each agent should run the algorithm. The first algorithm is sequential, each agent should wait for the previous one, but the second one is concurrent. I implemented both with…
xDazz
  • 67
  • 4
0
votes
2 answers

Exception in thread "main"

Im getting Exception in thread "main" java.lang.Error: Unresolved compilation. What am I doing wrong? public class idsbasedagent{ JDCaptor captor ; public idsbasedagent(){ captor=new JDCaptor(); } public static void…
Mohssine
  • 21
  • 3
0
votes
0 answers

How are agents in multi-agent systems parsing messages and making decisions

I have a question on theory of multi-agent systems. The question is about how do agents understand messages sended by other agents. What algorithms or methods can be used to parse text in messages? How do agent decide what acrion should be done when…
Amelina
  • 172
  • 1
  • 2
  • 12
0
votes
1 answer

Create n agents and calculate average number

I want to create system of n agents. All agents are generate random Integer value. My goal is calculating average of these n numbers. My simple idea of algorithm: Every Agent sends message with its number to other agents Every Agent calculates…
0
votes
1 answer

Services in Multiagent Systems

in MultiAgents Systems: Every agent provides just one service?or is possible more than one? Every agent consumes just one service?or is possible to consume more than one? Thanks!
Sredny M Casanova
  • 4,735
  • 21
  • 70
  • 115
0
votes
1 answer

How implement an intelligent agent in a semantic web application?

I'm studying the semantic web and trying to create a application with Java. I already have the theoretical background about Semantic Web, I have a ontology created in OWL and also know about SPARQL. I'm using Jena Framework to interact with my…
James
  • 1,653
  • 2
  • 31
  • 60
0
votes
1 answer

Draw circle from using points

I have a number of agents (for example 6 or 8) and I want to align them as a circle formation with boids algorithm. Global positions of agents are not known but each agent knows other agents positions relative to itself. Also agents can update…
acs
  • 796
  • 2
  • 14
  • 33