Package it.unimi.dsi.mg4j.search.score

Examples of it.unimi.dsi.mg4j.search.score.LinearAggregator


   */
  public synchronized void score( final Scorer[] scorer, final double[] weight ) {
    if ( scorer.length == 0 ) this.scorer = null;
    else {
      if ( scorer.length == 1 ) this.scorer = scorer[ 0 ];
      else this.scorer = new LinearAggregator( scorer, weight );
      this.scorer.setWeights( index2Weight );
    }
  }
View Full Code Here

TOP

Related Classes of it.unimi.dsi.mg4j.search.score.LinearAggregator

Copyright © 2018 www.massapicom. 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.