接口 MergeOperator<StateT extends AbstractState<StateT>>
-
- 类型参数:
StateT- The type of the analyzed states.
public interface MergeOperator<StateT extends AbstractState<StateT>>TheMergeOperatordefines how (and whether) the olderAbstractStateshould be updated with the newly discoveredAbstractState.
-
-
方法详细资料
-
merge
StateT merge(StateT abstractState1, StateT abstractState2, Precision precision)
The operator uses theabstractState1to weakenabstractState2depending onprecision. Thus, it is asymmetric regarding its first two parameters. E.g., returnabstractState2for no merging. To guarantee the correct behavior of the algorithm implementations must have no side effects.
-
-