desdeo 2.1.0__py3-none-any.whl → 2.2.0__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.
- desdeo/api/models/nimbus.py +8 -4
- desdeo/api/routers/emo.py +75 -104
- desdeo/api/routers/generic.py +26 -58
- desdeo/api/routers/nimbus.py +108 -247
- desdeo/api/routers/problem.py +69 -56
- desdeo/api/routers/reference_point_method.py +29 -27
- desdeo/api/routers/session.py +15 -11
- desdeo/api/routers/user_authentication.py +27 -5
- desdeo/api/routers/utils.py +42 -37
- desdeo/api/routers/utopia.py +11 -12
- desdeo/api/tests/test_routes.py +6 -5
- desdeo/emo/__init__.py +2 -0
- desdeo/emo/operators/__init__.py +1 -1
- desdeo/emo/operators/generator.py +153 -2
- desdeo/emo/options/__init__.py +4 -0
- desdeo/emo/options/generator.py +24 -0
- desdeo/problem/__init__.py +12 -11
- desdeo/problem/evaluator.py +4 -5
- desdeo/problem/gurobipy_evaluator.py +37 -12
- desdeo/problem/infix_parser.py +1 -16
- desdeo/problem/json_parser.py +7 -11
- desdeo/problem/schema.py +6 -9
- desdeo/problem/utils.py +1 -1
- desdeo/tools/pyomo_solver_interfaces.py +1 -1
- {desdeo-2.1.0.dist-info → desdeo-2.2.0.dist-info}/METADATA +21 -12
- {desdeo-2.1.0.dist-info → desdeo-2.2.0.dist-info}/RECORD +28 -28
- {desdeo-2.1.0.dist-info → desdeo-2.2.0.dist-info}/WHEEL +1 -1
- {desdeo-2.1.0.dist-info → desdeo-2.2.0.dist-info}/licenses/LICENSE +0 -0
desdeo/problem/schema.py
CHANGED
|
@@ -16,7 +16,7 @@ from collections.abc import Iterable
|
|
|
16
16
|
from enum import Enum
|
|
17
17
|
from itertools import product
|
|
18
18
|
from pathlib import Path
|
|
19
|
-
from typing import TYPE_CHECKING, Annotated, Any, Literal, Self
|
|
19
|
+
from typing import TYPE_CHECKING, Annotated, Any, Literal, Self
|
|
20
20
|
|
|
21
21
|
import numpy as np
|
|
22
22
|
from pydantic import (
|
|
@@ -61,13 +61,10 @@ def tensor_custom_error_validator(value: Any, handler: ValidatorFunctionWrapHand
|
|
|
61
61
|
raise PydanticCustomError("invalid tensor", "Input is not a valid tensor") from exc
|
|
62
62
|
|
|
63
63
|
|
|
64
|
-
Tensor =
|
|
65
|
-
"Tensor",
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
WrapValidator(tensor_custom_error_validator),
|
|
69
|
-
],
|
|
70
|
-
)
|
|
64
|
+
type Tensor = Annotated[
|
|
65
|
+
list["Tensor"] | list[VariableType] | VariableType | Literal["List"] | None,
|
|
66
|
+
WrapValidator(tensor_custom_error_validator),
|
|
67
|
+
]
|
|
71
68
|
|
|
72
69
|
|
|
73
70
|
def parse_infix_to_func(cls: "Problem", v: str | list) -> list:
|
|
@@ -756,7 +753,7 @@ class Simulator(BaseModel):
|
|
|
756
753
|
"""Path to a python file with the connection to simulators."""
|
|
757
754
|
url: Url | None = Field(
|
|
758
755
|
description=(
|
|
759
|
-
"Optional.
|
|
756
|
+
"Optional. URL to the simulator. A GET request to this URL should be used to evaluate solutions in batches."
|
|
760
757
|
),
|
|
761
758
|
default=None,
|
|
762
759
|
)
|
desdeo/problem/utils.py
CHANGED
|
@@ -115,7 +115,7 @@ def unflatten_variable_array(problem: Problem, var_array: np.ndarray) -> dict[st
|
|
|
115
115
|
# check if values remain in var_array
|
|
116
116
|
if array_i < len(var_array):
|
|
117
117
|
# some values remain, warn user, but do not raise an error
|
|
118
|
-
msg = f"Warning, the variable array had some values that were not unflattened: f{[
|
|
118
|
+
msg = f"Warning, the variable array had some values that were not unflattened: f{['...', *var_array[array_i:]]}"
|
|
119
119
|
warnings.warn(msg, stacklevel=2)
|
|
120
120
|
|
|
121
121
|
# return the variable dict
|
|
@@ -99,7 +99,7 @@ class CbcOptions(BaseModel):
|
|
|
99
99
|
|
|
100
100
|
model_config = ConfigDict(frozen=True, populate_by_name=True)
|
|
101
101
|
|
|
102
|
-
|
|
102
|
+
seconds: int = Field(
|
|
103
103
|
description="The maximum amount of time (in seconds) the solver should run. Defaults to 600.", default=600
|
|
104
104
|
)
|
|
105
105
|
"""The maximum amount of time (in seconds) the solver should run. Defaults to 600."""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: desdeo
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.2.0
|
|
4
4
|
Summary: DESDEO is a modular and open source framework for interactive multiobjective optimization.
|
|
5
5
|
License-Expression: MIT
|
|
6
6
|
License-File: LICENSE
|
|
@@ -40,10 +40,14 @@ Project-URL: Homepage, https://github.com/industrial-optimization-group/DESDEO
|
|
|
40
40
|
Project-URL: Repository, https://github.com/industrial-optimization-group/DESDEO
|
|
41
41
|
Description-Content-Type: text/markdown
|
|
42
42
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
43
|
+

|
|
44
|
+
[](https://pypi.org/project/desdeo/)
|
|
45
|
+
[](https://desdeo.readthedocs.io/en/latest/)
|
|
46
|
+

|
|
47
|
+
[](https://discord.gg/uGCEgQTJyY)
|
|
46
48
|
|
|
49
|
+
|
|
50
|
+
# DESDEO: the open-source software framework for interactive multiobjective optimization
|
|
47
51
|
## Introduction
|
|
48
52
|
|
|
49
53
|
DESDEO is an open-source framework for interactive multiobjective optimization
|
|
@@ -74,13 +78,17 @@ decision-support using the framework. __The
|
|
|
74
78
|
web-API is currently under heavy development, and is subject to changes.__
|
|
75
79
|
3. The __web-GUI__ (WIP), which implements a web-based interface for utilizing
|
|
76
80
|
the interactive methods and tools for modeling and solving multiobjective
|
|
77
|
-
optimization problems.
|
|
81
|
+
optimization problems.
|
|
82
|
+
|
|
83
|
+
> __The web-GUI relies heavily on the web-API, and is also being actively developed currently, and therefore subject to sudden changes.__
|
|
78
84
|
|
|
79
85
|
For developing and experimenting with interactive multiobjective optimization
|
|
80
86
|
methods on a "grass root" level, the __core-logic__ provides the necessary
|
|
81
|
-
tools. For deploying interactive methods, the __web-API__ and the
|
|
87
|
+
tools. For deploying interactive methods, the __web-API__ and the __web-GUI__
|
|
82
88
|
play a central role.
|
|
83
89
|
|
|
90
|
+
> Users interested in using or developing the web-API and/or web-GUI are highly encouraged to express such intentions on our [Discord server](https://discord.gg/uGCEgQTJyY)!.
|
|
91
|
+
|
|
84
92
|
DESDEO is an open-source project and everybody is welcome to contribute!
|
|
85
93
|
|
|
86
94
|
## Core-logic: key features
|
|
@@ -112,11 +120,12 @@ issue](https://github.com/industrial-optimization-group/DESDEO/issues/245).
|
|
|
112
120
|
|
|
113
121
|
## Web-GUI: key features
|
|
114
122
|
|
|
115
|
-
DESDEO's web-GUI is currently
|
|
116
|
-
|
|
117
|
-
|
|
123
|
+
DESDEO's web-GUI is currently under active development. Once it stabilized, its
|
|
124
|
+
key features will be listed here. In the meantime, the interested user can
|
|
125
|
+
follow (and contribute!) the development progress of the web-API in [this
|
|
126
|
+
issue](https://github.com/industrial-optimization-group/DESDEO/issues/251).
|
|
118
127
|
|
|
119
|
-
## Installation instructions
|
|
128
|
+
## Installation instructions (core-logic)
|
|
120
129
|
|
|
121
130
|
DESDEO is available on PyPI to be installed via pip:
|
|
122
131
|
|
|
@@ -175,12 +184,12 @@ this repository's master branch is considered to be _DESDEO 2.0_.
|
|
|
175
184
|
|
|
176
185
|
## Funding
|
|
177
186
|
|
|
178
|
-
Currently, DESDEO's development
|
|
187
|
+
Currently, DESDEO's development has been funded by projects granted by the
|
|
179
188
|
[Research Council of Finland](https://www.aka.fi/en/). The most recent ones
|
|
180
189
|
include:
|
|
181
190
|
|
|
182
191
|
- DESIDES (project 355346)
|
|
183
192
|
- UTOPIA (project 352784)
|
|
184
193
|
- DAEMON (project 322221)
|
|
185
|
-
|
|
194
|
+
- DESDEO (project 287496)
|
|
186
195
|
|
|
@@ -22,7 +22,7 @@ desdeo/api/models/gdm/gdm_score_bands.py,sha256=C2RMO8Q-kkaIlljBstqjkjY6kSzKLsA9
|
|
|
22
22
|
desdeo/api/models/gdm/gnimbus.py,sha256=W0WulzY4qWi510lnBnTUrN-VFfkn4cES5pL1iHi_HwI,4709
|
|
23
23
|
desdeo/api/models/generic.py,sha256=TxCtdNoR0lx5j2IBvItxhGiiSQz77orZRl1VmdHdQbQ,4345
|
|
24
24
|
desdeo/api/models/generic_states.py,sha256=vBEwE7l2s1U7fr-xOaePfsRBrL0CMaZRIVF7Y1_mJiY,12848
|
|
25
|
-
desdeo/api/models/nimbus.py,sha256=
|
|
25
|
+
desdeo/api/models/nimbus.py,sha256=w5Ba1i_5NRFYLsOhZnEjXiAFFY-tHQa-apOewMAuUbY,6172
|
|
26
26
|
desdeo/api/models/preference.py,sha256=BnsRR_JBEdJsz0C3aOpOtQ5FZU5cO4ZlzGAPTEe_nI8,4719
|
|
27
27
|
desdeo/api/models/problem.py,sha256=wO5j4Ytjmo1FE-KSL3elO0oB-7UnCY_7lJLjublmA7Q,26474
|
|
28
28
|
desdeo/api/models/reference_point_method.py,sha256=afEX6CKrgvrCh7yYBfEGTcKiB1cNDVEsJ6-KVB-T4-w,678
|
|
@@ -35,7 +35,7 @@ desdeo/api/routers/_NAUTILUS.py,sha256=rNrbWUjPGvslIpxybMi44vNCUMeewsVwNKcUwvBPw
|
|
|
35
35
|
desdeo/api/routers/_NAUTILUS_navigator.py,sha256=64i9Fsa-P69K39S_3iGfN5BHlNRgeC6Ha2g6__MsECw,9802
|
|
36
36
|
desdeo/api/routers/_NIMBUS.py,sha256=20IfUuKYc6SAmyLutmDPbPwJulnq-PyLLUYhFFqKz3o,28806
|
|
37
37
|
desdeo/api/routers/__init__.py,sha256=hJXYK27BbnIR_ShlYnHJOzHid0ZXABkDL3rB1SVuUgI,111
|
|
38
|
-
desdeo/api/routers/emo.py,sha256=
|
|
38
|
+
desdeo/api/routers/emo.py,sha256=2PAnNN_GrwqMf-VemFY0rUkMGz7ARwLaurL4eLY5vjo,17766
|
|
39
39
|
desdeo/api/routers/enautilus.py,sha256=-wUH4PJl_-Ko0ivOCTcGPfxPDA2iUn3jJc9IESYZ-Y4,9157
|
|
40
40
|
desdeo/api/routers/gdm/gdm_aggregate.py,sha256=QrT3FOCvJXGhDhlg22rqe3JeyRY3nHqJzTAGKAQR9oI,8956
|
|
41
41
|
desdeo/api/routers/gdm/gdm_base.py,sha256=5nEab8qPoIeRcyI3DybS4OncdE1bViGDI7oBZifoSsA,14164
|
|
@@ -43,44 +43,44 @@ desdeo/api/routers/gdm/gdm_score_bands/gdm_score_bands_manager.py,sha256=NLiZdRJ
|
|
|
43
43
|
desdeo/api/routers/gdm/gdm_score_bands/gdm_score_bands_routers.py,sha256=GYxjL3cpCgrqk-oRmC0wX61b9PB0mc0mE_0mVdpLZH4,15026
|
|
44
44
|
desdeo/api/routers/gdm/gnimbus/gnimbus_manager.py,sha256=Nqk06HYVO6lM-g1hoihB_J6_Iw2oKAsF28xeTxRtj_4,26854
|
|
45
45
|
desdeo/api/routers/gdm/gnimbus/gnimbus_routers.py,sha256=vObjUUemINEp5Brk1CPDCOYp4Hzrz2XbNYu_rPw9LNo,22913
|
|
46
|
-
desdeo/api/routers/generic.py,sha256=
|
|
47
|
-
desdeo/api/routers/nimbus.py,sha256=
|
|
48
|
-
desdeo/api/routers/problem.py,sha256=
|
|
49
|
-
desdeo/api/routers/reference_point_method.py,sha256=
|
|
50
|
-
desdeo/api/routers/session.py,sha256=
|
|
46
|
+
desdeo/api/routers/generic.py,sha256=MhCizImj9ukVqUEbd3K1dr-4Da41eApQzJ0R_uM85W8,7569
|
|
47
|
+
desdeo/api/routers/nimbus.py,sha256=Ex6igiEKO6-mYuoxhrK_B2q1aXjbYKCgadN_n1YeCwE,21216
|
|
48
|
+
desdeo/api/routers/problem.py,sha256=OvhNkKwSpGY3oyhTetiBaFreHx87dtOXZPSqSb96Bqw,10606
|
|
49
|
+
desdeo/api/routers/reference_point_method.py,sha256=pugEPSERTlGzwP66aGgYRFHnakP9bxUc7usD17VoTfw,2771
|
|
50
|
+
desdeo/api/routers/session.py,sha256=H6G1PtK5KIVpEvhpz0-RdIma5TN-S7Bedv_zu7E7WHs,3164
|
|
51
51
|
desdeo/api/routers/test.py,sha256=gvULBP3DvCaMwnnNQDaXSCxrav0IR5awQrsAoEn3dh0,434
|
|
52
|
-
desdeo/api/routers/user_authentication.py,sha256=
|
|
53
|
-
desdeo/api/routers/utils.py,sha256=
|
|
54
|
-
desdeo/api/routers/utopia.py,sha256=
|
|
52
|
+
desdeo/api/routers/user_authentication.py,sha256=LGcL-0SfT_BZveqIA4_u59LxUF7Ol7lQE5CSvHHPLLg,17730
|
|
53
|
+
desdeo/api/routers/utils.py,sha256=O3fi4Yj0fYM92uUmUUgA8tqG5omF9SvxGSiBTO3gWbI,7745
|
|
54
|
+
desdeo/api/routers/utopia.py,sha256=MWxoKNd5ah6X6W46BAQJNJt8tXFnrjy_vR52IQDJ6gs,8352
|
|
55
55
|
desdeo/api/schema.py,sha256=nIxVGlsUt5cvpk3FdeppfwBWVdB7OJDvb_jzjVwMm-I,2623
|
|
56
56
|
desdeo/api/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
57
|
desdeo/api/tests/conftest.py,sha256=gcjhWYcvBW1VpyAWCf-VyDW_VXbhYdeC18-lvsc5Y1U,4887
|
|
58
58
|
desdeo/api/tests/test_enautilus.py,sha256=Sc0ycVe_ckPmQI_SxiJUaIOQEtHohwBpb28btB9NeMA,15267
|
|
59
59
|
desdeo/api/tests/test_models.py,sha256=yNvemg43TmcAVHglB-CyhApCbOT1-DFYkQdH7q2efx8,37393
|
|
60
|
-
desdeo/api/tests/test_routes.py,sha256=
|
|
60
|
+
desdeo/api/tests/test_routes.py,sha256=ytYbO3yVzWe4NclQRLh1mcCelQJNdEBo0PjdnBInxRo,40953
|
|
61
61
|
desdeo/api/utils/_database.py,sha256=qJAdjCWmZpT8x7Sdnet9rWakXaFmBzQW0yNTZfSzsJE,7966
|
|
62
62
|
desdeo/api/utils/_logger.py,sha256=Zo163Zi9ZJc8hJEeMDzI7pGSeiJtRf79wRSidtK0ZXI,668
|
|
63
63
|
desdeo/api/utils/database.py,sha256=iQPHsa5HvJ0hSAi4980-tRV6PTbz9S54JIFeCIzHwaM,1162
|
|
64
64
|
desdeo/api/utils/emo_database.py,sha256=XKmS-O3bnK9q6OQ6klxVkhWbKnY0fku9dJe5X-RRLQ8,1316
|
|
65
65
|
desdeo/core.py,sha256=MruvDrZQhBarLi7x1UBPyaQ7WA_nZ5Gb6BPfSfCxBjI,1258
|
|
66
|
-
desdeo/emo/__init__.py,sha256=
|
|
66
|
+
desdeo/emo/__init__.py,sha256=BDCx_9gmglohRZdoQWFXrvWG_Pvpc-98y433404MV7k,5318
|
|
67
67
|
desdeo/emo/hooks/archivers.py,sha256=PZxAsuISikrnlESU0NlFdeZiOblvbNWxivrfmAaT1nI,7055
|
|
68
68
|
desdeo/emo/methods/EAs.py,sha256=2Wd-_QzCSWMX7coxFxo1gEVmL0PfmpuWT2XLlPQgj4g,23003
|
|
69
69
|
desdeo/emo/methods/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
70
70
|
desdeo/emo/methods/bases.py,sha256=d506vIEwOhRtEXZ1Ali7Y0WB2_ASfHfSGm_Tv4KPDGg,341
|
|
71
71
|
desdeo/emo/methods/templates.py,sha256=KjUcnVs_-PGde_9GH6f9cpWdw3-3JNRoQenvdYBkWg4,5068
|
|
72
|
-
desdeo/emo/operators/__init__.py,sha256=
|
|
72
|
+
desdeo/emo/operators/__init__.py,sha256=EZ6wdIr2Wbs3e_oKgwYKIYqxGnGVXjojXFAI8tP3W-A,41
|
|
73
73
|
desdeo/emo/operators/crossover.py,sha256=6kXxtQxscpLHistgJzVMtg8mrI27YL9jcEZMD0vob68,49488
|
|
74
74
|
desdeo/emo/operators/evaluator.py,sha256=0WZbw48k9fY8AgIA7F7SgIJXThyNj4qKVwk3uv8-mGk,4074
|
|
75
|
-
desdeo/emo/operators/generator.py,sha256=
|
|
75
|
+
desdeo/emo/operators/generator.py,sha256=kfN0VX6VcEA5nA5YHwm2svynXUw8lv0CJkCqX6vXW4A,25415
|
|
76
76
|
desdeo/emo/operators/mutation.py,sha256=SSn2h9CKm2B34A0tNTTuJnCRCVLVyYKiDCRmSi8cqEs,47817
|
|
77
77
|
desdeo/emo/operators/scalar_selection.py,sha256=-li-AsjTtSDv6S-Q6epjKJ9ocsotgTZV3f_q_c-Z-wA,8774
|
|
78
78
|
desdeo/emo/operators/selection.py,sha256=sE1PJqkBh_Z6cdg4zNbDvXRLHxHhqBcvB0s4P4GmRG0,77468
|
|
79
79
|
desdeo/emo/operators/termination.py,sha256=zaAAmQZB-X6L5x8YRWLg7Yt11XxshQfHaBirlXCOKPw,11263
|
|
80
|
-
desdeo/emo/options/__init__.py,sha256=
|
|
80
|
+
desdeo/emo/options/__init__.py,sha256=IyDE-6a8W7Mi7Rj-aKdAkagZwbsSFZxxH2rh9g5_IiY,3282
|
|
81
81
|
desdeo/emo/options/algorithms.py,sha256=k88OHAxbsXKUjY1GcX8N6MbLxuQLlmFB2ttAELVqI5w,16756
|
|
82
82
|
desdeo/emo/options/crossover.py,sha256=ahvuuRPQ0XStI3IUrZX0qKEH13CFsdxA7g8Nk8atwOY,6365
|
|
83
|
-
desdeo/emo/options/generator.py,sha256=
|
|
83
|
+
desdeo/emo/options/generator.py,sha256=dg1JIvr801S_D_ZBjoXGkjps43P0ILsmcGWI_3cHkuA,5252
|
|
84
84
|
desdeo/emo/options/mutation.py,sha256=htBOSULDJ8TlUv5KoXwu1wb-9eTP-g_-d1ahR84bZlY,8854
|
|
85
85
|
desdeo/emo/options/repair.py,sha256=azC-_IpQQWD8SUEFpe6NKSwp8a8DZkBv0YcQw-TZBoA,2178
|
|
86
86
|
desdeo/emo/options/scalar_selection.py,sha256=9r9oEgTrf7-jfVyf16iuNAfwdaSV3S4N-ix5d2o6Snk,2462
|
|
@@ -103,17 +103,17 @@ desdeo/mcdm/nautilus_navigator.py,sha256=Vl-BES3JRI0Yquey7gdMJ1p1NIwC2HN3qwfBKvP
|
|
|
103
103
|
desdeo/mcdm/nimbus.py,sha256=Qww2Exl5phEdidj1XjgN7gsUO_GL7WfXmiyPkBwZq6Y,19045
|
|
104
104
|
desdeo/mcdm/pareto_navigator.py,sha256=ob-b19Lkzeef4Q2MzrBI9J6X-aiMIC4wBkiOVd_9Ne8,9987
|
|
105
105
|
desdeo/mcdm/reference_point_method.py,sha256=Cz5AE7haPofcJHn3ooyxnFNkAyLrZ5QNHtmFix3DfRU,8307
|
|
106
|
-
desdeo/problem/__init__.py,sha256=
|
|
107
|
-
desdeo/problem/evaluator.py,sha256=
|
|
106
|
+
desdeo/problem/__init__.py,sha256=UJp1bKzQv88t_C6iOwHmzTXfHvxmSCloDrz5Feaf85M,1973
|
|
107
|
+
desdeo/problem/evaluator.py,sha256=ZII8dW92hMOo4EoritYLdEbX4DLR6f30PPxmxGwRwm4,26340
|
|
108
108
|
desdeo/problem/external/__init__.py,sha256=1EB8NMYOerUDw4S-yS5l9J9EETSe8yaJA3Ox2_AUwIs,501
|
|
109
109
|
desdeo/problem/external/core.py,sha256=cd3rETrz3JJE7xVcRW1B0_daCbRyfPqnBOwF7LeEgpQ,13099
|
|
110
110
|
desdeo/problem/external/pymoo_provider.py,sha256=aleBP0gGeHQ9tQNpkLhwr8VIuVbqojE85QllxUvs9DE,10430
|
|
111
111
|
desdeo/problem/external/runtime.py,sha256=nvIRH3gQjfc1g_-ErgyxxeBN0-OitO5lKg4BbeDoKDw,1476
|
|
112
|
-
desdeo/problem/gurobipy_evaluator.py,sha256=
|
|
113
|
-
desdeo/problem/infix_parser.py,sha256=
|
|
114
|
-
desdeo/problem/json_parser.py,sha256=
|
|
112
|
+
desdeo/problem/gurobipy_evaluator.py,sha256=hboZEvVbvwJ5er4K1BGGKpOYGCEMyXEQupmBkzFbqZc,25077
|
|
113
|
+
desdeo/problem/infix_parser.py,sha256=XQDiWhD58ik_KdrQk1rcQSxEDRZFeh0VgFcp54YD6Yw,13584
|
|
114
|
+
desdeo/problem/json_parser.py,sha256=ShqtT9iUW8Kx56xS0ApGniau6yQLGwr5jh62VIj2KwQ,40080
|
|
115
115
|
desdeo/problem/pyomo_evaluator.py,sha256=46RP4V9G6ufMnlQkvfOCtLBw8QuNRbTmlLTtqmWmGQU,20254
|
|
116
|
-
desdeo/problem/schema.py,sha256=
|
|
116
|
+
desdeo/problem/schema.py,sha256=S9r-Xe8jz7PFACTZpP5-GhixzBx1ZFMDh-4pQXDOnPk,78980
|
|
117
117
|
desdeo/problem/simulator_evaluator.py,sha256=pdv3XD2dUUmnZPa70tEZQ5QeadQGrPsM15P8yhEenq0,19106
|
|
118
118
|
desdeo/problem/sympy_evaluator.py,sha256=nQmNN9Hjr66eoR2k1vAN82o3a-qiYLycOETAHGKBgcw,9479
|
|
119
119
|
desdeo/problem/testproblems/__init__.py,sha256=ii9qc2k1ym_qnzE-BXJbMbCe_068Q35zBCbOZ0g_f_U,2800
|
|
@@ -138,7 +138,7 @@ desdeo/problem/testproblems/simulator_problem.py,sha256=1Kf9VetifS5oWNJnrinBRiWx
|
|
|
138
138
|
desdeo/problem/testproblems/single_objective.py,sha256=gP8eqLNCbY_D2lX2JYIMotqbNWQINXo16HfYUtnHFZI,7547
|
|
139
139
|
desdeo/problem/testproblems/spanish_sustainability_problem.py,sha256=peB2jirtmwno_02G_43YZUukZPkfpc8Q14wn6KIsnRU,27120
|
|
140
140
|
desdeo/problem/testproblems/zdt_problem.py,sha256=dRDqMkc6YovVdthmChTfSgzGkXwQprsJ-1_1uG0OQQs,7659
|
|
141
|
-
desdeo/problem/utils.py,sha256=
|
|
141
|
+
desdeo/problem/utils.py,sha256=2X_g53W5hZhGdl0sM3jz9WFbQTlSa33Fe6RnaYwaISg,10661
|
|
142
142
|
desdeo/tools/GenerateReferencePoints.py,sha256=b4ykSPi0kM-FHFYmCNUDkpgiuvTxZc2EWMsylAliDYs,7353
|
|
143
143
|
desdeo/tools/__init__.py,sha256=ErDhU15t852ZftdLKGpTmoxZoqgzYjJ6GQzJNHFUo0U,3210
|
|
144
144
|
desdeo/tools/desc_gen.py,sha256=ge5Q0L86i-jR8PYiM9LOY8kKeXZu4egzg7cfY-8tLLY,910
|
|
@@ -155,7 +155,7 @@ desdeo/tools/ng_solver_interfaces.py,sha256=sTp1pph7xvXlY8ZpeytALQUBrTKTl3iuDmrJ
|
|
|
155
155
|
desdeo/tools/non_dominated_sorting.py,sha256=CMEcnB4WCUwWgIFwaBrsQ1dEqAGlta-PUh7fFHJeHtg,4969
|
|
156
156
|
desdeo/tools/patterns.py,sha256=KUyfRS40jztW9SvujBHWRs0jSGuO3Tjdp-VQxBunVFc,13156
|
|
157
157
|
desdeo/tools/proximal_solver.py,sha256=wMTer37m4NemBnwCJYFclymVjmrrfT7QIytnHZm3S74,4279
|
|
158
|
-
desdeo/tools/pyomo_solver_interfaces.py,sha256=
|
|
158
|
+
desdeo/tools/pyomo_solver_interfaces.py,sha256=ItS70JyLBqPYa4Nj5n8OAODF4swBD1LWbJ-EletPuvw,18192
|
|
159
159
|
desdeo/tools/reference_vectors.py,sha256=nk6Ef4lZVardyY1MfzhRZ-_HL-0QujNsNw-qw3KEPrk,7517
|
|
160
160
|
desdeo/tools/scalarization.py,sha256=PmKkqrdg4uUvzpBzZPVgrmfnreYehbRSVCv_YXbSsvM,87116
|
|
161
161
|
desdeo/tools/scipy_solver_interfaces.py,sha256=ysuemSClFWgK40Y0tlc3kjt253GWIWKaG8yBHkBf8RM,18525
|
|
@@ -174,7 +174,7 @@ desdeo/utopia_stuff/utopia_db_init.py,sha256=BlvJNxZE5Pgtr_aEUNBuCjPONi19FT4-73k
|
|
|
174
174
|
desdeo/utopia_stuff/utopia_problem.py,sha256=ZIoYDqvlspfcK0IFBZ3XgBB5qCB0BSSYRU5KmOwWZEM,15190
|
|
175
175
|
desdeo/utopia_stuff/utopia_problem_old.py,sha256=G-Qtrmg7Uip2M0QEEXKbIHlCBcM4WfWDvM1Rut5LzMU,16201
|
|
176
176
|
desdeo/utopia_stuff/utopia_reference_solutions.py,sha256=uU1FTOATg9Mx19ENidoSJF0hAzWvud4zCzR54qW_GO4,2536
|
|
177
|
-
desdeo-2.
|
|
178
|
-
desdeo-2.
|
|
179
|
-
desdeo-2.
|
|
180
|
-
desdeo-2.
|
|
177
|
+
desdeo-2.2.0.dist-info/METADATA,sha256=D2rhb3RWPTFobyc-rdqWff4K9ARDSCwxauaHBCt9j60,9261
|
|
178
|
+
desdeo-2.2.0.dist-info/WHEEL,sha256=kJCRJT_g0adfAJzTx2GUMmS80rTJIVHRCfG0DQgLq3o,88
|
|
179
|
+
desdeo-2.2.0.dist-info/licenses/LICENSE,sha256=OWc9n9JaYCMc9dTTdOUv042049jOjm1cmQyJ0nkRbJk,1129
|
|
180
|
+
desdeo-2.2.0.dist-info/RECORD,,
|
|
File without changes
|