这个 DRL 文件有什么问题?
当尝试解析以下文件时,出现错误
[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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 eval 应该可以:
但我建议使用事实而不是全局变量来插入这些条件。
Using eval should work:
But I 'd recommend to use facts instead of globals to insert those conditions.