Questions tagged [agents]

113 questions
1
vote
0 answers

Access Violation in PPL Pipeline

i'm using asynchronous agent library to implement simple image processing pipeline i have three agents CLoadBitmapAgent CConvertToGrayAgent CSaveBitmapAgent every run() function as follow void CLoadBitmapAgent::run() { Bitmap *pSourceBitmap =…
Ma7moud El-Naggar
  • 548
  • 1
  • 6
  • 18
1
vote
2 answers

Different User Agents in the browsers

I have noticed that some browsers via a build in development feature allow you to choose different user agents. Does this mean that they change their rendering engine? Say for example, if I set Safari's user agent to internet explorer - will that…
jwknz
  • 6,598
  • 16
  • 72
  • 115
1
vote
1 answer

What are interesting usages of JADE?

I'm looking for JADE projects which are noteworthy but I wasn't able to find such a list on the Internet. Could anybody provide some?
MartyIX
  • 27,828
  • 29
  • 136
  • 207
1
vote
1 answer

Asterisk 13.22.0 - No channel type registered for 'Agent' when queue rings

With the below config, I just keep gettings this in the Asterisk 13.22.0 CLI: WARNING[15872][C-00000051]: channel.c:6343 ast_request: No channel type registered for 'Agent' whenever a caller gets sent to that agent queue with logged in agents…
Stefan
  • 316
  • 2
  • 16
1
vote
1 answer

How to limit the amount of prey “eaten’ by predator and recalculate the residues?

In my program, each turtle (namely glucose and bacteria) has their own variable called mass. The setup procedure states that the initial mass of glucose and the bacteria is 1 mmol. The to-go procedure says that the glucose will be hydrolyzed and…
1
vote
2 answers

Monitoring Agent for Sensu, Librato

Can we have a single agent/clients for following monitoring tools, Sensu Librato Nagios NewRelic Thank you.
1
vote
1 answer

Do JASON internal actions work with Spring Autowire?

I am developing an application using JADE, JASON (Agent frameworks) and Spring Boot. Basically what I have is a JADE Container where Both Jade and Jason Agents are registered in. And Since I am using Spring, I tend to Autowire services. In that case…
Damith
  • 740
  • 4
  • 12
1
vote
1 answer

How to use a calculated turtle-owned variable A to calculate a different turtle-owned variable B

In my program, each turtle (namely glucose and bacteria) has their own variable called mass. The setup procedure states that the initial mass of glucose and the bacteria is 1 mmol. The to-go procedure says that the glucose will be hydrolyzed and…
1
vote
2 answers

AnyLogic agent-based modelling: ClassCastException

I am working with an agent-based simulation of an infectious disease epidemic in AnyLogic. I have two agents types in my model- Person and Building. I'm trying to write a function that counts the number of infectious contacts that the agent type…
user3qpu
  • 67
  • 1
  • 10
1
vote
2 answers

How can I create territories for several groups of agents in netlogo?

I'm very new to Netlogo, and this is my very first post in a forum. I need to create animal agent groups which move in habitats or territories. The territories can overlap. More precisely I need male agents that move in different territories and…
M.Dkmn
  • 13
  • 2
1
vote
1 answer

Vsts agent is not registering on a win 2012 R2 server

I am trying to install a VSTS agent on a win 2012 R2 server but it is failing with "An error occurred while sending the request. failed to connect " I am not sure of what is going on here. I am behind a corporate firewall. But when i tried it on my…
1
vote
0 answers

Modifying existing classes and injecting new ones

I'm working on a project that requires I use an agent to transform classes, I also need to add new classes. this all has to be done over the network, the end user downloads a jar that downloads classes to inject into the class loader and modify…
Marshall Walker
  • 343
  • 1
  • 10
1
vote
1 answer

Build agent to be available only during certain time duration

There are three build agents that can run my TC configuration. I want only 1 of those agents to run the builds during the day, so that the other two system can be used for manual testing. After 6Pm in eve, as these will not be used for manual…
1
vote
1 answer

Launch JADE Agents from an Agent into another Container

So i have developed a multiagent system that is comprised of some administration agents and some control agents. I have a inprocess launcher of the JADE platform where I create two new non-main containers (one for admin agents and the other for…
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…