Questions tagged [agents-jade]

JADE - Java Agent Development framework

JADE is a software framework fully implemented in Java, that simplifies the implementation of multi-agent systems through a middle-ware that complies with the FIPA specifications.

JADE provides:

  • An environment where JADE agents are executed;
  • Class Libraries to create agents using heritage and redefinition of behaviors;
  • A graphical toolkit to monitor and manage the platform of agents.

Official website: http://jade.tilab.com/

Online documentation: http://jade.tilab.com/documentation/tutorials-guides/

Latest Version: 4.5 (released: 08/06/2017)

279 questions
0
votes
1 answer

Import a JADE file to NetBeans IDE?

How to import a JADE example project (already done the project) into NetBeans IDE? I have tried to import it. But it was not working. How to do it correctly? I am a beginner to JADE.
0
votes
1 answer

how to link JavaFx with Jade framework for agent

i can not linked javaFx with agent class , i want to pass the instance value of javafx application to agent class for interacting with GUI of javaFx and the Inverse From agent class i want to pass the instance object of current agent to JavaFx…
Tarfa Ali
  • 45
  • 7
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

Enum becomes null after call

public Boolean performAction(AppleCollectorAgent agent, data.ActionType action) { if(agent != null && action != null) { actions.put(agent, action); } else { System.out.println("GRID: "+agent+" performs "+action+"…
Loy
  • 103
  • 11
0
votes
1 answer

I need answer of one jade agent to depend on information from others and don't know how to do it

I'm new to jade and I have 5 agents in eclipse that have formula for finding an average and the question is how to send information from agent to this formula for calculation? I'll be glad if someone can help me with this. For example, there is one…
Lera
  • 1
  • 1
0
votes
1 answer

difference between ISLOCALNAME and ISGUID in AID constructor

i want to know what is the difference between ISLOCALNAME and ISGUID 1) `AID df = new AID("agent1", AID.ISLOCALNAME); System.out.println(df.getName());` 2)`AID df = new AID("agent1", AID.ISGUID); System.out.println(df.getName());` thank you…
Light Yagami
  • 17
  • 1
  • 1
  • 4
0
votes
1 answer

XMPP vs JMS as a message carrier

I'm considering using either XMPP or JMS as the transport for exchanging messages between software agents. (I'm working with the JADE agent system.) The main problem I need to solve is to be able to send or deliver messages from/to agents which may…
0
votes
1 answer

Getting list of agents in container in jade

How can i get list of agents (their names like "da0@ip" etc.) in specified container in jade in java? I've looked and only thing i can find is a list of ALL agents in all containers. I'm not really into jade, it's just a school project so any advice…
Mate
  • 192
  • 2
  • 18
0
votes
3 answers

Jade Agent Communication: Making the agent reply

I am doing a project MAS project on jade. I have 2 agents one to send and one to receive. How do i make agent 1 send a message to agent 2, for example "1000", and only when agent 2 receives the "1000", agent 2 will reply with for example, "turn…
newtojade
  • 1
  • 1
0
votes
1 answer

get agent methods by using this.myagent in a Behaviour

I have one agent with its services that implements a CyclicBehaviour were and I wanna see those services or use its methods, how can I do it? for example Agent: public class agent1 extends Agent { int[] numbers= {11, 20, 40}; public void setup() { …
0
votes
1 answer

Could you suggest any of JADE's example?

Recently I'm eager to learn Repast Symphony and JADE after acquiring Netlogo. However, there were not enough examples to illustrate how this actually works on the Internet. And official documentation was not that helpful in enhancing understanding…
Hannah Lee
  • 75
  • 11
0
votes
1 answer

SEVERE: class not found error with cmd

I am using Intellij Idea to run a jade program. I have the ".jar" files in the environment variable "classpath". When I run the program from the IDE it works fine and finds the classes defined by me. But when I run the program from CMD it…
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
1 answer

Java JADE add Cyclic Behaviour

How I can add CyclicBehaviour when handleElapsedTimeout() (timeout) and start again? This is my task for school. I will be very grateful if someone give me a advice. Here's my code: package test3; import jade.core.Agent; import…
didsun
  • 111
  • 1
  • 3
  • 11