used for rwi ranking.
Main changes:
- introduce a posintext() to access the stored value. This reduces also mem alloc of position array for WordReferenceRow (index access)
- use the positions() array for joined references on multi-word queries if needed (otherwise allow positions() to be null
- adjust assignments and the min() max() and distance() calculation accordingly
@ -253,7 +283,7 @@ public class WordReferenceVars extends AbstractReference implements WordReferenc
this.hitcount,// how often appears this word in the text
this.wordsintext,// total number of words
this.phrasesintext,// total number of phrases
this.positions.isEmpty()?0:minposition(),// position of word in all words (WordReferenceRow stores first position in text, minpos also important for joined references)
this.posintext,// position of word in all words (WordReferenceRow stores first position in text)
this.posinphrase,// position of word in its phrase
this.posofphrase,// number of the phrase where word appears
this.lastModified,// last-modified time of the document where word appears
@ -336,21 +366,19 @@ public class WordReferenceVars extends AbstractReference implements WordReferenc
// int s0 = i.next(), s1; // concurrency issue see max()
ints0 =-1,s1;
ints0=posintext();// init with own positon
ints1;
while(i.hasNext()){
s1=i.next();
if(s0>0)d+=Math.abs(s0-s1);
@ -130,11 +52,8 @@ public abstract class AbstractReference implements Reference {
// despite first line checks for size < 2 Arithmetic exception div by zero occured (1.91/9278 2016-10-19)
// added d == 0 condition as protection for this (which was in all above tests the case)
try{
returnd==0?0:d/(positions().size()-1);
returnd==0?0:d/positions().size();
}catch(ArithmeticExceptionex){
// TODO: in peer to peer normalization of rwi queue modifies concurrently positions resulting in div by 0 exception
// with effect of above check position() < 2 is false but now true, it also results in changing ranking results until normalization is finished
// see related/causing code ReferenceOrder.normalizewith() and WordReferenceVars.max()/WordReferenceVars.min() -> refacturing of posintext, distance, min, max needed