File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 57
57
//!
58
58
//! | | Applied to all solutions | Applied to each solution<br>or group of solutions |
59
59
//! |:---------------------------|:------------------------:|:-------------------------------------------------:|
60
- //! | **Test operator** | [`Tester`] | [`Test`] |
61
60
//! | **Selection operator** | [`Selector`] | [`Selection`] |
62
61
//! | **Recombination operator** | [`Recombinator`] | [`Recombination`] |
63
62
//! | **Mutation operator** | [`Mutator`] | [`Mutation`] |
63
+ //! | **Test operator** | [`Tester`] | [`Test`] |
64
64
//! | **Termination operator** | [`Terminator`] | [`Termination`] |
65
65
//!
66
66
//! Each pair of operators implements its respective **executor**. For example,
119
119
//!
120
120
//! | | Operator must implement | Solution must implement |
121
121
//! |:------------------|:-----------------------:|:-----------------------:|
122
- //! | [`Test`] | `Sync` | `Sync` |
123
122
//! | [`Selection`] | `Sync` | `Sync` |
124
123
//! | [`Recombination`] | `Sync` | `Sync + Send` |
125
124
//! | [`Mutation`] | `Sync` | `Sync + Send` |
125
+ //! | [`Test`] | `Sync` | `Sync` |
126
126
//! | [`Termination`] | `Sync` | `Sync` |
127
127
//!
128
128
//! For simple operators, the overhead introduced by parallelization usually
You can’t perform that action at this time.
0 commit comments