Coverage for suppy\perturbations\__init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.6.4, created at 2026-05-08 13:56 +0200
« prev ^ index » next coverage.py v7.6.4, created at 2026-05-08 13:56 +0200
1"""Module for setting up perturbations for feasibility seeking."""
2from ._base import (
3 Perturbation,
4 PowerSeriesGradientPerturbation,
5 AdaptiveStepGradientPerturbation,
6 DummyPerturbation,
7)
9__all__ = [
10 "Perturbation",
11 "PowerSeriesGradientPerturbation",
12 "AdaptiveStepGradientPerturbation",
13 "DummyPerturbation",
14]