如何写好谓词(not Between)

发布于 2024-11-01 10:38:54 字数 300 浏览 1 评论 0原文

我编写代码如下

testb :-
    X::1..10,
    V1 = 3,
    V2 = 6,
    testbb(X,V1,V2),
    writeln(X).

testbb(X,V1,V2) :-
    (
      count(I,V1,V2),param(X,V1,V2) do 
      X#\=I 
    ).


?- testb.
Yes (0.00s cpu)
_385{[1, 2, 7 .. 10]}

它运行良好,但我认为它效率不高,

非常感谢:)

I write code follwing

testb :-
    X::1..10,
    V1 = 3,
    V2 = 6,
    testbb(X,V1,V2),
    writeln(X).

testbb(X,V1,V2) :-
    (
      count(I,V1,V2),param(X,V1,V2) do 
      X#\=I 
    ).


?- testb.
Yes (0.00s cpu)
_385{[1, 2, 7 .. 10]}

It works well, but i think it isn't efficient

Thanks very much :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

-残月青衣踏尘吟 2024-11-08 10:38:54

您可以通过以下方式将 X 的域限制在 V1V2 的范围之外:

not_between(X, Lower, Upper) :-
     % it is not the case that X is both greater and 
     % equal to Lower, and less than or equal to Upper: 
    #\ ((X #>= Lower) #/\ (X #=< Upper)).

替换您的 testbb/3not_ Between/3。此定义确保 X 无法准确地采用 LowerUpper 值;如果您希望将范围约束包含在 X 的域中,则可以使用范围约束 #<#>

这已经过测试并可与 SWI-Prolog 一起使用。要在 SWI-Prolog 文件中使用 CLP(FD),请确保在指令中导入源文件顶部的 CLP(FD) 库,如下所示:

:- use_module(library(clpfd)).

You could confine the domain of X to lie outside the range within V1 to V2 by:

not_between(X, Lower, Upper) :-
     % it is not the case that X is both greater and 
     % equal to Lower, and less than or equal to Upper: 
    #\ ((X #>= Lower) #/\ (X #=< Upper)).

Replace your testbb/3 with not_between/3. This definition ensures that X cannot take on Lower and Upper values exactly; you could use the range constraints #< and #> instead if you wish them to be included in the domain for X.

This is tested and working with SWI-Prolog. To use CLP(FD) in a SWI-Prolog file, make sure you import the CLP(FD) library at the top of your source file in a directive, like this:

:- use_module(library(clpfd)).
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文