您不需要定义外部函数。如果您希望 CLIPS 调用 C 函数,那就是这样。
查看本文档中的“4.4.4 CreateFact”部分:
http://clipsrules.sourceforge.net/documentation/v624/apg.htm
它展示了如何在 CLIPS 环境中断言新的事实。前面的 4.4.3 节给出了一个如何将新字符串断言到 CLIPS 中的示例。我还没有测试过字符串断言,但我可以确认 4.4.4 示例可以与 deftemplate 一起使用。
例如,创建一个文本文件“foo.clp”:
(deftemplate foo
(slot x (type INTEGER) )
(slot y (type INTEGER) )
)
(defrule IsOne
?f<-(foo (x ?xval))
(test (= ?xval 1))
=>
(printout t ?xval " is equal to 1" crlf)
)
(defrule NotOne
?f<-(foo (x ?xval))
(test (!= ?xval 1))
=>
(printout t ?xval " is not equal to 1" crlf)
)
并创建一个C程序“foo.c”
#include <stdio.h>
#include "clips.h"
int addFact(int result)
{
VOID *newFact;
VOID *templatePtr;
DATA_OBJECT theValue;
//==================
// Create the fact.
//==================
templatePtr = FindDeftemplate("foo");
newFact = CreateFact(templatePtr);
if (newFact == NULL) return -1;
//======================================
// Set the value of the x
//======================================
theValue.type = INTEGER;
theValue.value = AddLong(result);
PutFactSlot(newFact,"x",&theValue);
int rval;
if (Assert(newFact) != NULL){
Run(-1);
rval = 0;
}
else{
rval = -2;
}
return rval;
}
int main(int argc, char *argv[]){
if (argc < 2) {
printf("Usage: ");
printf(argv[0]);
printf(" <Clips File>\n");
return 0;
}
else {
InitializeEnvironment();
Reset();
char *waveRules = argv[1];
int wv = Load(waveRules);
if(wv != 1){
printf("Error opening wave rules!\n");
}
int result = 1;
addFact(result);
result = 3;
addFact(result);
}
return 0;
}
运行:
foo foo.clp
这可能有点矫枉过正,但我认为它可以完成工作!