Package proguard.analysis.cpa.interfaces
Interface StopOperator
-
- All Known Implementing Classes:
StopAlwaysOperator
,StopContainedOperator
,StopJoinOperator
,StopNeverOperator
,StopSepOperator
public interface StopOperator
TheStopOperator
decides ifAlgorithm
should stop.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
stop(AbstractState abstractState, java.util.Collection<? extends AbstractState> reachedAbstractStates, Precision precision)
The operator may decide based on the (generalized under the givenprecision
) convergence.
-
-
-
Method Detail
-
stop
boolean stop(AbstractState abstractState, java.util.Collection<? extends AbstractState> reachedAbstractStates, Precision precision)
The operator may decide based on the (generalized under the givenprecision
) convergence. In this case it needs to look up theabstractState
in thereachedAbstractStates
. Otherwise, it can returntrue
if sufficient information is collected, e.g., a safety property is violated.
-
-