Package proguard.analysis.cpa.defaults
Class StopJoinOperator
- java.lang.Object
-
- proguard.analysis.cpa.defaults.StopJoinOperator
-
- All Implemented Interfaces:
StopOperator
public final class StopJoinOperator extends java.lang.Object implements StopOperator
ThisStopOperator
returns true if the input state is less or equal than join over the reached set.
-
-
Constructor Summary
Constructors Constructor Description StopJoinOperator(AbstractDomain abstractDomain)
Create a join operator from the abstract domain defining the join operator.
-
Method Summary
All Methods Instance Methods Concrete 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.
-
-
-
Constructor Detail
-
StopJoinOperator
public StopJoinOperator(AbstractDomain abstractDomain)
Create a join operator from the abstract domain defining the join operator.- Parameters:
abstractDomain
- abstract domain
-
-
Method Detail
-
stop
public boolean stop(AbstractState abstractState, java.util.Collection<? extends AbstractState> reachedAbstractStates, Precision precision)
Description copied from interface:StopOperator
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.- Specified by:
stop
in interfaceStopOperator
-
-