Package proguard.analysis.cpa.interfaces
Interface TransferRelation<StateT extends AbstractState<StateT>>
-
- Type Parameters:
StateT
- The type of states of the analysis, produced by the transfer relation.
- All Known Subinterfaces:
ProgramLocationDependentBackwardTransferRelation<ContentT>
,ProgramLocationDependentForwardTransferRelation<ContentT>
,ProgramLocationDependentTransferRelation<ContentT>
- All Known Implementing Classes:
BamTransferRelation
,JvmMemoryLocationTransferRelation
,JvmTaintTransferRelation
,JvmTransferRelation
,JvmValueTransferRelation
public interface TransferRelation<StateT extends AbstractState<StateT>>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<StateT>
generateAbstractSuccessors(StateT abstractState, Precision precision)
Returns abstract successor states of theabstractState
under the selectedprecision
.
-