【发布时间】:2017-06-15 12:39:49
【问题描述】:
CLIPS 中的 Retract 命令将删除 CLIPS 中的一个事实。 什么是 C 代码中的等效 API。
clips.retract 不起作用
【问题讨论】:
-
显示一些代码。否则没有答案。
标签: clips
CLIPS 中的 Retract 命令将删除 CLIPS 中的一个事实。 什么是 C 代码中的等效 API。
clips.retract 不起作用
【问题讨论】:
标签: clips
用于 CLIPS 的所有 C API 都记录在 CLIPS advanced programming guide 中。查看第 105 页:
4.4.23 EnvRetract
int EnvRetract(environment,factPtr);
void *environment;
void *factPtr;
Purpose:
Retracts a fact from the CLIPS fact-list (the C equivalent of the
CLIPS retract command).
希望这能回答你的问题
【讨论】: