类 StopNeverOperator<StateT extends AbstractState<StateT>>
- java.lang.Object
-
- proguard.analysis.cpa.defaults.StopNeverOperator<StateT>
-
- 类型参数:
StateT- The type of the analyzed states.
- 所有已实现的接口:
StopOperator<StateT>
public final class StopNeverOperator<StateT extends AbstractState<StateT>> extends java.lang.Object implements StopOperator<StateT>
ThisStopOperatoralways returns false, i.e., it can be used for analyses running until theWaitlistbecomes empty.
-
-
方法详细资料
-
stop
public boolean stop(StateT abstractState, java.util.Collection<StateT> reachedAbstractStates, Precision precision)
从接口复制的说明:StopOperatorThe operator may decide based on the (generalized under the givenprecision) convergence. In this case it needs to look up theabstractStatein thereachedAbstractStates. Otherwise, it can returntrueif sufficient information is collected, e.g., a safety property is violated.- 指定者:
stop在接口中StopOperator<StateT extends AbstractState<StateT>>
-
-