Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

33
LINES

< > BotCompany Repo | #1017806 // applyNLLogicFacts_v4 - only calls onRuleFired

JavaX fragment (include)

static new ThreadLocal<Bool> applyNLLogicFacts_v4_verbose;

svoid applyNLLogicFacts_v4(S input, VF2<IfThen, NLLogicChecker_v2.Matching> onRuleFired) {
  applyNLLogicFacts_v4(input, onRuleFired, mL_facts());
}

svoid applyNLLogicFacts_v4(S input, VF2<IfThen, NLLogicChecker_v2.Matching> onRuleFired, LS facts) {
  applyNLLogicFacts_v4(input, onRuleFired, facts, ai_mL_parsedLogicExamples2());
}

svoid applyNLLogicFacts_v4(S input, VF2<IfThen, NLLogicChecker_v2.Matching> onRuleFired, LS facts, L<IfThen> rules) {
  new NLLogicChecker_v2 c;
  c.matcher = new NLStringMatcher_dollarVars;
  addAll(c.facts, facts);
  c.input = input;
  
  applyNLLogicFacts_v4(c, onRuleFired, rules);
}

svoid applyNLLogicFacts_v4(NLLogicChecker_v2 c, VF2<IfThen, NLLogicChecker_v2.Matching> onRuleFired, L<IfThen> rules) {
  c.rules = rules;
  for (IfThen rule : rules) pcall {
    new NLLogicChecker_v2.Matching m;
    m.verbose = isTrue(applyNLLogicFacts_v4_verbose!);
    if (m.verbose)
      print("Checking rule: " + rule);
    if (c.checkRule(rule, m)) {
      print("Matched " + quote(c.input) + " with rule " + quote(rule));
      printStruct(m.matches);
      callF(onRuleFired, rule, m);
    }
  }
}

Author comment

Began life as a copy of #1017761

download  show line numbers  debug dex  old transpilations   

Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, irmadwmeruwu, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1017806
Snippet name: applyNLLogicFacts_v4 - only calls onRuleFired
Eternal ID of this version: #1017806/5
Text MD5: aec3e21a0daa3e7fbfb96cff69b95822
Author: stefan
Category: javax / a.i.
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2018-08-25 20:36:02
Source code size: 1222 bytes / 33 lines
Pitched / IR pitched: No / No
Views / Downloads: 271 / 334
Version history: 4 change(s)
Referenced in: [show references]