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 insertion #127

Closed JamesLee-Jones closed 2 years ago

JamesLee-Jones commented 2 years ago

Exploit constant folding to avoid redundant unary operator insertion when it is equivalent to replacement with a constant. Also avoid applying ~ to boolean expressions.

Fixes #92, #108.