BFEvaluationDecision Enum
The BFEvaluationDecision is returned when a plugin implements a custom bruteforce evaluation function:
- return
DoNothing
when you want bruteforce to keep simulating the current inputs - return
Accept
when you want to accept the current inputs as the new best inputs - return
Reject
when you want to reject the current inputs and start a new attempt - return
Stop
when you want to stop the bruteforce process
enum BFEvaluationDecision {
DoNothing = 1,
Accept = 2,
Reject = 3,
Stop = 4
}