-
-
Notifications
You must be signed in to change notification settings - Fork 330
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Eco fuzz fix #1253
Eco fuzz fix #1253
Conversation
it seems yes, or maybe it needs to be a f64 type, have you checked the original code? |
It looks different than what it is now |
yes it is |
|
i'll check other codes too |
I pushed more fixes
|
fixed bunches of other issues too, |
for id in state.corpus().ids() { | ||
let was_fuzzed = state.testcase(id)?.scheduled_count() > 0; | ||
if was_fuzzed { | ||
if !was_fuzzed { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok makes more sense, i coded it in one day
let mut average_cost = (state.corpus().count() / state.executions()) as u64;
should be
let mut average_cost = (state.executions() / state.corpus().count()) as u64;
no?