Package org.tweetyproject.math.func
Interface SimpleFunction<T,S>
- Type Parameters:
T- The type of the domainS- The type of the co-domain
- All Known Subinterfaces:
AggregationFunction,SimpleRealValuedFunction
- All Known Implementing Classes:
AverageAggregator,DefaultNegation,EntropyFunction,EntropyNorm,FracAggrFunction,FractionSequenceFunction,FuzzyNegation,MaxAggregator,MinAggregator,ProductAggregator,SumAggregator
public interface SimpleFunction<T,S>
Encapsulates common methods of mathematical functions with a single parameter.
- Author:
- Matthias Thimm
-
Method Summary
-
Method Details
-
eval
Evaluates the function for the given element.- Parameters:
x- some element- Returns:
- the value of the element.
-