接口 StopOperator<StateT extends AbstractState<StateT>>
-
- 类型参数:
StateT- The type of the analyzed states.
- 所有已知实现类:
StopAlwaysOperator,StopContainedOperator,StopJoinOperator,StopNeverOperator,StopSepOperator
public interface StopOperator<StateT extends AbstractState<StateT>>TheStopOperatordecides ifCpaAlgorithmshould stop.
-
-
方法详细资料
-
stop
boolean stop(StateT abstractState, java.util.Collection<StateT> reachedAbstractStates, Precision precision)
The 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.
-
-