Package org.tweetyproject.math.func
Interface BinaryFunction<T,S,R>
- Type Parameters:
T
- The type of the domain of the first parameterS
- The type of the domain of the second parameterR
- The type of the co-domain
- All Known Implementing Classes:
BoundedSum
,LukasiewiczNorm
,MaxFunction
,MaximumCoNorm
,MinimumNorm
,ProbabilisticSum
,ProductNorm
,SmoothingFunction
,TCoNorm
,TNorm
public interface BinaryFunction<T,S,R>
Encapsulates common methods of mathematical functions with a two parameters.
- Author:
- Matthias Thimm
-
Method Summary
-
Method Details
-
eval
Evaluates the function for the given elements.- Parameters:
val1
- some elementval2
- some element- Returns:
- the value of the element.
-