mc-imperial / dredd

A mutation testing tool designed to work with large C++ (and C) codebases.
Apache License 2.0
13 stars 3 forks source link

Avoid redundant unary operator mutations #110

Closed JamesLee-Jones closed 2 years ago

JamesLee-Jones commented 2 years ago

Exploit constant folding to reduce the number of mutations applied to unary operators in the case when the operand is 0, 1 or -1.

Fixes #90.