永发信息网

请高人随便给一段C#中规则推理的代码范例

答案:1  悬赏:10  手机版
解决时间 2021-07-31 19:05
  • 提问者网友:锁深秋
  • 2021-07-31 08:23
要求有规则类在其中,急用!!
最佳答案
  • 五星知识达人网友:长青诗
  • 2021-07-31 08:56

规则在 rules.txt中


目前只支持 if .... then .
then后只有一个项 不能用^

~ 表示否定

^ 表示并且



规则例子


if A1 then B1 ;
if ~ A1 then ~ B1 ;
if 干性皮肤 then 洗脸 ;
if 干性皮肤 then 防晒 ;
if 冬天 then ~ 防晒 ;
if 冬天 then 保湿 ;
if 冬天 ^ 干性皮肤 then 用大宝 ;


if 保湿 then 用大宝 ;



程序调用方法


expert.LoadRule("rules.txt"); //导入规则库



List<string> conditions = new List<string>();
conditions.Add("冬天");
conditions.Add("干性皮肤"); //前提

List<int> conditionState = new List<int>();
conditionState.Add(1);
conditionState.Add(1); // 1表示对应的前提确定成立 -1表示对应的前提确定不成立
List<string> conclusions = new List<string>(); //保存结论
List<int> conclusionState = new List<int>(); //判断结论是成立还是不成立
expert.Deduce(conditions, conditionState, ref conclusions, ref conclusionState);

我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯