pyfemtet 1.0.0a0__py3-none-any.whl → 1.0.1__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.
Potentially problematic release.
This version of pyfemtet might be problematic. Click here for more details.
- pyfemtet/_i18n/locales/ja/LC_MESSAGES/messages.mo +0 -0
- pyfemtet/_i18n/locales/ja/LC_MESSAGES/messages.po +1 -1
- pyfemtet/_util/dask_util.py +1 -1
- pyfemtet/_util/df_util.py +18 -1
- pyfemtet/_util/helper.py +9 -0
- pyfemtet/opt/__init__.py +3 -1
- pyfemtet/opt/femopt.py +22 -3
- pyfemtet/opt/history/_history.py +21 -7
- pyfemtet/opt/interface/_excel_interface/excel_interface.py +0 -2
- pyfemtet/opt/interface/_femtet_interface/femtet_interface.py +24 -11
- pyfemtet/opt/interface/_femtet_with_nx_interface/femtet_with_nx_interface.py +1 -1
- pyfemtet/opt/interface/_femtet_with_solidworks/femtet_with_solidworks_interface.py +21 -1
- pyfemtet/opt/interface/_solidworks_interface/solidworks_interface.py +21 -0
- pyfemtet/opt/interface/_surrogate_model_interface/base_surrogate_interface.py +99 -8
- pyfemtet/opt/interface/_surrogate_model_interface/botorch_interface.py +30 -3
- pyfemtet/opt/optimizer/_base_optimizer.py +58 -23
- pyfemtet/opt/optimizer/optuna_optimizer/_optuna_attribute.py +47 -57
- pyfemtet/opt/optimizer/optuna_optimizer/_optuna_optimizer.py +138 -20
- pyfemtet/opt/optimizer/optuna_optimizer/_pof_botorch/pof_botorch_sampler.py +4 -4
- pyfemtet/opt/optimizer/scipy_optimizer/_scipy_optimizer.py +19 -0
- pyfemtet/opt/problem/variable_manager/_variable_manager.py +84 -28
- {pyfemtet-1.0.0a0.dist-info → pyfemtet-1.0.1.dist-info}/METADATA +3 -2
- {pyfemtet-1.0.0a0.dist-info → pyfemtet-1.0.1.dist-info}/RECORD +27 -28
- pyfemtet/opt/interface/_surrogate/_base.py +0 -0
- {pyfemtet-1.0.0a0.dist-info → pyfemtet-1.0.1.dist-info}/LICENSE +0 -0
- {pyfemtet-1.0.0a0.dist-info → pyfemtet-1.0.1.dist-info}/LICENSE_THIRD_PARTY.txt +0 -0
- {pyfemtet-1.0.0a0.dist-info → pyfemtet-1.0.1.dist-info}/WHEEL +0 -0
- {pyfemtet-1.0.0a0.dist-info → pyfemtet-1.0.1.dist-info}/entry_points.txt +0 -0
|
@@ -149,41 +149,59 @@ class VariableManager:
|
|
|
149
149
|
# fun を持つ場合
|
|
150
150
|
if isinstance(var, ExpressionFromFunction):
|
|
151
151
|
|
|
152
|
-
#
|
|
153
|
-
|
|
152
|
+
# 関数に渡す引数の初期化
|
|
153
|
+
final_args = []
|
|
154
|
+
final_kwargs = {}
|
|
154
155
|
|
|
155
|
-
#
|
|
156
|
-
|
|
157
|
-
kw_args = var.kwargs or {}
|
|
156
|
+
# 関数のシグネチャを取得
|
|
157
|
+
params = inspect.signature(var.fun).parameters
|
|
158
158
|
|
|
159
|
-
#
|
|
160
|
-
|
|
161
|
-
|
|
159
|
+
# 用意された引数をコピー
|
|
160
|
+
user_args = list(var.args)
|
|
161
|
+
user_kwargs = var.kwargs.copy()
|
|
162
162
|
|
|
163
|
-
|
|
163
|
+
# 関数に定義されている順に組み立て
|
|
164
|
+
for p in params.values():
|
|
165
|
+
|
|
166
|
+
# def sample(a, /, b, *c, d=None, **e):
|
|
167
|
+
# ...
|
|
168
|
+
# a: POSITIONAL_OR_KEYWORD
|
|
169
|
+
# b: POSITIONAL_OR_KEYWORD
|
|
170
|
+
# c: VAR_POSITIONAL
|
|
171
|
+
# d: KEYWORD_ONLY
|
|
172
|
+
# e: VAR_KEYWORD
|
|
173
|
+
|
|
174
|
+
# 位置引数で定義されているもの
|
|
164
175
|
if p.kind <= inspect.Parameter.POSITIONAL_OR_KEYWORD:
|
|
165
176
|
|
|
166
177
|
# 変数である
|
|
167
178
|
if p.name in self.variables:
|
|
168
179
|
# order 順に見ているのですでに value が正しいはず
|
|
169
|
-
|
|
180
|
+
final_args.append(self.variables[p.name].value)
|
|
170
181
|
|
|
171
|
-
#
|
|
182
|
+
# ユーザーが供給する変数である
|
|
172
183
|
else:
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
184
|
+
# user kwargs にあるかまず確認する
|
|
185
|
+
if p.name in user_kwargs:
|
|
186
|
+
# 該当物を抜き出して args に追加
|
|
187
|
+
final_args.append(user_kwargs.pop(p.name))
|
|
188
|
+
|
|
189
|
+
# user args がまだある
|
|
190
|
+
elif len(user_args) > 0:
|
|
191
|
+
# 先頭を抜き出して args に追加
|
|
192
|
+
final_args.append(user_args.pop(0))
|
|
193
|
+
|
|
194
|
+
# pos args が空であり、kwargs の中にもない
|
|
195
|
+
else:
|
|
176
196
|
msg = []
|
|
177
|
-
for p_ in
|
|
197
|
+
for p_ in params.values():
|
|
178
198
|
if p_.kind == inspect.Parameter.VAR_POSITIONAL:
|
|
179
199
|
msg.append(f'*{p_.name}')
|
|
180
200
|
elif p_.kind == inspect.Parameter.VAR_KEYWORD:
|
|
181
201
|
msg.append(f'**{p_.name}')
|
|
182
202
|
else:
|
|
183
203
|
msg.append(p_.name)
|
|
184
|
-
raise
|
|
185
|
-
*e.args,
|
|
186
|
-
_(
|
|
204
|
+
raise RuntimeError(_(
|
|
187
205
|
'Missing arguments! '
|
|
188
206
|
'The arguments specified by `args`: {var_args} / '
|
|
189
207
|
'The arguments specified by `kwargs`: {var_kwargs} / '
|
|
@@ -191,8 +209,7 @@ class VariableManager:
|
|
|
191
209
|
var_args=var.args,
|
|
192
210
|
var_kwargs=var.kwargs,
|
|
193
211
|
msg=msg
|
|
194
|
-
|
|
195
|
-
) from None
|
|
212
|
+
))
|
|
196
213
|
|
|
197
214
|
# *args である
|
|
198
215
|
elif p.kind == inspect.Parameter.VAR_POSITIONAL:
|
|
@@ -200,25 +217,64 @@ class VariableManager:
|
|
|
200
217
|
# ユーザー定義位置引数でないとおかしい
|
|
201
218
|
assert p.name not in self.variables, _('Extra positional argument name cannot be duplicated with a variable name.')
|
|
202
219
|
|
|
203
|
-
# *args
|
|
204
|
-
|
|
220
|
+
# *args なので残り全部を抜いて pos_args に入れる
|
|
221
|
+
final_args.extend(user_args)
|
|
222
|
+
user_args = []
|
|
205
223
|
|
|
206
|
-
#
|
|
224
|
+
# キーワード引数で定義されているもの
|
|
207
225
|
elif p.kind == inspect.Parameter.KEYWORD_ONLY:
|
|
208
226
|
|
|
209
227
|
# 変数である
|
|
210
228
|
if p.name in self.variables:
|
|
211
229
|
# order 順に見ているのですでに value が正しいはず
|
|
212
|
-
|
|
230
|
+
final_kwargs.update({p.name: self.variables[p.name].value})
|
|
213
231
|
|
|
214
|
-
|
|
215
|
-
|
|
232
|
+
# ユーザーが供給する変数である
|
|
233
|
+
else:
|
|
234
|
+
# user kwargs にあるかまず確認する
|
|
235
|
+
if p.name in user_kwargs:
|
|
236
|
+
# 該当物を抜き出して kwargs に追加
|
|
237
|
+
final_kwargs.update({p.name: user_kwargs.pop(p.name)})
|
|
238
|
+
|
|
239
|
+
# user args がまだある
|
|
240
|
+
elif len(user_args) > 0:
|
|
241
|
+
# 先頭を抜き出して args に追加
|
|
242
|
+
final_kwargs.update({p.name: user_args.pop(0)})
|
|
243
|
+
|
|
244
|
+
# pos args が空であり、kwargs の中にもない
|
|
245
|
+
else:
|
|
246
|
+
msg = []
|
|
247
|
+
for p_ in params.values():
|
|
248
|
+
if p_.kind == inspect.Parameter.VAR_POSITIONAL:
|
|
249
|
+
msg.append(f'*{p_.name}')
|
|
250
|
+
elif p_.kind == inspect.Parameter.VAR_KEYWORD:
|
|
251
|
+
msg.append(f'**{p_.name}')
|
|
252
|
+
else:
|
|
253
|
+
msg.append(p_.name)
|
|
254
|
+
raise RuntimeError(_(
|
|
255
|
+
'Missing arguments! '
|
|
256
|
+
'The arguments specified by `args`: {var_args} / '
|
|
257
|
+
'The arguments specified by `kwargs`: {var_kwargs} / '
|
|
258
|
+
'Required arguments: {msg}',
|
|
259
|
+
var_args=var.args,
|
|
260
|
+
var_kwargs=var.kwargs,
|
|
261
|
+
msg=msg
|
|
262
|
+
))
|
|
216
263
|
|
|
217
|
-
|
|
264
|
+
# **kwargs である
|
|
265
|
+
elif p.kind == inspect.Parameter.VAR_KEYWORD:
|
|
266
|
+
# 変数であってはいけない
|
|
218
267
|
assert p.name not in self.variables, _('Extra keyword argument name cannot be duplicated with a variable name.')
|
|
219
268
|
|
|
269
|
+
# 残りの kwargs を移す
|
|
270
|
+
final_kwargs.update(user_kwargs)
|
|
271
|
+
user_kwargs = {}
|
|
272
|
+
|
|
273
|
+
else:
|
|
274
|
+
raise NotImplementedError(f'Unknown argument type: {p.kind=}')
|
|
275
|
+
|
|
220
276
|
# fun を実行する
|
|
221
|
-
var.value = var.fun(*
|
|
277
|
+
var.value = var.fun(*final_args, **final_kwargs)
|
|
222
278
|
|
|
223
279
|
# string expression の場合
|
|
224
280
|
elif isinstance(var, ExpressionFromString):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: pyfemtet
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: Design parameter optimization using Femtet.
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: kazuma.naito
|
|
@@ -28,7 +28,8 @@ Requires-Dist: optuna-integration (>=3.6.0,<5.0.0)
|
|
|
28
28
|
Requires-Dist: pandas (>=2.2.3,<3)
|
|
29
29
|
Requires-Dist: plotly (>=5.22.0,<6)
|
|
30
30
|
Requires-Dist: psutil (>=5.9.6,<6)
|
|
31
|
-
Requires-Dist: pywin32 (
|
|
31
|
+
Requires-Dist: pywin32 (<307) ; sys_platform == "win32" and python_version < "3.13"
|
|
32
|
+
Requires-Dist: pywin32 (>=309) ; sys_platform == "win32" and python_version >= "3.13"
|
|
32
33
|
Requires-Dist: pyyaml (>=6.0.2,<7)
|
|
33
34
|
Requires-Dist: scipy (>=1.11.4,<2)
|
|
34
35
|
Requires-Dist: torch
|
|
@@ -4,21 +4,21 @@ pyfemtet/_i18n/2. build_mo.bat,sha256=CyMa93U9wYI2tYXwd1lb99ZmlWWCVIirhXq-pDfD8G
|
|
|
4
4
|
pyfemtet/_i18n/__init__.py,sha256=myrXUHec6SWNLhYf8KY2ktpD42fmAVDpoIZP4xe259w,103
|
|
5
5
|
pyfemtet/_i18n/babel.cfg,sha256=I9-MZMHtXQ0giwl4SsDKtZJqFziRVvrFiO3HVJhcJbQ,58
|
|
6
6
|
pyfemtet/_i18n/i18n.py,sha256=zBbatQO7bkyO1MU6Y8TtrhGpDoUMP2PetRyWsINVcHc,808
|
|
7
|
-
pyfemtet/_i18n/locales/ja/LC_MESSAGES/messages.mo,sha256
|
|
8
|
-
pyfemtet/_i18n/locales/ja/LC_MESSAGES/messages.po,sha256=
|
|
7
|
+
pyfemtet/_i18n/locales/ja/LC_MESSAGES/messages.mo,sha256=7A_bNBwAdgsCldl9-MKKQoTYMj3VHOk-zjtNUqL8f2o,34436
|
|
8
|
+
pyfemtet/_i18n/locales/ja/LC_MESSAGES/messages.po,sha256=y4QIFJVELQEHLDLHaA4GNqyA8ZjBEAaHc6lWJgwgGKM,48325
|
|
9
9
|
pyfemtet/_i18n/locales/messages.pot,sha256=krqoEumXnY45pG5dm-dQPmynb-eNx1BbIfbHB0URCvE,30025
|
|
10
10
|
pyfemtet/_i18n/messages.py,sha256=mzTARnpZPZ-Pmcq8RdOyy5a4XGCCSxwxuoHjN_HJ0TM,17382
|
|
11
11
|
pyfemtet/_util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
12
|
pyfemtet/_util/closing.py,sha256=JPcgHDbW249YF20bMOX6UX-LquWoCWA14KhX-qFouR4,502
|
|
13
|
-
pyfemtet/_util/dask_util.py,sha256=
|
|
14
|
-
pyfemtet/_util/df_util.py,sha256=
|
|
13
|
+
pyfemtet/_util/dask_util.py,sha256=Wm_1p_LR1yhhZNaGgazf-yQ-eialLfmqtgBjxha6qWk,2159
|
|
14
|
+
pyfemtet/_util/df_util.py,sha256=hEae7YYhMnNmz8La2mmfAGlESqElxTdSSb-LVL2PUN4,1358
|
|
15
15
|
pyfemtet/_util/excel_macro_util.py,sha256=pUCpENpM1q6AbC7wH7rMXwnQ7nIFnabQ4xlbsli9VzM,8028
|
|
16
16
|
pyfemtet/_util/excel_parse_util.py,sha256=k8Y5EI9r0txwkieKUzlZqQ93b-9SMXldNIfq5ksWg28,5525
|
|
17
17
|
pyfemtet/_util/femtet_access_inspection.py,sha256=91E-7wzQTZum1UIsccW26717GnTM2jxf3HeOOR7-lv0,3999
|
|
18
18
|
pyfemtet/_util/femtet_autosave.py,sha256=-9DaYNsSK1QBnTOPo7EdLnMwqwAetCx_Ho5kOFMgwlk,2145
|
|
19
19
|
pyfemtet/_util/femtet_exit.py,sha256=sg3GJ2gqS_V7moOJQUr4T2AphOOat_kUnGF-0AHVB68,4256
|
|
20
20
|
pyfemtet/_util/femtet_version.py,sha256=9bWRMC_Exb-3rh5bg9eKfwBcgkxz_vg_eX99RPukcgA,580
|
|
21
|
-
pyfemtet/_util/helper.py,sha256=
|
|
21
|
+
pyfemtet/_util/helper.py,sha256=chlfSDQ764kn0mVgBXj8WXKBrje25AX6Riia8W5zkJo,2543
|
|
22
22
|
pyfemtet/_util/process_util.py,sha256=_hiRTZVZll8tnlBfXvz6GcBue4aE__jA0KnsVXe6m2A,3038
|
|
23
23
|
pyfemtet/_util/sample.xlsx,sha256=OU8mBY48YESJFQrdt4OkntlE1z-6WiyUyOV-PMr09DQ,9423
|
|
24
24
|
pyfemtet/_util/str_enum.py,sha256=b-mQRUsSZvk4zupYTxxSaOm3rtxfNyOajywZ82x9rmk,1441
|
|
@@ -27,34 +27,33 @@ pyfemtet/dispatch_extensions/__init__.py,sha256=BzxYq3x8YdkdClq4VvH4G5HTGxu5nyAh
|
|
|
27
27
|
pyfemtet/dispatch_extensions/_impl.py,sha256=Sgp350ioKcNVslXv9xRdtRjaQGRQM-BwbJYXjeildtw,11107
|
|
28
28
|
pyfemtet/logger/__init__.py,sha256=lofBrZHr0P1hsxPUiPG1SQqKxCuSBk8zGnR7vUfCHYw,516
|
|
29
29
|
pyfemtet/logger/_impl.py,sha256=uJ9el3kR-A4W2DvO_G5A6k9z2u1lkyl7GSvZ68uPy-U,6321
|
|
30
|
-
pyfemtet/opt/__init__.py,sha256
|
|
30
|
+
pyfemtet/opt/__init__.py,sha256=1LcwTddtoi8plemxkzmX0YEKiNpAZvKn9OoNQysyDLE,339
|
|
31
31
|
pyfemtet/opt/exceptions.py,sha256=M_O7jm20Y4e_QxsKF6tnEl-OrAtErUOj6hNT7eEXCO4,1327
|
|
32
|
-
pyfemtet/opt/femopt.py,sha256
|
|
32
|
+
pyfemtet/opt/femopt.py,sha256=Ufp9qJuJIEtP_lJtR-FeCkGtH_Us8imlJ1c-FVrVyLU,23186
|
|
33
33
|
pyfemtet/opt/history/__init__.py,sha256=pUp3SO4R7RGzmpNDLBg_pQH0X2yzBd-oqsHXWmB33os,201
|
|
34
|
-
pyfemtet/opt/history/_history.py,sha256=
|
|
34
|
+
pyfemtet/opt/history/_history.py,sha256=NwZvZTsWmZhvOZgC-ZqRtHPRaW6OFbXYTXUuDNjmOdQ,49299
|
|
35
35
|
pyfemtet/opt/history/_hypervolume.py,sha256=_IvGH71ZNreWvDQCG815Q2hS1OEvPFPQhUnNXf1UxRQ,4449
|
|
36
36
|
pyfemtet/opt/history/_optimality.py,sha256=6vLySZmrrklr04Qir0hGethTykf8NYFod88NDGrBrG0,2407
|
|
37
37
|
pyfemtet/opt/interface/__init__.py,sha256=D88d0yj-pQNvDij4HI2BG3OPXP5tvc5ZOomd_Jp4UE0,964
|
|
38
38
|
pyfemtet/opt/interface/_base_interface.py,sha256=A1J2junrjsFXUFulYLNhLEdTZgkZS8ev0trYRXtsSWc,6540
|
|
39
39
|
pyfemtet/opt/interface/_excel_interface/__init__.py,sha256=bFOmY18-j4RJc_dHQMe62GsxFwQSj7RWdvi6jxWuqyg,74
|
|
40
40
|
pyfemtet/opt/interface/_excel_interface/debug-excel-interface.xlsm,sha256=TM1CEOC5XtU7qYKNnHScO02kdtXT-gc5y29m2hatsm0,114259
|
|
41
|
-
pyfemtet/opt/interface/_excel_interface/excel_interface.py,sha256=
|
|
41
|
+
pyfemtet/opt/interface/_excel_interface/excel_interface.py,sha256=ihYbw_i3Bcz690AwSxVAPbRK08TVYJwyF66nFs7hMd0,39682
|
|
42
42
|
pyfemtet/opt/interface/_femtet_interface/__init__.py,sha256=snQruC8Rl_5rFeVmiqw9lmzdJ5mL42HpIlHIn5ytd8s,77
|
|
43
43
|
pyfemtet/opt/interface/_femtet_interface/_femtet_parametric.py,sha256=dEe6udq2CBpXAcKCye90sXC0UVKok14LORitobc8DK8,10282
|
|
44
|
-
pyfemtet/opt/interface/_femtet_interface/femtet_interface.py,sha256=
|
|
44
|
+
pyfemtet/opt/interface/_femtet_interface/femtet_interface.py,sha256=6EZ-7tCTfqj5NHi9G0HbOnmpPq9eYIVlAUrHtO_IiH4,44742
|
|
45
45
|
pyfemtet/opt/interface/_femtet_with_nx_interface/__init__.py,sha256=ppeoWVSmVsTmDNKpuFRVTnhjcoefQVEog3-FRiKpEe4,104
|
|
46
|
-
pyfemtet/opt/interface/_femtet_with_nx_interface/femtet_with_nx_interface.py,sha256=
|
|
46
|
+
pyfemtet/opt/interface/_femtet_with_nx_interface/femtet_with_nx_interface.py,sha256=x1drM80W7gbsZMXWh1B2rFotyEPkDbbCQkxVnl12FcI,8359
|
|
47
47
|
pyfemtet/opt/interface/_femtet_with_nx_interface/model1.prt,sha256=cYVw2izr4_9PCPHOpi46XmDVOuNZ5ksuwKqzBtCZfNA,104833
|
|
48
48
|
pyfemtet/opt/interface/_femtet_with_nx_interface/model1.x_t,sha256=BHZJwc9gCCfleIkPMx7hZmNLZ3y6sJamFv6OSsHWhW0,6804
|
|
49
49
|
pyfemtet/opt/interface/_femtet_with_nx_interface/update_model.py,sha256=2U5SJWnG7Tyu6PP_7mtf6dOguNuub8c_1DBRtF0XuT0,3036
|
|
50
50
|
pyfemtet/opt/interface/_femtet_with_solidworks/__init__.py,sha256=5McSpy2uTmJNBylCrKt4xMSq90hlSpqyXYsjwZT3yGA,128
|
|
51
|
-
pyfemtet/opt/interface/_femtet_with_solidworks/femtet_with_solidworks_interface.py,sha256=
|
|
51
|
+
pyfemtet/opt/interface/_femtet_with_solidworks/femtet_with_solidworks_interface.py,sha256=TVFC9B6qJH61ipV2m8h8xFQWxYNpmqoLsLyosrqgePM,5888
|
|
52
52
|
pyfemtet/opt/interface/_solidworks_interface/__init__.py,sha256=2c52Hfme1xdJepewRGVkPT4yhrZMQgzlCuqvHzEZPVk,95
|
|
53
|
-
pyfemtet/opt/interface/_solidworks_interface/solidworks_interface.py,sha256=
|
|
54
|
-
pyfemtet/opt/interface/_surrogate/_base.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
|
+
pyfemtet/opt/interface/_solidworks_interface/solidworks_interface.py,sha256=f-DbgD_WymMjJl4tE6XrdRfmZ3RiuTcqrgb8EqhEZ94,8326
|
|
55
54
|
pyfemtet/opt/interface/_surrogate_model_interface/__init__.py,sha256=9sjzQjJsMLdpBSpURyl8x4VQHEO_PGYgAshCHoycAPI,252
|
|
56
|
-
pyfemtet/opt/interface/_surrogate_model_interface/base_surrogate_interface.py,sha256=
|
|
57
|
-
pyfemtet/opt/interface/_surrogate_model_interface/botorch_interface.py,sha256=
|
|
55
|
+
pyfemtet/opt/interface/_surrogate_model_interface/base_surrogate_interface.py,sha256=vdYw8m09e6OCSYPsXUCXqoJcA_lpAOAYuEGmqDNgffM,6276
|
|
56
|
+
pyfemtet/opt/interface/_surrogate_model_interface/botorch_interface.py,sha256=bteAg6nPAIY8M9BoVycYRDtON7p0RLGT_RuPj0JNRtM,10279
|
|
58
57
|
pyfemtet/opt/interface/_surrogate_model_interface/debug-pof-botorch.reccsv,sha256=Clv7t2vgSWym8-uMQPtcc8-hyjwuCk-b69PjtqWqphc,1910
|
|
59
58
|
pyfemtet/opt/interface/_with_excel_settings/__init__.py,sha256=B3ZTQDNUDpZBLEVnCh2iHL_bnTJTUaclEfOFztHfl5c,2265
|
|
60
59
|
pyfemtet/opt/interface/_with_excel_settings/with_excel_settings.py,sha256=JqgS8IAkhgnzO2IqL6xJJzidwSb6K2VK8zZG95qyml8,5453
|
|
@@ -64,17 +63,17 @@ pyfemtet/opt/meta_script/__main__.py,sha256=9-QM6eZOLpZ_CxERpRu3RAMqpudorSJdPCiK
|
|
|
64
63
|
pyfemtet/opt/meta_script/sample/sample.bas,sha256=2iuSYMgPDyAdiSDVGxRu3avjcZYnULz0l8e25YBa7SQ,27966
|
|
65
64
|
pyfemtet/opt/meta_script/sample/sample.femprj,sha256=6_0ywhgXxZjdzZzQFog8mgMUEjKNCFVNlEgAWoptovk,292885
|
|
66
65
|
pyfemtet/opt/optimizer/__init__.py,sha256=A4QYeF0KHEFdwoxLfkDND7ikDQ186Ryy3oXEGdakFSg,463
|
|
67
|
-
pyfemtet/opt/optimizer/_base_optimizer.py,sha256=
|
|
66
|
+
pyfemtet/opt/optimizer/_base_optimizer.py,sha256=zOoh0o0Um2zponfxWxeHx5MV46JrkC9eYC1JmVXbbVE,31685
|
|
68
67
|
pyfemtet/opt/optimizer/optuna_optimizer/__init__.py,sha256=u2Bwc79tkZTU5dMbhzzrPQi0RlFg22UgXc-m9K9G6wQ,242
|
|
69
|
-
pyfemtet/opt/optimizer/optuna_optimizer/_optuna_attribute.py,sha256=
|
|
70
|
-
pyfemtet/opt/optimizer/optuna_optimizer/_optuna_optimizer.py,sha256=
|
|
68
|
+
pyfemtet/opt/optimizer/optuna_optimizer/_optuna_attribute.py,sha256=7eZsruVCGgMlcnf3a9Vf55FOEE-D7V777MJQajI12Cw,1842
|
|
69
|
+
pyfemtet/opt/optimizer/optuna_optimizer/_optuna_optimizer.py,sha256=CAFqKdb12rud6_akWKgxvCifIcG6DjTi5Tt7Cr2OoCs,28919
|
|
71
70
|
pyfemtet/opt/optimizer/optuna_optimizer/_pof_botorch/__init__.py,sha256=BFbMNvdXqV9kl1h340pW2sq0-cwNFV5dfTo6UnNnX2M,179
|
|
72
71
|
pyfemtet/opt/optimizer/optuna_optimizer/_pof_botorch/debug-pof-botorch.reccsv,sha256=K6oI9jPi_5yayhBrI9Tm1RX3PoWWKo74TOdqnaPsIy8,1746
|
|
73
72
|
pyfemtet/opt/optimizer/optuna_optimizer/_pof_botorch/enable_nonlinear_constraint.py,sha256=FY0fIwiFvakEdeQNv13eb1YtTXKzu2lF67HL2Hfs06w,9814
|
|
74
|
-
pyfemtet/opt/optimizer/optuna_optimizer/_pof_botorch/pof_botorch_sampler.py,sha256=
|
|
73
|
+
pyfemtet/opt/optimizer/optuna_optimizer/_pof_botorch/pof_botorch_sampler.py,sha256=yVQJAD1yJ-Q2aCRuYCCifejjFS0eZmE2IoDTnKQgMko,46822
|
|
75
74
|
pyfemtet/opt/optimizer/optuna_optimizer/wat_ex14_parametric_jp.femprj,sha256=-M54MTNrV7muZWPm9Tjptd6HDdtgUFBsRroC6ytyqa0,180970
|
|
76
75
|
pyfemtet/opt/optimizer/scipy_optimizer/__init__.py,sha256=oXx2JAVLvgz0WwIXAknuV4p2MupaiutYYvjI8hXcFwc,45
|
|
77
|
-
pyfemtet/opt/optimizer/scipy_optimizer/_scipy_optimizer.py,sha256=
|
|
76
|
+
pyfemtet/opt/optimizer/scipy_optimizer/_scipy_optimizer.py,sha256=Og4DyD45nOmnBzrRYB8g_KSMyNH6tPNgItT3j7ThyMA,12901
|
|
78
77
|
pyfemtet/opt/prediction/__init__.py,sha256=-XYo-l5YFjExMtqMKj1YUAhmGSQq_0YITS0qizj2Xbs,104
|
|
79
78
|
pyfemtet/opt/prediction/_botorch_utils.py,sha256=KhPLY4JAPC6BDw_NA_KejzMYPCtGh-Yx1dc7PY1tYVA,3985
|
|
80
79
|
pyfemtet/opt/prediction/_gpytorch_modules_extension.py,sha256=B_qUtFn06dQENOmUOObbCpkeASUKI5JpXROx8zYeaq0,5224
|
|
@@ -84,7 +83,7 @@ pyfemtet/opt/problem/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hS
|
|
|
84
83
|
pyfemtet/opt/problem/problem.py,sha256=ohdZ450XH4YoFK4T9t52t8BSja6DpFTfMePQM1DdllU,9782
|
|
85
84
|
pyfemtet/opt/problem/variable_manager/__init__.py,sha256=uzuraWUZfLzB3uZHIQHFL7uMxWvv7Oaf940zEozXtNY,476
|
|
86
85
|
pyfemtet/opt/problem/variable_manager/_string_as_expression.py,sha256=aTJ9W9Gs6BS0Z_OsxWByJs9dAt32opD2_9913MCggPg,3626
|
|
87
|
-
pyfemtet/opt/problem/variable_manager/_variable_manager.py,sha256=
|
|
86
|
+
pyfemtet/opt/problem/variable_manager/_variable_manager.py,sha256=XrcmFIfE4J_5zkz4Yx6j4QyDAuJX3M2zJ4wESf8oE1Q,12697
|
|
88
87
|
pyfemtet/opt/visualization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
89
88
|
pyfemtet/opt/visualization/_create_wrapped_components.py,sha256=9AltJHr1DM6imZfpNp867rC-uAYqQ-emdgTLChKDrl8,2513
|
|
90
89
|
pyfemtet/opt/visualization/history_viewer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -165,9 +164,9 @@ pyfemtet/opt/visualization/plotter/main_figure_creator.py,sha256=9RXz6Wt52MiSz3H
|
|
|
165
164
|
pyfemtet/opt/visualization/plotter/pm_graph_creator.py,sha256=hUvvYeckMhkE1nH0FAOkXrA5K3A8PbfpxKYaYnBllB4,10864
|
|
166
165
|
pyfemtet/opt/wat_ex14_parametric_jp.femprj,sha256=dMwQMt6yok_PbZLyxPYdmg5wJQwgQDZ4RhS76zdGLGk,177944
|
|
167
166
|
pyfemtet/opt/worker_status.py,sha256=xSVW9lcw5jzYBwnmlVzk-1zCCyvmXVOH6EoRjqVbE9M,3605
|
|
168
|
-
pyfemtet-1.0.
|
|
169
|
-
pyfemtet-1.0.
|
|
170
|
-
pyfemtet-1.0.
|
|
171
|
-
pyfemtet-1.0.
|
|
172
|
-
pyfemtet-1.0.
|
|
173
|
-
pyfemtet-1.0.
|
|
167
|
+
pyfemtet-1.0.1.dist-info/LICENSE,sha256=LWUL5LlMGjSRTvsalS8_fFuwS4VMw18fJSNWFwDK8pc,1060
|
|
168
|
+
pyfemtet-1.0.1.dist-info/LICENSE_THIRD_PARTY.txt,sha256=8_9-cgzTpmeuCqItPZb9-lyAZcH2Qp9sZTU_hYuOZIQ,191
|
|
169
|
+
pyfemtet-1.0.1.dist-info/METADATA,sha256=8GuEhflweMHbq3Ap6e5ecnyPMj3eKxMgYxtEq7hegtw,3471
|
|
170
|
+
pyfemtet-1.0.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
171
|
+
pyfemtet-1.0.1.dist-info/entry_points.txt,sha256=Tsb_l_8Z6pyyq2tRfuKiwfJUV3nq_cHoLS61foALtsg,134
|
|
172
|
+
pyfemtet-1.0.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|