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
0 answers

Add and use behaviours of agent with saving a flexibility

There are many behaviours in my agent, whose number and consist isn't known beforehand. Behaviour is an algorithm of action in response of some events in system or in agent itself. I would wanted to do something like that: public abstract class…
Amelina
  • 172
  • 1
  • 2
  • 12
0
votes
2 answers

Multiple agents thread synchronization

I have a java code, that should be read by multiple agents, which were created by the JADE platform. Each agent has his own thread of execution. Therefore, all my agents run my java code concurrently, but not simultaneously. I've tried using the…
0
votes
0 answers

Prolog implementation about argumentation extention semantics

Im trying to implement the logic of AA grounded extension in prolog logic but I can't figure out how to do it. I have some arguments "argument(a)", "argument(b), and some attacks attacks(a,b). I wan't to check if an argument belongs to the grounded…
0
votes
0 answers

making path finding algorithm with multi-thread

I'd like to make algorithm that works like this image http://i.imgur.com/lntXzuF.gif I've learned A*, Dijkstra, Breadth-First-Search, and Best-First-Search with SINGLE thread. is there any reference or algorithm that I can refer to?
DK2
  • 651
  • 1
  • 7
  • 34
0
votes
3 answers

Is it possible to move EJB components from one EJB container to another?

Is possible to move a EJB stateful component with its full internal state among EJB containers after they are deployed? I.e. I want to creat a system with EJB components that move among different containers. But specification doesn't cover this. So…
outmind
  • 759
  • 1
  • 10
  • 30
0
votes
1 answer

Component diagram for a cooperative multi-robot system

I would like to make a component diagram for a multiple robot coordination system. I would like to show on the component diagram that the sub-component "Perception" of each "Robot" component communicates through an interface with each other. Indeed,…
user996987
  • 45
  • 6
0
votes
2 answers

JADE_mulli agent system

I can't deploy the agent in JADE implemented in Java, any alternatives ? package package1; import jade.core.Agent; public class JadePFE extends Agent { @Override protected void setup() { System.out.println("Hello agent 007"); …
zehari
  • 3
  • 2
0
votes
2 answers

Plain Java vs JADE framework in terms of multi-agent development

If the task is to build a multi-agent system (for example, a benchmark book-auction system) and there are two options: Build it using plain Java, where each agent is a thread + make use of native Java features Using JADE Java framework. What are…
Pavel H
  • 3
  • 2
0
votes
1 answer

Is this an acceptable algorithm for pedestrian motion that searches and mingles with "buddies" on its path to the goal?

I'll put my pseudocode here first, please advise regarding its validity according to real-world pedestrian motion, and how I can improve it. Premise: A turtle walk from its spawn point to the goal. On the way, it meets other turtles. Turtles of the…
Gannicus
  • 530
  • 1
  • 7
  • 26
0
votes
1 answer

How to make my NetLogo Model better? (code Strcuture)

I have a model which asks all agents once in go procedure and rest of producers start with a condition, if the agent has that condition will do the tasks. To go ask agents [ Task1 TASK 2 ] end To Task1 if condition…
Marzy
  • 1,884
  • 16
  • 24
0
votes
1 answer

Emergent Property of JADE agent

We have to demonstrate an agent system for our assignment, we have to demonstrate following agent features Emergent Property Adaptability Butterfly Effect (small change in locally, make global huge change) We are going to use JADE as a agent…
user1479203
  • 437
  • 1
  • 8
  • 16
0
votes
1 answer

JADE: Scheduling behaviours

I am teaching myself JADE and was wondering whether there is an easy way to schedule behaviours in such a way that one agent behaviour won't be executed until all other agents have previously finished their behaviour cycles? For example, assuming I…
JB2
  • 1,587
  • 2
  • 24
  • 40
-1
votes
2 answers

ROS/ROS2 for multi agent system

Does anybody know how to use ROS/ROS2 for the multi-agent system? I know there are other software for multi agent, but I heard that ROS is suitable for this. Does anybody know the specific ideas?
james_66
  • 1
  • 5
-1
votes
1 answer

Is there any OpenAI Gym compliant interface implementation for continuous action spaces?

Is there any OpenAI Gym compliant interface implementation for continuous action spaces? If so, does it support multi-agent environments? I'm working on multi-agent DDPG implementation, but I couldn't find the suitable baseline environment.
-1
votes
1 answer

How do I make a reinforcement learning agent in Java?

I have a challenge that my teacher gave to beat an army of his soldiers on a 18x24 grid, with random obstacles placed on the board. The game is turn based and I have an army of 50 soldiers, each of which needs to either move or attack on their…
1 2 3
10
11