Package net.sf.tweety.math.func
Interface AggregationFunction
-
- All Superinterfaces:
Serializable,SimpleFunction<List<Double>,Double>
- All Known Implementing Classes:
AverageAggregator,MaxAggregator,MinAggregator,ProductAggregator,SumAggregator
public interface AggregationFunction extends SimpleFunction<List<Double>,Double>, Serializable
This class aggregates a list of doubles to a single double.- Author:
- Matthias Thimm
-
-
Method Detail
-
eval
Double eval(List<Double> x)
Description copied from interface:SimpleFunctionEvaluates the function for the given element.- Specified by:
evalin interfaceSimpleFunction<List<Double>,Double>- Parameters:
x- some element- Returns:
- the value of the element.
-
-