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

14
LINES

< > BotCompany Repo | #1007663 // web_candidateWithMostConfirms

JavaX fragment (include)

static S web_candidateWithMostConfirms(L<Lisp> facts, S pivot, L<S> candidates) {
  new Best<S> best;
  for i over candidates: {
    S candidate = candidates.get(i);
    new Web web;
    web.newNode(pivot, candidate);
    for (Lisp fact : facts)
      web.relation(fact);
    int score = web_countConfirms(web, facts);
    if (score > 0)
      best.put(candidate, score);
  }
  ret best.get();
}

download  show line numbers  debug dex  old transpilations   

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

No comments. add comment

Snippet ID: #1007663
Snippet name: web_candidateWithMostConfirms
Eternal ID of this version: #1007663/1
Text MD5: 9325fdadac1470b18ea2283ce9fea025
Author: stefan
Category: javax / a.i.
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2017-03-30 22:05:46
Source code size: 408 bytes / 14 lines
Pitched / IR pitched: No / No
Views / Downloads: 392 / 407
Referenced in: [show references]