diff options
Diffstat (limited to 'prog/mutation.go')
| -rw-r--r-- | prog/mutation.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/prog/mutation.go b/prog/mutation.go index 7868c6445..f70a62cbe 100644 --- a/prog/mutation.go +++ b/prog/mutation.go @@ -629,7 +629,8 @@ func (t *VmaType) getMutationPrio(target *Target, arg Arg, ignoreSpecial bool) ( } func (t *LenType) getMutationPrio(target *Target, arg Arg, ignoreSpecial bool) (prio float64, stopRecursion bool) { - return 0.6 * maxPriority, false + // Mutating LenType only produces "incorrect" results according to descriptions. + return 0.1 * maxPriority, false } func (t *BufferType) getMutationPrio(target *Target, arg Arg, ignoreSpecial bool) (prio float64, stopRecursion bool) { |
