You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some constraint sets it might be the case that there exist several independent subsets (i.e. the intersection of each subset is the empty set).
In this case the fuzzer may waste time mutating inputs that already satisfy a subset. There are two possible fixes
We generate multiple programs for each subset and fuzz them independently
We implement a custom mutator and track the subsets so that once a subset is completely satisfied we skip trying to mutate the inputs that correspond to that subset.
The text was updated successfully, but these errors were encountered:
delcypher
changed the title
Constraint indepedence
Constraint independence
Nov 25, 2017
For some constraint sets it might be the case that there exist several independent subsets (i.e. the intersection of each subset is the empty set).
In this case the fuzzer may waste time mutating inputs that already satisfy a subset. There are two possible fixes
The text was updated successfully, but these errors were encountered: