ACID-code 1.5.0a4__py3-none-any.whl → 2.0.0a1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ACID_code/__init__.py +3 -2
- ACID_code/acid.py +361 -347
- ACID_code/data.py +1627 -570
- ACID_code/errors.py +15 -0
- ACID_code/lsd.py +184 -452
- ACID_code/mcmc.py +48 -43
- ACID_code/profiles.py +105 -43
- ACID_code/result.py +219 -282
- ACID_code/utils.py +316 -53
- {acid_code-1.5.0a4.dist-info → acid_code-2.0.0a1.dist-info}/METADATA +2 -1
- acid_code-2.0.0a1.dist-info/RECORD +15 -0
- acid_code-1.5.0a4.dist-info/RECORD +0 -14
- {acid_code-1.5.0a4.dist-info → acid_code-2.0.0a1.dist-info}/WHEEL +0 -0
- {acid_code-1.5.0a4.dist-info → acid_code-2.0.0a1.dist-info}/licenses/LICENSE +0 -0
- {acid_code-1.5.0a4.dist-info → acid_code-2.0.0a1.dist-info}/top_level.txt +0 -0
ACID_code/__init__.py
CHANGED
|
@@ -4,9 +4,10 @@ from .result import Result
|
|
|
4
4
|
from . import utils
|
|
5
5
|
from .profiles import Profiles
|
|
6
6
|
from .mcmc import MCMC
|
|
7
|
-
from .utils import calc_deltav # for legacy reasons
|
|
7
|
+
from .utils import calc_deltav # for legacy reasons, this is its own function rather than part of utils
|
|
8
8
|
from .data import Data, DataList, Config, LineList, MaskingLines
|
|
9
|
+
from .utils import FloatLike, IntLike, Scalar, Array1D, Array2D, Array3D
|
|
9
10
|
|
|
10
11
|
__all__ = ['ACID', 'ACID_HARPS', 'Acid', 'LSD', 'MCMC', 'Result', 'Profiles',
|
|
11
12
|
'utils', 'calc_deltav', 'Data', 'Config', 'LineList', 'MaskingLines',
|
|
12
|
-
'DataList']
|
|
13
|
+
'DataList', 'FloatLike', 'IntLike', 'Scalar', 'Array1D', 'Array2D', 'Array3D']
|