public interface IStrategy
| Modifier and Type | Method and Description |
|---|---|
void |
explore()
This method explores the design space as the implementation specifies.
|
void |
initStrategy(ThreadContext context)
Initializes the strategy with a specific
ThreadContext. |
void |
interruptStrategy()
The implementation of this interface should be ready to be interrupted.
|
void initStrategy(ThreadContext context)
ThreadContext.context - The context.void explore()
void interruptStrategy()
explore() method should return ASAP.
This method is also called by the SolutionStore class if enough solutions are found.