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
1
vote
1 answer

Jade content manager calling default constructor upon message content extraction

I am sending a message containing a concept from my ontology, between two agents. The Concept object is encapsulated inside an action, and encoded like so: SendAction sendObject = new SendAction ("action info", conceptObject); Action action = new…
Torantula
  • 177
  • 1
  • 13
1
vote
1 answer

How to make a 'shared volatile variable' with ZeroMQ?

I'm using ZeroMQ. I want a node B to subscribe to a node A. Node A will send ( PUB? ) values of some 'volatile variable' (say, the position of some object). 'Volatile' in this case means that node B only cares about the most recent value. The upshot…
Colin
  • 3,670
  • 1
  • 25
  • 36
1
vote
1 answer

How to do many-to-many pub sub relation

I have seen it mentioned that ZMQ supports a many-to-many PUB/SUB relation. In this case what I would like is to have multiple subscribers to multiple publishers, (this is for a common bus style application), however what I am confused about is how…
Cjen1
  • 1,826
  • 3
  • 17
  • 47
1
vote
1 answer

Distance between two different breeds of agents from the context of a particular agent

In my model there are three breeds of agents; people, bus-stops and workplaces. Each person is assigned a workplace (job) and chooses a bus-stop (chosen-bus-stop) from which to travel to work. I worked out how to find the distance between a…
skivvy
  • 57
  • 4
1
vote
1 answer

How to add rules in Jason while running

I am wondering how to add a new rule in Jason. In prolog it would be just something like: a :- b, c. In Jason I have tried something that was discussed in jason users list, with no success: a :- b & c. +a :- b & c. +(a :- b & c).
Jorge
  • 11
  • 7
1
vote
1 answer

Have a turtle follow a specific one from its neighbors

I have turtles with 0 < AD < 1, and with 0 < opinion < 1. Each turtle is linked (undirected) to a given number of others. I want turtles low in AD (< 0.3) to adopt the opinion of another one high in AD (> 0.7) belonging to their neighborhood of…
lomper
  • 379
  • 1
  • 12
1
vote
2 answers

Is it possible to have branches in a Blockchain?

I am using Blockchain to allocate tasks for agents in a multi-agent system. I wanted to know if it's possible to have branches in a Blockchain, If the answer is "yes", can a peers have different roles(miner or not miner) in each branch?
farshad1123
  • 325
  • 2
  • 10
1
vote
1 answer

Create an English Auction with AgentSpeak in Jason

I am a beginner in Jason and in Agentspeak.I am interesting in making an English Auction with one Auctioneer and two Bidders.I have created the following files, but when I run them, nothing happens.I do not know where the problem is.Can you help…
katios
  • 11
  • 2
1
vote
1 answer

ERROR in the transition system (act) Circumstance in JaCaMo / Jason

I am experiencing an error when trying to send an untell message. I have wrote a simple project to explain: When bob is sending an untell message an error in transition system is occurring. Is it possible to remove a belief by untell? So, how to…
Cleber Jorge Amaral
  • 1,316
  • 13
  • 26
1
vote
1 answer

Create multiple agents in the same container in JADE

Is it possible to create multiples agents in the same container (not Main-Container) in Java Agent Development Framework (JADE)? I tried using -agents parameter but it didn't work. Thanks in advance
hieuduy13
  • 29
  • 3
1
vote
1 answer

Jade behaviours scheduling

I'm studying Jade and I know that the behaviours scheduling is not preemptive, but what I have not understood is if every agent's behaviour must wait for the conclusion of the done() method of the previous behaviour? I'm asking because if I have a…
Qwerto
  • 265
  • 2
  • 10
1
vote
0 answers

Multi Agent system for Android devices

I'm planning on implementing a multi agent system for Android. I have already went through JADE and JaCa-Android. Both projects are obsolete. Can anyone who has worked with multi agent systems can suggest me a way to start the project? Thanks.
Vimbuddy
  • 166
  • 3
  • 19
1
vote
1 answer

Multi Agent Sysytem - JADE - exchanging arrays as a message

I'm developing a multi agent system via JADE in eclipse. I've managed to develop the code of exchanging messages between agents in different platforms, now I'm trying to make the agents send arrays to each other to be used in queries but couldn't…
1
vote
1 answer

Attaching action to Service in JADE

I'm a beginner in the development of multi agent systems in JADE, I've been reading some tutorials about it, but I still have a doubt, every tutorial show how to register o how to search a service in the DF, for what I know a service should be a…
Sredny M Casanova
  • 4,735
  • 21
  • 70
  • 115
1
vote
3 answers

JADE ContractNet and GUI problems

I have some problems with use of ContractNet (Interaction Protocol) and GUI with the use of JADE multiagent framework. In particular, in the override of handlePropose method. I know that my problem comes from the use of a GUI. Let me explain: My…
Gioce90
  • 554
  • 2
  • 10
  • 31