Package net.sf.tweety.arg.adf.transform
Class AbstractTransformer<U,D,R>
- java.lang.Object
-
- net.sf.tweety.arg.adf.transform.AbstractTransformer<U,D,R>
-
- Type Parameters:
U- the information that is passed bottom-up during the transformationD- the information that is passed top-down during the transformationR- the result of the transformation
- All Implemented Interfaces:
Transformer<R>
- Direct Known Subclasses:
FixPartialTransformer,OmegaReductTransformer,PropositionalTransformer
public abstract class AbstractTransformer<U,D,R> extends java.lang.Object implements Transformer<R>
- Author:
- Mathias Hofer
-
-
Constructor Summary
Constructors Constructor Description AbstractTransformer()
-
Method Summary
Modifier and Type Method Description Rtransform(AcceptanceCondition acc)Transforms the given acceptance condition into another structure.
-
-
-
Method Detail
-
transform
public R transform(AcceptanceCondition acc)
Description copied from interface:TransformerTransforms the given acceptance condition into another structure.- Specified by:
transformin interfaceTransformer<U>- Parameters:
acc- the acceptance condition- Returns:
- the transformed result
-
-