Skip to content

SMS-EMOA configuration

Configure smsemoa through vamos.algorithms.SMSEMOAConfig. This page is the parameter reference, not a tutorial about the algorithm.

Stable public API. The 1.x compatibility policy defines the supported surface; import from the public facade shown below.

from vamos.algorithms import SMSEMOAConfig

Configuration overview · Algorithm contracts · Optimization

SMSEMOAConfig dataclass

Bases: _SerializableConfig

default(pop_size=100, n_var=None) classmethod

Create a default SMS-EMOA configuration.

Builder methods

Use SMSEMOAConfig.builder() to obtain the fluent builder; do not import the private builder class directly. The methods below are generated from that returned object, so their signatures are not maintained as a second manual parameter table.

Bases: _ConfigBuilderState, _PopSizeBuilder, _CrossoverBuilder, _MutationBuilder, _SelectionBuilder, _RepairBuilder, _InitializerBuilder, _MutationProbFactorBuilder, _ConstraintModeBuilder, _TrackGenealogyBuilder, _ResultArchiveBuilder

Declarative configuration holder for SMS-EMOA settings.

Examples: cfg = SMSEMOAConfig.default() cfg = SMSEMOAConfig.builder().pop_size(100).crossover("sbx", prob=1.0).build()