com.cogpunk.math.probability.EventProbabilityProfileAggregationStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cogpunk-math Show documentation
Show all versions of cogpunk-math Show documentation
A set of mathematical utilities
package com.cogpunk.math.probability;
import java.util.List;
/**
* Strategy for aggregating probability profile, able to convert between two probability types
*
* @param The class type identifying the input probability
* @param The class type identifying the output probability
*/
public interface EventProbabilityProfileAggregationStrategy {
/**
* @param results the list of
* @return The output event probability
*/
public E aggregate(List results);
public int hashCode();
public boolean equals(Object obj);
}