多代理系统中代理的行为?
我的项目中有请求代理和几个资源代理。我创建了一个代理应用程序,每次运行该应用程序时我都会得到一个结果。这意味着我一步步调用方法,而不是按随机顺序访问这些行为。如何在不使用随机的情况下在玉石中实现这种随机行为?因为我的主管不喜欢在代理行为中使用随机。
I have request agent and several resource agents in my project. I created a agent application and when I run this application every time I got one result. thats mean I call methods step by step without going accessing these behaviours in random order. How can I implement this random behaviour in jade without using random? Because my supervisor does not like to use Random in Agent behaviour.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您有一个用 Jade 实现的确定性多代理系统,并希望通过随机行为访问使其变得不可预测。您可以将代理行为实例化为 DelayBehaviour具有随机访问时间。每次系统运行时都需要更改随机种子;否则,它仍然是确定性的。因此,系统每次运行时,每个行为都有不同的随机执行时间。
请参阅《JADE 教程和入门》第 6 章,获取有关它的综合文档:
延迟行为
独立随机生成器
如果您的主管不喜欢“随机”这个词,您可以将这种方法称为“非确定性行为调用(NDBC)”,但无论如何它都是随机的。
You have a deterministic multi-agent system implemented in Jade and want to make it into something unpredictable through a random behavior access. You can instantiate the agent behaviors as DelayBehaviour with random access time. You need to change the random seed each time the system runs; otherwise, it will still be deterministic. Therefore, each time the system runs it has different random execution time for each behavior.
Look at the JADE Tutorial and Primer chapter 6 for a comprehensive documentation about it:
DelayBehaviour
Independent Random Generators
If your supervisor does not like the word Random you can call this approach "not deterministic behavior calls (NDBC)", but it is random anyway.