iddefix 0.1.4__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.
- iddefix/__init__.py +20 -0
- iddefix/_version.py +1 -0
- iddefix/framework.py +945 -0
- iddefix/objectiveFunctions.py +161 -0
- iddefix/resonatorFormulas.py +847 -0
- iddefix/smartBoundDetermination.py +390 -0
- iddefix/solvers.py +334 -0
- iddefix/utils.py +402 -0
- iddefix-0.1.4.dist-info/METADATA +121 -0
- iddefix-0.1.4.dist-info/RECORD +13 -0
- iddefix-0.1.4.dist-info/WHEEL +5 -0
- iddefix-0.1.4.dist-info/licenses/LICENSE +674 -0
- iddefix-0.1.4.dist-info/top_level.txt +1 -0
iddefix/__init__.py
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
from . import framework
|
|
2
|
+
from . import objectiveFunctions
|
|
3
|
+
from . import resonatorFormulas
|
|
4
|
+
from . import solvers
|
|
5
|
+
from . import smartBoundDetermination
|
|
6
|
+
from . import utils
|
|
7
|
+
|
|
8
|
+
from .framework import EvolutionaryAlgorithm
|
|
9
|
+
from .objectiveFunctions import ObjectiveFunctions
|
|
10
|
+
from .resonatorFormulas import Wakes, Impedances
|
|
11
|
+
from .smartBoundDetermination import SmartBoundDetermination
|
|
12
|
+
|
|
13
|
+
from .utils import (
|
|
14
|
+
compute_fft,
|
|
15
|
+
compute_deconvolution,
|
|
16
|
+
compute_convolution,
|
|
17
|
+
gaussian_bunch,
|
|
18
|
+
)
|
|
19
|
+
from .utils import compute_ineffint, compute_neffint
|
|
20
|
+
from ._version import __version__
|
iddefix/_version.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.4"
|