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

polyrun.thinning.ThinningFunction Maven / Gradle / Ivy

Go to download

A library containing implementation of uniform sampling from bounded convex polytopes.

There is a newer version: 1.1.0
Show newest version
package polyrun.thinning;

/**
 * Represents function q = f(n) which defines thinning factor q depending on the dimensionality n of sampling space.
 */
public interface ThinningFunction {

    /**
     * Returns thinning factor for given number of dimensions.
     *
     * @param dimensions number of dimensions of sampling space
     * @return thinning factor
     */
    int getThinningFactor(int dimensions);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy