Simple operator class with name and selection size.
Source code in src/evotoolkit/core/operator.py
| class Operator:
"""Simple operator class with name and selection size."""
def __init__(self, name: str, selection_size: int = 0):
self.name = name
self.selection_size = selection_size
|