mirror of https://github.com/jlizier/jidt
16 lines
374 B
Java
Executable File
16 lines
374 B
Java
Executable File
package infodynamics.utils;
|
|
|
|
|
|
/**
|
|
* Calculators implementing this interface must provide a method to compute
|
|
* the statistical significance of their measurement, returning an analytically
|
|
* determined distribution.
|
|
*
|
|
* @author Joseph Lizier
|
|
*
|
|
*/
|
|
public interface AnalyticNullDistributionComputer {
|
|
|
|
public AnalyticMeasurementDistribution computeSignificance();
|
|
}
|