Package org.jreliability.booleanfunction
Interface TTRF<T>
-
- Type Parameters:
T
- the type of variable
- All Known Implementing Classes:
BDDTTRF
,BDDTTRFSimulative
public interface TTRF<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ReliabilityFunction
convert(Term term, org.apache.commons.collections15.Transformer<T,ReliabilityFunction> functionTransformer)
Converts aTerm
to aReliabilityFunction
.ReliabilityFunction
convert(Term term, org.apache.commons.collections15.Transformer<T,ReliabilityFunction> functionTransformer, org.apache.commons.collections15.Predicate<T> existsPredicate)
-
-
-
Method Detail
-
convert
ReliabilityFunction convert(Term term, org.apache.commons.collections15.Transformer<T,ReliabilityFunction> functionTransformer)
Converts aTerm
to aReliabilityFunction
.- Parameters:
term
- the term to transformfunctionTransformer
- the used function functionTransformer- Returns:
- the reliabilityFunction deduced from the term
-
convert
ReliabilityFunction convert(Term term, org.apache.commons.collections15.Transformer<T,ReliabilityFunction> functionTransformer, org.apache.commons.collections15.Predicate<T> existsPredicate)
- Parameters:
term
- the term to transformfunctionTransformer
- the used function functionTransformerexistsPredicate
- the exists-variable existsPredicate- Returns:
- the reliabilityFunction deduced from the term
-
-