多代理系统中代理的行为?

发布于 2025-01-04 14:09:34 字数 131 浏览 0 评论 0原文

我的项目中有请求代理和几个资源代理。我创建了一个代理应用程序,每次运行该应用程序时我都会得到一个结果。这意味着我一步步调用方法,而不是按随机顺序访问这些行为。如何在不使用随机的情况下在玉石中实现这种随机行为?因为我的主管不喜欢在代理行为中使用随机。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自演自醉 2025-01-11 14:09:34

您有一个用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文