Open Janiczek opened 1 year ago
@CoderDennis has found this when reading through the source code.
Fuzz.forcedChoice doesn't reject the value in the original Python minithesis repo but it does in our implementation (when using a Hardcoded RandomRun).
Fuzz.forcedChoice
This probably results in more failed generations during shrinking than necessary. We likely should just ignore the current value instead of checking its value.
@CoderDennis has found this when reading through the source code.
Fuzz.forcedChoice
doesn't reject the value in the original Python minithesis repo but it does in our implementation (when using a Hardcoded RandomRun).This probably results in more failed generations during shrinking than necessary. We likely should just ignore the current value instead of checking its value.