Package com.carrotsearch.hppc

Examples of com.carrotsearch.hppc.BitSet


    /**
     * Build label paths from a processing result and a list of clusters.
     */
    public static ClusterLabelPaths from(List<Cluster> topClusters, List<Cluster> clusters)
    {
        BitSet selected = new BitSet();
        for (Cluster c : clusters)
            selected.set(c.getId());
       
        ClusterLabelPaths clp = new ClusterLabelPaths();
        descend(topClusters, new ArrayList<String>(), selected, clp.paths);
        return clp;
    }
View Full Code Here

TOP

Related Classes of com.carrotsearch.hppc.BitSet

Copyright © 2018 www.massapicom. 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.