All Downloads are FREE. Search and download functionalities are using the official Maven repository.

parallel.partitioners.IPartitionPolicy Maven / Gradle / Ivy

The newest version!
package parallel.partitioners;

import java.util.List;

public interface IPartitionPolicy {

    /**
     * Returns the indices associted with the i-th partition
     * @param i
     * @return
     */
    List getParition(int i);


    /**
     * How many partitions this policy has
     */
    int numPartitions();


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy