gpt4 book ai didi

c++ - 在C程序中集成Prolog

转载 作者:行者123 更新时间:2023-11-30 17:22:17 26 4
gpt4 key购买 nike

我想用C++编写一个主程序,该程序将动态生成事实来建立知识库,然后该程序可以调用某些.pl中定义的规则 文件并获取结果。例如,main.c

int main()
{
//generate facts like
// blue(car), red(bike), etc
// do queries
PL_call( "consult( 'pred.pl' )" );
...
PL_call(goal_term, NULL);
}

pred.pl

whatisblue(X) :- blue(X).
whatisred(X) :- red(X).

我该怎么做?

我阅读了 C 接口(interface)上的 swi-prolog 手册,但只看到如何在 Prolog 中调用 C 模块或在 C 中调用 Prolog,我没有看到如何混合在 C 和 Prolog 中定义的谓词。是否可以?谢谢。

最佳答案

我现在不可能给出详细的答案,但总的来说,你的问题的答案是"is"。

只是,在C++中,使用C++接口(interface)。它比 C 简单得多。所以使用 PlCall、PlTermv 等...

问题是在 PlCall(s) 之前和之后正确绑定(bind)变量,以便您可以与 Prolog 交换值。

例如,为了简化结构化值的构建,请查看 these macros注释,谓词0,谓词1,...和结构1,结构2,...,或考虑

#define unary(X) PlTerm X; PlCompound X ## _t(#X, X);

允许输入 code

attrs2format_t::const_iterator p = attrs2format.find(k);
if (p == attrs2format.end()) {
// attributes documented here:
// http://www.swi-prolog.org/pldoc/doc_for?object=prolog_colour:syntax_colour/2

unary(colour)
unary(background)
unary(bold)
unary(underline)

// use unification to match list' elements
PlTail attrs(attr_list);
PlTerm attr;
...

您可以找到here关于 SWI-Prolog 接口(interface)的一些一般注意事项

关于c++ - 在C程序中集成Prolog,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28054166/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com