Package com.flaptor.indextank.index.scorer.CategoryMaskManager

Examples of com.flaptor.indextank.index.scorer.CategoryMaskManager.CategoryValueInfo.last()


    }
     
      for (Pair<String, CategoryValueInfo> categoryValueInfo : categoryValueInfos) {
      for (Pair<String, CategoryValueInfo> categoryValueInfo2 : categoryValueInfos) {
        if (!categoryValueInfo.first().equals(categoryValueInfo2.first())) {
          int[] bitmask = categoryValueInfo.last().getBitmask();
          int[] bitmask2 = categoryValueInfo2.last().getBitmask();
         
          for (int i = 0; i < Math.min(bitmask.length, bitmask2.length); i++) {
            assertEquals(0, (int)(bitmask[i] & bitmask2[i]))
          }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.