pydmoo 0.0.16__py3-none-any.whl → 0.0.18__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.
pydmoo/problems/dyn.py CHANGED
@@ -1,5 +1,6 @@
1
1
  """
2
- Includes modified code from pymoo (https://github.com/anyoptimization/pymoo/blob/main/pymoo/problems/dyn.py),
2
+ Include modified code from [pymoo](https://github.com/anyoptimization/pymoo):
3
+ [dyn.py](https://github.com/anyoptimization/pymoo/blob/main/pymoo/problems/dyn.py),
3
4
  licensed under Apache License 2.0. Original copyright and license terms are preserved.
4
5
  """
5
6
 
@@ -1,5 +1,6 @@
1
1
  """
2
- Includes modified code from pymoo (https://github.com/anyoptimization/pymoo/blob/main/pymoo/problems/dynamic/cec2015.py),
2
+ Include modified code from [pymoo](https://github.com/anyoptimization/pymoo):
3
+ [cec2015.py](https://github.com/anyoptimization/pymoo/blob/main/pymoo/problems/dynamic/cec2015.py),
3
4
  licensed under Apache License 2.0. Original copyright and license terms are preserved.
4
5
  """
5
6
 
@@ -1,5 +1,6 @@
1
1
  """
2
- Includes modified code from pymoo (https://github.com/anyoptimization/pymoo/blob/main/pymoo/problems/dynamic/df.py),
2
+ Include modified code from [pymoo](https://github.com/anyoptimization/pymoo):
3
+ [df.py](https://github.com/anyoptimization/pymoo/blob/main/pymoo/problems/dynamic/df.py),
3
4
  licensed under Apache License 2.0. Original copyright and license terms are preserved.
4
5
  """
5
6
 
@@ -140,30 +140,6 @@ class GTS1(GTS):
140
140
  \end{cases}
141
141
  \end{equation}
142
142
 
143
- with
144
-
145
- \begin{equation*}
146
- \begin{split}
147
- g(\mathbf{x},t) = 1
148
- &+ \Bigl(\bigl(\mathbf{x}_{II,1} - h_1(\mathbf{x}_I)\bigr)^T \mathbf{R}_{II,1}(t) \bigl(\mathbf{x}_{II,1} - h_1(\mathbf{x}_I)\bigr)\Bigr)^{\frac{1}{p}} \\
149
- &+ \Bigl(\bigl(\mathbf{x}_{II,2} - h_2(\mathbf{x}_I)\bigr)^T \mathbf{R}_{II,2}(t) \bigl(\mathbf{x}_{II,2} - h_2(\mathbf{x}_I)\bigr)\Bigr)^{\frac{1}{p}}
150
- \end{split}
151
- \end{equation*}
152
-
153
- where $p \geq 1$, $\mathbf{x}_I = (x_1)$, $\mathbf{x}_{II,1} = (x_2, \cdots, x_{\lfloor\frac{D}{2}\rfloor})$ and $\mathbf{x}_{II,2} = (x_{\lfloor\frac{D}{2}\rfloor + 1}, \cdots, x_D)$,
154
- $h_1(\mathbf{x}_I, t) = \cos(0.5\pi t)$ and $h_2(\mathbf{x}_I, t) = G(t) + x_1^{H(t)}$,
155
- $\mathbf{R}_{II,1}(t)$ and $\mathbf{R}_{II,2}(t)$ are symmetric positive semidefinite matrices in the $t$-th environment,
156
- the search space is $[0,1] \times [-1,1]^{\lfloor\frac{D}{2}\rfloor -1} \times [-1, 2]^{\lceil\frac{D}{2}\rceil}$.
157
-
158
- The PF and PS at time t can be described as:
159
-
160
- \begin{equation*}
161
- \begin{aligned}
162
- & \text{PS(t): }0 \leq x_1 \leq 1, x_i = h_1(\mathbf{x}_I, t), x_i \in \mathbf{x}_{II,1}, x_j = h_2(\mathbf{x}_I, t), \in \mathbf{x}_{II,2} \\
163
- & \text{PF(t): a part of }f_2 = 1 - f_1^{H(t)}, 0 \leq f_1 \leq 1
164
- \end{aligned}
165
- \end{equation*}
166
-
167
143
  ![GTS1 PS](../figs/PS/GTS1.png)
168
144
 
169
145
  ![GTS1 PF](../figs/PF/GTS1.png)
@@ -211,30 +187,6 @@ class GTS2(GTS):
211
187
  \end{cases}
212
188
  \end{equation}
213
189
 
214
- with
215
-
216
- \begin{equation*}
217
- \begin{split}
218
- g(\mathbf{x},t) = 1
219
- &+ \Bigl(\bigl(\mathbf{x}_{II,1} - h_1(\mathbf{x}_I)\bigr)^T \mathbf{R}_{II,1}(t) \bigl(\mathbf{x}_{II,1} - h_1(\mathbf{x}_I)\bigr)\Bigr)^{\frac{1}{p}} \\
220
- &+ \Bigl(\bigl(\mathbf{x}_{II,2} - h_2(\mathbf{x}_I)\bigr)^T \mathbf{R}_{II,2}(t) \bigl(\mathbf{x}_{II,2} - h_2(\mathbf{x}_I)\bigr)\Bigr)^{\frac{1}{p}}
221
- \end{split}
222
- \end{equation*}
223
-
224
- where $p \geq 1$, $\mathbf{x}_I = (x_1, x_2)$, $\mathbf{x}_{II,1} = (x_3, \cdots, x_{\lfloor\frac{D}{2}\rfloor + 1})$ and $\mathbf{x}_{II,2} = (x_{\lfloor\frac{D}{2}\rfloor + 2}, \cdots, x_D)$, $c = \cot(3\pi t^2), \text{when } t^2 \neq \frac{n}{3}, n \in \mathbb{Z}, c = 1e-32, \text{otherwise}$,
225
- $h_1(\mathbf{x}_I, t) = \frac{1}{\pi}\left\vert{\arctan(c)}\right\vert$ and $h_2(\mathbf{x}_I, t) = G(t) + x_1^{H(t)}$,
226
- $\mathbf{R}_{II,1}(t)$ and $\mathbf{R}_{II,2}(t)$ are symmetric positive semidefinite matrices in the $t$-th environment,
227
- the search space is $[0,1]^2 \times [0,1]^{\lfloor\frac{D}{2}\rfloor -1} \times [-1, 2]^{\lceil\frac{D}{2}\rceil-1}$.
228
-
229
- The PF and PS at time t can be described as:
230
-
231
- \begin{equation*}
232
- \begin{aligned}
233
- & \text{PS(t): }0 \leq x_{1,2} \leq 1, x_i = h_1(\mathbf{x}_I, t), x_i \in \mathbf{x}_{II,1}, x_j = h_2(\mathbf{x}_I, t), \in \mathbf{x}_{II,2} \\
234
- & \text{PF(t): }f_2 = 2.8 - f_1^{H(t)}, 0 \leq f_1 \leq 1.5
235
- \end{aligned}
236
- \end{equation*}
237
-
238
190
  ![GTS2 PS](../figs/PS/GTS2.png)
239
191
 
240
192
  ![GTS2 PF](../figs/PF/GTS2.png)
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pydmoo
3
- Version: 0.0.16
3
+ Version: 0.0.18
4
4
  Summary: Dynamic Multi-Objective Optimization in Python (pydmoo).
5
5
  Project-URL: Homepage, https://github.com/dynoptimization/pydmoo
6
6
  Project-URL: Repository, https://github.com/dynoptimization/pydmoo
7
- Project-URL: Documentation, https://pydmoo.readthedocs.io/
7
+ Project-URL: Documentation, https://dynoptimization.github.io/pydmoo/
8
8
  Project-URL: Source, https://github.com/dynoptimization/pydmoo
9
9
  Project-URL: Issues, https://github.com/dynoptimization/pydmoo/issues
10
10
  Project-URL: Changelog, https://github.com/dynoptimization/pydmoo/releases
@@ -1,15 +1,15 @@
1
1
  pydmoo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  pydmoo/problems/__init__.py,sha256=Z4NAc7VWsUT0H-S5qJ2OF5ZKY4gI_YbWiIzJLxCC-T0,1771
3
- pydmoo/problems/dyn.py,sha256=p_TQqkPD-q6U1AUo_WCeeezC7QmPVxmFlFh3Pb549YQ,2520
3
+ pydmoo/problems/dyn.py,sha256=u_THECdGi2pY3IJF3ps06k_yv8Z5wgEr5yH8-w37e_c,2573
4
4
  pydmoo/problems/dynamic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- pydmoo/problems/dynamic/cec2015.py,sha256=y6FLXMpef4SZc5-z64GUv2IgntJN052_TqQS_gKzHH8,4311
6
- pydmoo/problems/dynamic/df.py,sha256=B6lXetwejZURvLTLRRZGFdbaBI72lJ-PD7KYZoB4yic,15410
7
- pydmoo/problems/dynamic/gts.py,sha256=7egJkVJzgks3JsyomDmcHrzXgcJkGmMSj4YwLMcT_yY,29051
5
+ pydmoo/problems/dynamic/cec2015.py,sha256=Zp_uZF8K4xtK3mrMfhvXwtnp1ohf-uote47QY1kcjIw,4368
6
+ pydmoo/problems/dynamic/df.py,sha256=Oe5zJfgDtQQOAccytOvYD4Yju8B6ojekAp8zmrJABfw,15462
7
+ pydmoo/problems/dynamic/gts.py,sha256=Oc_KRjuwfsy3VjcI_DG_RRHtolxNOm4GveW5k-KK3pI,26251
8
8
  pydmoo/response/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  pydmoo/response/ar_model.py,sha256=EmT46fEAcHJe7GrmKN9OVBv-x_nF-fZpJcPTX09FSGw,2676
10
10
  pydmoo/response/bounds.py,sha256=XvYYXeEbMWGbG_APd-GtjtL1R47wWgBhqB-eWOIyirQ,2396
11
11
  pydmoo/response/tca_model.py,sha256=hfGdJUs01lYzkCvleJ0ScAsVVIoc-EmftBu_ej_ksBg,5405
12
- pydmoo-0.0.16.dist-info/METADATA,sha256=E3PRlFJWfwiNfCGL8jmu9bKsrHGc3tCdphYXp3p5swo,2034
13
- pydmoo-0.0.16.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
14
- pydmoo-0.0.16.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
15
- pydmoo-0.0.16.dist-info/RECORD,,
12
+ pydmoo-0.0.18.dist-info/METADATA,sha256=YZiJPsGI1XD7kQdl3cOjs5bS0JAIgW5g5KzxDTwBivs,2045
13
+ pydmoo-0.0.18.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
14
+ pydmoo-0.0.18.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
15
+ pydmoo-0.0.18.dist-info/RECORD,,