--mutators=<value> - Choose mutators:
=all - default, experimental
=arithmetic - cxx_arithmetic_add_to_sub, cxx_arithmetic_add_assign_to_sub_assign, cxx_arithmetic_post_inc_to_post_dec, cxx_arithmetic_pre_inc_to_pre_dec, cxx_arithmetic_sub_to_add, cxx_arithmetic_sub_assign_to_add_assign, cxx_arithmetic_post_dec_to_post_inc, cxx_arithmetic_pre_dec_to_pre_inc, cxx_arithmetic_mul_to_div, cxx_arithmetic_mul_assign_to_div_assign, cxx_arithmetic_div_to_mul, cxx_arithmetic_div_assign_to_mul_assign, cxx_arithmetic_rem_to_div, cxx_arithmetic_rem_assign_to_div_assign
=bitwise - cxx_bitwise_lshift_to_rshift, cxx_bitwise_lshift_assign_to_rshift_assign, cxx_bitwise_rshift_to_lshift, cxx_bitwise_rshift_assign_to_lshift_assign, cxx_bitwise_and_to_or, cxx_bitwise_and_assign_to_or_assign, cxx_bitwise_or_to_and, cxx_bitwise_or_assign_to_and_assign, cxx_bitwise_xor_to_or, cxx_bitwise_xor_assign_to_or_assign
=conditional - and_or_replacement_mutator, negate_mutator, conditionals_boundary_mutator, negate_relational
=conditionals_boundary_mutator - cxx_relational_le_to_lt, cxx_relational_lt_to_le, cxx_relational_ge_to_gt, cxx_relational_gt_to_ge
=constant - scalar_value_mutator
=cxx - conditionals_boundary_mutator, negate_relational, arithmetic, numbers
=default - cxx_arithmetic_add_to_sub, negate_mutator, remove_void_function_mutator
=experimental - and_or_replacement_mutator, numbers, replace_call_mutator, scalar_value_mutator, conditionals_boundary_mutator, negate_relational, arithmetic, bitwise
=functions - replace_call_mutator, remove_void_function_mutator
=math - cxx_arithmetic_add_to_sub, cxx_arithmetic_sub_to_add, cxx_arithmetic_mul_to_div, cxx_arithmetic_div_to_mul
=negate_relational - cxx_relational_gt_to_le, cxx_relational_ge_to_lt, cxx_relational_lt_to_ge, cxx_relational_le_to_gt, cxx_relational_eq_to_ne, cxx_relational_ne_to_eq
=numbers - cxx_number_init_const, cxx_number_assign_const
=and_or_replacement_mutator - Replaces && with ||, || with &&
=cxx_arithmetic_add_assign_to_sub_assign - Replaces += with -=
=cxx_arithmetic_add_to_sub - Replaces + with -
=cxx_arithmetic_div_assign_to_mul_assign - Replaces /= with *=
=cxx_arithmetic_div_to_mul - Replaces / with *
=cxx_arithmetic_mul_assign_to_div_assign - Replaces *= with /=
=cxx_arithmetic_mul_to_div - Replaces * with /
=cxx_arithmetic_post_dec_to_post_inc - Replaces x-- with x++
=cxx_arithmetic_post_inc_to_post_dec - Replaces x++ with x--
=cxx_arithmetic_pre_dec_to_pre_inc - Replaces --x with ++x
=cxx_arithmetic_pre_inc_to_pre_dec - Replaces ++x with --x
=cxx_arithmetic_rem_assign_to_div_assign - Replaces %= with /=
=cxx_arithmetic_rem_to_div - Replaces % with /
=cxx_arithmetic_sub_assign_to_add_assign - Replaces -= with +=
=cxx_arithmetic_sub_to_add - Replaces - with +
=cxx_bitwise_and_assign_to_or_assign - Replaces &= with |=
=cxx_bitwise_and_to_or - Replaces & with |
=cxx_bitwise_lshift_assign_to_rshift_assign - Replaces <<= with >>=
=cxx_bitwise_lshift_to_rshift - Replaces << with >>
=cxx_bitwise_or_assign_to_and_assign - Replaces |= with &=
=cxx_bitwise_or_to_and - Replaces | with &
=cxx_bitwise_rshift_assign_to_lshift_assign - Replaces >>= with <<=
=cxx_bitwise_rshift_to_lshift - Replaces << with >>
=cxx_bitwise_xor_assign_to_or_assign - Replaces ^= with |=
=cxx_bitwise_xor_to_or - Replaces ^ with |
=cxx_number_assign_const - Replaces 'a = b' with 'a = 42'
=cxx_number_init_const - Replaces 'T a = b' with 'T a = 42'
=cxx_relational_eq_to_ne - Replaces == with !=
=cxx_relational_ge_to_gt - Replaces >= with >
=cxx_relational_ge_to_lt - Replaces >= with <
=cxx_relational_gt_to_ge - Replaces > with >=
=cxx_relational_gt_to_le - Replaces > with <=
=cxx_relational_le_to_gt - Replaces <= with >
=cxx_relational_le_to_lt - Replaces <= with <
=cxx_relational_lt_to_ge - Replaces < with >=
=cxx_relational_lt_to_le - Replaces < with <=
=cxx_relational_ne_to_eq - Replaces != with ==
=negate_mutator - Negates conditionals !x to x and x to !x
=remove_void_function_mutator - Removes calls to a function returning void
=replace_call_mutator - Replaces call to a function with 42
=scalar_value_mutator - Replaces zeros with 42, and non-zeros with 0