You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -116,6 +116,9 @@ Run with `cargo run --example [EXAMPLE_BASENAME] --release`
116
116
* See [examples/hill_climb_table_seating](../main/examples/hill_climb_table_seating.rs)
117
117
* Explore internal and external multithreading options
118
118
* See [examples/explore_multithreading](../main/examples/explore_multithreading.rs)
119
+
* Explore MutationType differences with visualization
120
+
* See [examples/visualize_mutation_types](../main/examples/visualize_mutation_types.rs)
121
+
* Generates visualization showing exploration patterns of different mutation strategies
119
122
* Use superset StrategyBuilder for easier switching in implementation
120
123
* See [examples/explore_strategies](../main/examples/explore_strategies.rs)
121
124
* Use fitness LRU cache
@@ -126,6 +129,21 @@ Run with `cargo run --example [EXAMPLE_BASENAME] --release`
126
129
* Custom Mutate implementation
127
130
* See [examples/evolve_milp_custom_mutate](../main/examples/evolve_milp_custom_mutate.rs)
128
131
132
+
## Mutation Type Visualization
133
+
134
+
The library supports various mutation strategies that affect how the genetic algorithm explores the search space. The visualization below shows how different mutation types explore a 2D search space when searching for a target point:
0 commit comments