Package com.bugyal.imentor.frontend.server

Source Code of com.bugyal.imentor.frontend.server.SubjectCorrelationScorer

package com.bugyal.imentor.frontend.server;

import java.util.List;

import com.bugyal.imentor.frontend.shared.SearchResult;
import com.bugyal.imentor.server.data.Participant;

public class SubjectCorrelationScorer implements Scorer {

  @Override
  public void applyScores(List<SearchResult> rList, Participant p) {
    for (int i = 0; i < rList.size(); i ++) {
      SearchResult result = rList.get(i);
      double score = result.getSubjects().size() + 0.0;
      result.applyScore(score);
    }
  }
}
TOP

Related Classes of com.bugyal.imentor.frontend.server.SubjectCorrelationScorer

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.