状态机本体/用于设计状态机的其他工具
我有一个关于状态机的问题。 Ontology可以用于状态机吗?我有一个实时应用程序,因此性能是一个问题。其表现又将如何。设计状态机的替代方案有哪些?是否有专门用于为 .Net 创建状态机的工具?我查看了以下链接,但不知道它的稳定性如何。
http://people.cs.aau.dk/~dolog/fsm/
谢谢。
I have a question regarding state machines. Can Ontology be used for state machines. I have a real-time application so performance is an issue. How will be its performance. And what are the alternatives for designing an state machine. Is there any tool specific for creating state machine for .Net. I had a look at the following link but do not know how stable it is.
http://people.cs.aau.dk/~dolog/fsm/
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在我看来,本体论更多的是一个抽象概念,它与你想要实现的目标存在一些问题。本体论有一个哲学部分,它使观点和人类意识形态影响结果。
状态机更加黑白分明,而本体则有很多灰色地带。
但如果您正在寻找一些稳定的良好状态机代码,我建议您应该查看 StateProto 和 QHSM。开源项目位于:http://code.google.com/p/gqhsm/
如果 C# 代码的性能出现问题,您可以将 Mono(C# 编译器)编译为本机模式。
In my opinion, Ontology is more of an abstract concept that has some issues with respect to what you are trying to accomplish. Ontology has a philosophical part to it that makes opinion and human ideologies effect the outcome.
State Machines are more black and white, where Ontology has a lot of gray areas.
But if you are looking for some good state machines code that is stable, I would recommend you should check out StateProto and QHSM. Open source project is here: http://code.google.com/p/gqhsm/
If performance of the c# code becomes and issue, you can have Mono (C# compiler) compile to native mode.