我使用python和Clips来解决问题,这就是我想要做的事情:
我希望从python加载一个.clp文件并运行它。我还需要根据数据库添加事实。所以.clp文件中会有规则,而我正在使用
clips.Load("myfile.clp")
加载我的文件。我被困在如何将事实断言到剪辑中。我还有一个可变的决赛片段,根据事实存储它的内容。我需要将它带回python以运行其他代码。
由于
答案 0 :(得分:0)
我假设您使用的是PyCLIPS。
import clips
def clips_callable(f):
def wf(*args, **kwargs):
if f(*args, **kwargs):
return clips.Symbol("TRUE")
else:
return clips.Symbol("FALSE")
clips.RegisterPythonFunction(wf, f.__name__)
@clips_callable
def pyprint(s):
print s
print "".join(map(str, s))
clips.Load("test.clp")
clips.Reset()
clips.Run()
# assert a fact.
a = clips.Assert("(order (part-id p1) (quantity 20))")
clips.Run()
test.clp
看起来像:
(deffunction MAIN::print ($?value)
(python-call pyprint ?value)
; (printout t ?value)
)
(deftemplate MAIN::order
(slot part-id)
(slot quantity)
)
我将@clips_callable
装饰器作为奖励包含在内,这使得从剪辑中调用python函数变得非常容易。