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 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"