List of usage examples for org.apache.lucene.util SmallFloat intToByte4
public static byte intToByte4(int i)
From source file:org.elasticsearch.index.similarity.ScriptedSimilarity.java
License:Apache License
@Override public long computeNorm(FieldInvertState state) { final int numTerms = discountOverlaps ? state.getLength() - state.getNumOverlap() : state.getLength(); return SmallFloat.intToByte4(numTerms); }