Tagged Questions
The agents tag has no wiki summary.
13
votes
1answer
1k views
How Clojure's agents compare to Scala's actors?
I wrote a simulation of the Ring network topology in Scala (source here) (Scala 2.8 RC7) and Clojure (source here) (Clojure 1.1) for a comparison of Actors and Agents.
While the Scala version shows ...
7
votes
1answer
789 views
Map Reduce with F# agents
After playing with F# agents I tried to do a map reduce using them.
The basic structure I use is:
map supervisor which queues up all the work to do in its state and receives work request from map ...
6
votes
4answers
480 views
Multithreaded bouncing balls program using agents in Clojure
I have written a multithreaded bouncing balls program in clojure. After starting the animation thread, I do-
(send-balls)
to start the bouncing balls threads. The balls dont move and this is ...
6
votes
1answer
420 views
What is the difference between Clojure's “send” and “send-off” functions with respect to dispatching an action to an agent?
The Clojure API describes these two functions as:
(send a f & args) - Dispatch an action to an agent. Returns the agent immediately. Subsequently, in a thread from a thread pool, the state of ...
6
votes
1answer
393 views
Is it reasonable to view highly autonomous actors as agents?
Coming from an academic background in mutli-agent systems (developed in Java using JADE) I have only been peripherally aware of the Actor concurrency paradigm. Now that I've started exploring Scala I ...
3
votes
1answer
184 views
How can I stop a specific agent in Clojure? When are their states garbage-collected?
If an agent is working through its queue in the background in Clojure, how can I stop it without stopping all agents?
When I am finished with an agent and I let it fall out of scope AND it finishes ...
2
votes
2answers
103 views
Access current document and display messagebox from agent called via lotusscript from UI
I have an agent with the following code:
Sub Initialize
MessageBox "AgentStart"
Print "AgentStart"
Dim ws As New NotesUIWorkspace
Dim s As New NotesSession
Dim db As ...
2
votes
4answers
287 views
Controlling Java and Lotusscript agents
I created 2 agents, one made of Java and another made of Lotusscript. The java agent is scheduled to run every 5 minutes, while the lotusscript agent is scheduled to run every 15 minutes. Therefor ...
2
votes
2answers
295 views
Akka framework (Scala) - Agents to store large complex state
I recently discovered the akka framework and felt it was a good match for one of my projects. I must say I'm very impressed with it so far.
In my project, I need to have 1M+ entities receive state ...
2
votes
1answer
690 views
building Agents in c#
Is there anything like JADEX or JADE in C# or C++? I am doing a project on agents and so far I can't find anything like JADEX for building BDI agents in C#. Anything in C# that I have found is for ...
2
votes
2answers
64 views
High Granularity Adaptive Society of Agent Software?
I was thinking about how our society incentivizes behaviors by a collection of free individuals, so that the work of those individuals fulfils the requirements of the society as a whole. For example, ...
1
vote
2answers
195 views
Clojure Agent question - using send-off
I have a couple of questions about the following code:
(import
'(java.awt Color Graphics Dimension)
'(java.awt.image BufferedImage)
'(javax.swing JPanel JFrame))
(def width 900)
(def height 600) ...
1
vote
1answer
178 views
Python and Agent Simulation/Visualization Environments
I am trying to end my dependence on Matlab and have turned to Python. I am soon to begin work implementing machine learning (neural nets/SVMs) in agents (simulate ship traffic). I need a machine ...
1
vote
3answers
288 views
Twitter Streaming API recording and Processing using Windows Azure and F#
A month ago I tried to use F# agents to process and record Twitter StreamingAPI Data here. As a little exercise I am trying to transfer the code to Windows Azure.
So far I have two roles:
One ...
1
vote
1answer
219 views
unbounded_buffer, _CrtSetDbgFlag and memory leaks
I am trying to use one of the new features - asynchronous agents library. I just added a
unbounded_buffer m_myDataBuffer;
to my C++ class, nothing more - no agent running yet.
To enable memory leak ...
1
vote
2answers
471 views
JADE (Java) - Changing Agent Container
Is there a way to reassign agents to a different container or will I have to create a new container and then create all new instances of the agents within the new container?
I have done a lot of ...
1
vote
3answers
289 views
Most suitable database package for use with JADE
I'm using JADE (Java Agent DEvelopment Framework) and need to set up a database back end.
Does anyone have any recommendations for which database system would work well with the framework?
0
votes
0answers
18 views
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 ...
0
votes
1answer
24 views
JADE IPMS Inter-Platform Agent Migration
I'm using IPMS with Jade for inter-platform agent migration. I'm using Jade 3.6 with IPMS 1.2. I have enabled the services on both slave1 (the original platform) and on slave2 (the target platform). ...
0
votes
0answers
22 views
Visual Studio 2010 Load Test - set test id constant and have all agents use it
I have a load test set up that writes test result data to a database (this is apart from the regular LoadTest2010 db that the test framework uses). At the beginning of each load test that I run, I ...
0
votes
2answers
46 views
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 ...
0
votes
3answers
84 views
NotesAgent.Run return value
I have an agent that runs other agents (let's call these 'sub-agents' for my purpose) .Each time the agent run, it logs it's actions, whether it ran successfully or generated an error. What I want now ...
0
votes
1answer
58 views
Is there any Agent Development framework for Objective-C or C++?
Like JADe, but not for Java. Is there such a thing?
0
votes
0answers
104 views
Jade message queue
Hi
I have 3 agent A,B,C
A send message to B
B get message from A and then send message to C
I did this 2 behavior in B by using Sequential Behavior
but when I try to print the message in C it is Null ...
0
votes
0answers
62 views
How to export jadex agent into jar file?
Any one got the idea how to export a jadex agent file become a jar file which can run in any pc?
let us use the example in jadex, how we export those example agent in jadex become runable file? those ...
0
votes
1answer
63 views
the paradigm of the future (agents vs SOA) [closed]
I have to decide what course I want to take in university between agents oriented development or SOA.
Which one would you suggest? Which one do you think it's going to become more popular in the ...
0
votes
1answer
323 views
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 ...
0
votes
1answer
395 views
Twitter stream api with agents in F#
From Don Syme blog (http://blogs.msdn.com/b/dsyme/archive/2010/01/10/async-and-parallel-design-patterns-in-f-reporting-progress-with-events-plus-twitter-sample.aspx) I tried to implement a twitter ...
0
votes
1answer
169 views
How to read text file in JADE
I am stuck in putting the Jave text file read code in JADE GUI. Please assist.I.e. Show using a simple code. I am new to Jade but experienced in Java coding.
0
votes
1answer
245 views
IP addresses of agents registered with the Main Container in JADE?
I have a website at the back end of which I have a JADE main container running. Multiple machines can register with this main container. So, I want to know if the JADE API supports getting the IP ...
-1
votes
1answer
170 views
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?
Thanks!