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