sourcecode/scoring/post_selection_similarity_old.py [384:394]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    j = i + 1
    while j < len(values):
      nextNote, nextTs, nextRater, nextTweet = values[j]
      assert priorNote <= nextNote, (priorNote, nextNote)
      if nextNote != priorNote:
        break  # break if we're onto a new note
      assert priorTweet == nextTweet, (priorTweet, nextTweet)  # tweet should be same
      assert priorRater != nextRater, (priorRater, nextRater)  # rater should be different
      assert priorTs <= nextTs, (priorTs, nextTs)
      if nextTs > (priorTs + windowMillis):
        break  # break if we're beyond the overlap window
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



sourcecode/scoring/post_selection_similarity_old.py [516:526]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      j = i + 1
      while j < len(values):
        nextNote, nextTs, nextRater, nextTweet = values[j]
        assert priorNote <= nextNote, (priorNote, nextNote)
        if nextNote != priorNote:
          break  # break if we're onto a new note
        assert priorTweet == nextTweet, (priorTweet, nextTweet)  # tweet should be same
        assert priorRater != nextRater, (priorRater, nextRater)  # rater should be different
        assert priorTs <= nextTs, (priorTs, nextTs)
        if nextTs > (priorTs + windowMillis):
          break  # break if we're beyond windowMillis
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



