Package de.learnlib.algorithm.aaar
Interface Abstraction<AI,CI>
-
- Type Parameters:
AI- abstract input symbol typeCI- concrete input symbol type
- All Known Subinterfaces:
ExplicitInitialAbstraction<AI,CI>
- All Known Implementing Classes:
AbstractAbstractionTree,ExplicitAbstractionTree,GenericAbstractionTree
public interface Abstraction<AI,CI>An interface for mapping concrete symbols to their abstraction, and abstractions to their representatives, respectively.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AIgetAbstractSymbol(CI c)Returns the abstract symbol for a given concrete one.CIgetRepresentative(AI a)Returns the (concrete) representative for a given abstract symbol.
-