src/main/java/com/twitter/sbf/core/MHAlgorithm.java [887:896]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    PriorityQueue<HeapEntry> queue = new ObjectHeapPriorityQueue<>(rowIds.length);
    for (int rowId : rowIds) {
      int[] row = matrix.getRow(rowId);
      if (row.length > 0) {
        queue.enqueue(new HeapEntry(rowId, row[0], 0));
      }
    }

    double weightedSum = 0;
    int count = 0;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/twitter/sbf/core/MHAlgorithm.java [929:938]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    PriorityQueue<HeapEntry> queue = new ObjectHeapPriorityQueue<>(rowIds.length);
    for (int rowId : rowIds) {
      int[] row = matrix.getRow(rowId);
      if (row.length > 0) {
        queue.enqueue(new HeapEntry(rowId, row[0], 0));
      }
    }

    double weightedSum = 0;
    int count = 0;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



