面向代理的编程代码示例
Agent Oriented Programming code sample
我目前正在学习面向代理的编程,
而且我很难找到用任何语言编写的示例代码,这些代码是为了在实际编程模型中演示这个想法而编写的。
谁能提供一个link写了一段简单的代码来演示AOP的思想?
首先,让我们对什么是AOP有一个共同的认识。根据 Yoav Shoham (1993) 撰写的 "Agent-oriented programming" 论文,我们有:
Agent-oriented programming (AOP), can be viewed as a specialization of
object-oriented programming. The state of an agent consists of
components such as beliefs, decisions, capabilities, and obligations;
for this reason the state of an agent is called its mental state. The
mental state of agents is described formally in an extension of
standard epistemic logics: beside temporalizing the knowledge and
belief operators, AOP introduces operators for obligation, decision,
and capability. Agents are controlled by agent programs, which include
primitives for communicating with other agents. In the spirit of
speech act theory, each communication primitive is of a certain type:
informing, requesting, offering, and so on.
Jason 很好地实现了这一概念,在 Rafael H. Bordini、Jomi Fred Hübner 和 Michael Wooldridge(2007 年)所著的 "Programming Multi-Agent Systems in AgentSpeak using Jason" 一书中对此进行了详尽的解释。
一个用于查看 AOP 的应用程序可能是这个小应用程序:
https://github.com/cleberjamaral/beersponsor
在这个简单的应用程序中有 3 个代理,一个机器人,一个(机器人的)所有者和一个赞助商。这个想法是,主人想喝啤酒,而机器人会带来他想要的所有啤酒。但是在一些交付后冰箱 运行 没有啤酒,所以,一个 Java IDE 被启动,用户可以点击向这个懒惰的家伙赞助啤酒。
到 运行 你可以下载 Jason 和 运行 JEdit (Java -jar JEdit.jar),它是 Jason 的编程 IDE。
https://sourceforge.net/projects/jason/
您可以在此处获得有关此简单实现的更多详细信息:http://jasonagents.blogspot.com.br/2015/09/exemplo-de-integracao-com-interface.html
我目前正在学习面向代理的编程, 而且我很难找到用任何语言编写的示例代码,这些代码是为了在实际编程模型中演示这个想法而编写的。
谁能提供一个link写了一段简单的代码来演示AOP的思想?
首先,让我们对什么是AOP有一个共同的认识。根据 Yoav Shoham (1993) 撰写的 "Agent-oriented programming" 论文,我们有:
Agent-oriented programming (AOP), can be viewed as a specialization of object-oriented programming. The state of an agent consists of components such as beliefs, decisions, capabilities, and obligations; for this reason the state of an agent is called its mental state. The mental state of agents is described formally in an extension of standard epistemic logics: beside temporalizing the knowledge and belief operators, AOP introduces operators for obligation, decision, and capability. Agents are controlled by agent programs, which include primitives for communicating with other agents. In the spirit of speech act theory, each communication primitive is of a certain type: informing, requesting, offering, and so on.
Jason 很好地实现了这一概念,在 Rafael H. Bordini、Jomi Fred Hübner 和 Michael Wooldridge(2007 年)所著的 "Programming Multi-Agent Systems in AgentSpeak using Jason" 一书中对此进行了详尽的解释。
一个用于查看 AOP 的应用程序可能是这个小应用程序: https://github.com/cleberjamaral/beersponsor
在这个简单的应用程序中有 3 个代理,一个机器人,一个(机器人的)所有者和一个赞助商。这个想法是,主人想喝啤酒,而机器人会带来他想要的所有啤酒。但是在一些交付后冰箱 运行 没有啤酒,所以,一个 Java IDE 被启动,用户可以点击向这个懒惰的家伙赞助啤酒。
到 运行 你可以下载 Jason 和 运行 JEdit (Java -jar JEdit.jar),它是 Jason 的编程 IDE。 https://sourceforge.net/projects/jason/
您可以在此处获得有关此简单实现的更多详细信息:http://jasonagents.blogspot.com.br/2015/09/exemplo-de-integracao-com-interface.html