public interface Algorithm
ReachedSet
, the Waitlist
, and the AbortOperator
.Modifier and Type | Method and Description |
---|---|
default void |
run(ReachedSet reachedSet,
Waitlist waitlist)
Launches the algorithm updating the
reachedSet and the waitlist . |
void |
run(ReachedSet reachedSet,
Waitlist waitlist,
AbortOperator abortOperator)
Launches the algorithm updating the
reachedSet and the waitlist . |
void run(ReachedSet reachedSet, Waitlist waitlist, AbortOperator abortOperator)
reachedSet
and the waitlist
. A proper
selection of parameters allows resuming the algorithm from a saved state. The abortOperator
determines whether the analysis should end prematurely.default void run(ReachedSet reachedSet, Waitlist waitlist)
reachedSet
and the waitlist
. A proper
selection of parameters allows resuming the algorithm from a saved state.