# `Jido.Evolve.Mutation.Binary`
[🔗](https://github.com/agentjido/jido_evolve/blob/v1.0.0/lib/jido_evolve/mutation/binary.ex#L1)

Bit-flip mutation for binary genomes.

Randomly flips bits (0→1 or 1→0) based on mutation rate.
Each position has an independent probability of being flipped.

## Usage

    config = %{
      mutation_strategy: Jido.Evolve.Mutation.Binary,
      mutation_rate: 0.1  # 10% chance per bit
    }

# `mutate_with_feedback`

Default implementation of mutate_with_feedback/3 that ignores feedback.

# `mutation_strength`

Default mutation strength that decreases linearly with generation.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
