|
1 | 1 | """ |
2 | 2 | Computations subpackage. |
3 | 3 |
|
4 | | -Provides descriptor abstractions, fitter/evaluator implementations, |
| 4 | +Provides option and descriptor abstractions, fitter/evaluator implementations, |
5 | 5 | helper utilities, and a registry for matching fitter descriptors |
6 | 6 | to distribution characteristics. |
7 | 7 | """ |
|
12 | 12 | __copyright__ = "Copyright (c) 2025 PySATL project" |
13 | 13 | __license__ = "SPDX-License-Identifier: MIT" |
14 | 14 |
|
15 | | -from .base import * |
16 | | -from .base import __all__ as _base_all |
17 | 15 | from .continuous import * |
18 | 16 | from .continuous import __all__ as _continuous_all |
| 17 | +from .descriptors import * |
| 18 | +from .descriptors import __all__ as _descriptors_all |
19 | 19 | from .discrete import * |
20 | 20 | from .discrete import __all__ as _discrete_all |
| 21 | +from .options import * |
| 22 | +from .options import __all__ as _options_all |
21 | 23 | from .registry import * |
22 | 24 | from .registry import __all__ as _registry_all |
23 | 25 |
|
24 | | -ALL_FITTER_DESCRIPTORS: list[FitterDescriptor] = [ # noqa: F405 |
25 | | - FITTER_PDF_TO_CDF_1C, # noqa: F405 |
26 | | - FITTER_CDF_TO_PDF_1C, # noqa: F405 |
27 | | - FITTER_CDF_TO_PPF_1C, # noqa: F405 |
28 | | - FITTER_PPF_TO_CDF_1C, # noqa: F405 |
29 | | - FITTER_PMF_TO_CDF_1D, # noqa: F405 |
30 | | - FITTER_CDF_TO_PMF_1D, # noqa: F405 |
31 | | - FITTER_CDF_TO_PPF_1D, # noqa: F405 |
32 | | - FITTER_PPF_TO_CDF_1D, # noqa: F405 |
33 | | -] |
34 | | - |
35 | 26 | __all__ = [ |
36 | | - *_base_all, |
| 27 | + *_options_all, |
| 28 | + *_descriptors_all, |
37 | 29 | *_continuous_all, |
38 | 30 | *_discrete_all, |
39 | 31 | *_registry_all, |
40 | | - "ALL_FITTER_DESCRIPTORS", |
41 | 32 | ] |
42 | 33 |
|
43 | | -del _base_all, _continuous_all, _discrete_all, _registry_all |
| 34 | +del _options_all, _descriptors_all, _continuous_all, _discrete_all, _registry_all |
0 commit comments