这个 DRL 文件有什么问题?

发布于 2024-10-20 05:07:04 字数 654 浏览 2 评论 0原文

当尝试解析以下文件时,出现错误

[10,4]:[ERR 101]第10行:4在规则“01”[17,3]中的输入“条件3”处没有可行的替代方案:[ERR 101]第17行:3在输入'处没有可行的替代方案规则“02”[17,17] 中的“条件 1”:[ERR 101] 第 17:17 行在规则“02”中的输入“条件 2”处没有可行的替代方案

package test;

global MessageProcessingResult result;
global Boolean condition1;
global Boolean condition2;
global Boolean condition3;

rule "01"
    when
        ( condition3 == false);     
    then 
        result.addErrorCode("ERROR_CODE1");
end

rule "02"
    when
        (condition1 && condition2);
    then
        result.addErrorCode("ERROR_CODE2");
end

此代码有什么问题?

预先感谢

德米特里

When trying to parse the following file, I get the error

[10,4]: [ERR 101] Line 10:4 no viable alternative at input 'condition3' in rule "01"[17,3]: [ERR 101] Line 17:3 no viable alternative at input 'condition1' in rule "02"[17,17]: [ERR 101] Line 17:17 no viable alternative at input 'condition2' in rule "02"

package test;

global MessageProcessingResult result;
global Boolean condition1;
global Boolean condition2;
global Boolean condition3;

rule "01"
    when
        ( condition3 == false);     
    then 
        result.addErrorCode("ERROR_CODE1");
end

rule "02"
    when
        (condition1 && condition2);
    then
        result.addErrorCode("ERROR_CODE2");
end

What's wrong with this code?

Thanks in advance

Dmitri

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

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

发布评论

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

评论(1

千年*琉璃梦 2024-10-27 05:07:04

使用 eval 应该可以:

when
  eval(condition3 == false)
then
  ...

但我建议使用事实而不是全局变量来插入这些条件。

Using eval should work:

when
  eval(condition3 == false)
then
  ...

But I 'd recommend to use facts instead of globals to insert those conditions.

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