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

Netlogo - updating outlinks with turtles outside the network

I need to learn NetLogo rather quickly, so I turned here for help. I have spent quite a bit of time trying to solve this issue but I think anyone a bit more experienced will be able to help. I am creating a network of influence for turtles, that…
lomper
  • 379
  • 1
  • 12
0
votes
0 answers

gluegen.jar ; error while compiling zip file

I am trying to set up MASON multi agent simulation software on OSX which requires me to install Java3d libraries. I have installed gluegen.jar from http://jogamp.org/deployment/. While compiling, it gives the following error error reading…
0
votes
1 answer

making my multi-agent environment by deep reinforcement learning

I should make my own environment and apply dqn algorithm in a multi-agent environment. I have 4 agents . Each state of my environment has 5 variables state=[p1, p2, p3, p4,p5], at each time step,we update the different parameters of all states.…
0
votes
1 answer

JADE Multi-agent adding elements into JSON Array

I am having a problem with adding elements to JSON array iteratively using JADE Multi agent platform. For example, the original JSON array was {["a","b","c]}. I want my result to be {["a","b","c","1","2"]}. The JSOn Array element adding should be…
Anonymous
  • 3
  • 2
0
votes
1 answer

How to add agents to a running MAS in Jason?

I want to add new Jason agents to an existing MAS which is already running. Is it possible?
0
votes
1 answer

Use proxy class extends Object to exchange data between agents

I want to implement multi agent system and need exchange data, between 2 agent. So I want agent1 send to agent2 some data. According to my research, in java, could be used to proxy class and use puto2aobject method to transfer data to another agent…
0
votes
2 answers

How two agents communicate undirectly through a memory sharing in multi agent systeme

Communication between agents in multi agent system MAS can be done directly with messages changing ( send and receive ), or indirectly throug a memory sharing so agents can write and read informations from the memory. I have to implement the second…
0
votes
1 answer

Model discrete system in Netlogo

I want to simulate n vehicles. Each vehicle is represented by a first discrete model: P_i[k+1] = P_i[k] + T*v_i[k] While P_i[k+1], P_i[k] respectively the position of vehicle i at sampling time (k+1)T and kT T is the sampling time v_i[k] is velocity…
realgalois
  • 1
  • 1
  • 2
0
votes
1 answer

rule-based agent or utility-based agent

I am going to develop an agent system using JADE to handle dynamic situations in selecting optimal electric vehicle charging station by the electric vehicle owner. To simulate this system, which agent can successfully handle dynamic situations,…
0
votes
1 answer

CArtAgO java.rmi.ConnectException Connection refused in a distributed environment

I am trying to connect remotely to a JaCaMo application by CArtAgO infrastructure. In the server my jcm file is like this: mas testsvr { agent bob workspace world platform: cartago(infrastructure) class-path: lib …
0
votes
1 answer

How to stopMAS properly in JaCaMo?

I have a JaCaMo project where I'd like to stop the system when a believe is added as follow: +winner <- .stopMAS. I am doing like this in a pure Jason project, but in this JaCaMo project where I have an organization, after this stopMAS command an…
Cleber Jorge Amaral
  • 1,316
  • 13
  • 26
0
votes
1 answer

Is there a way to set to do not show "MAS Console" and "Organisation Inspector" in JaCaMo

In JaCaMo, is there a way to do not show the console windows, I mean, "MAS Console" of Jason and "Organization Inspector" that shows Moise configurations? My jcm file is as follow: mas auctionAEO { agent a : auctioneerAEO.asl { beliefs:…
Cleber Jorge Amaral
  • 1,316
  • 13
  • 26
0
votes
1 answer

In JaCaMo JCM file, how to deal with multiple instances in organisation configurations?

I am trying to create multiple agents using "instances" which makes easier when we need to increment the number of instances many times. It is clear how to do it in "agent level" by jcm file. But the point is how to do it in "organisation level"…
Cleber Jorge Amaral
  • 1,316
  • 13
  • 26
0
votes
1 answer

Unable to run JaCaMo project: how to configure it properly?

I already have a jason project which is running well in Jason and now I am trying to run using JaCaMo. I have both plugins (Jason and JaCaMo) in eclipse. What I am trying to do is in a simple way to compile this current Jason project in JaCaMo for…
Cleber Jorge Amaral
  • 1,316
  • 13
  • 26
0
votes
1 answer

java.lang.IllegalMonitorStateException in CArtAgO (JaCaMo) on the first execution of execLinkedOp

I am experiencing a java.lang.IllegalMonitorStateException, it happens only once, in the first execLinkedOp call. I think I am missing some Jason procedure that should synchronize well cartago functions. Probably execLinkedOp is regenerating some…
Cleber Jorge Amaral
  • 1,316
  • 13
  • 26