nextroute 1.11.4__cp39-cp39-win_amd64.whl → 1.12.3__cp39-cp39-win_amd64.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.
- nextroute/__about__.py +1 -1
- nextroute/bin/nextroute.exe +0 -0
- nextroute/options.py +33 -1
- {nextroute-1.11.4.dist-info → nextroute-1.12.3.dist-info}/METADATA +3 -2
- {nextroute-1.11.4.dist-info → nextroute-1.12.3.dist-info}/RECORD +8 -8
- {nextroute-1.11.4.dist-info → nextroute-1.12.3.dist-info}/WHEEL +1 -1
- {nextroute-1.11.4.dist-info → nextroute-1.12.3.dist-info/licenses}/LICENSE +0 -0
- {nextroute-1.11.4.dist-info → nextroute-1.12.3.dist-info}/top_level.txt +0 -0
nextroute/__about__.py
CHANGED
nextroute/bin/nextroute.exe
CHANGED
|
Binary file
|
nextroute/options.py
CHANGED
|
@@ -81,10 +81,12 @@ class Options(BaseModel):
|
|
|
81
81
|
MODEL_OBJECTIVES_CAPACITIES: str = ""
|
|
82
82
|
"""
|
|
83
83
|
Capacity objective, provide triple for each resource
|
|
84
|
-
`name
|
|
84
|
+
`name=default;factor=1.0;offset=0.0`.
|
|
85
85
|
"""
|
|
86
86
|
MODEL_OBJECTIVES_CLUSTER: float = 0.0
|
|
87
87
|
"""Factor to weigh the cluster objective."""
|
|
88
|
+
MODEL_OBJECTIVES_DISTANCE: float = 0.0
|
|
89
|
+
"""Factor to weigh the distance objective."""
|
|
88
90
|
MODEL_OBJECTIVES_EARLYARRIVALPENALTY: float = 1.0
|
|
89
91
|
"""Factor to weigh the early arrival objective."""
|
|
90
92
|
MODEL_OBJECTIVES_LATEARRIVALPENALTY: float = 1.0
|
|
@@ -143,6 +145,36 @@ class Options(BaseModel):
|
|
|
143
145
|
"""Relative threshold for significant improvement."""
|
|
144
146
|
SOLVE_RUNDETERMINISTICALLY: bool = False
|
|
145
147
|
"""Run the parallel solver deterministically."""
|
|
148
|
+
SOLVE_SOLVER_PLANGROUPSIZE_DELTA: int = 0
|
|
149
|
+
"""Delta for the plan group size parameter."""
|
|
150
|
+
SOLVE_SOLVER_PLANGROUPSIZE_DELTAAFTERITERATIONS: int = 1000000000
|
|
151
|
+
"""Delta after each iteration for the plan group size parameter."""
|
|
152
|
+
SOLVE_SOLVER_PLANGROUPSIZE_MAXVALUE: int = 2
|
|
153
|
+
"""Maximum value for the plan group size parameter."""
|
|
154
|
+
SOLVE_SOLVER_PLANGROUPSIZE_MINVALUE: int = 2
|
|
155
|
+
"""Minimum value for the plan group size parameter."""
|
|
156
|
+
SOLVE_SOLVER_PLANGROUPSIZE_SNAPBACKAFTERIMPROVEMENT: bool = True
|
|
157
|
+
"""Snap back to start value after improvement of best solution for the plan group size parameter."""
|
|
158
|
+
SOLVE_SOLVER_PLANGROUPSIZE_STARTVALUE: int = 2
|
|
159
|
+
"""Start value for the plan group size parameter."""
|
|
160
|
+
SOLVE_SOLVER_PLANGROUPSIZE_ZIGZAG: bool = True
|
|
161
|
+
"""Zigzag between min and max value like a jig saw for the plan group size parameter."""
|
|
162
|
+
SOLVE_SOLVER_UNPLANUNITS_DELTA: int = 2
|
|
163
|
+
"""Delta for the unplan units parameter."""
|
|
164
|
+
SOLVE_SOLVER_UNPLANUNITS_DELTAAFTERITERATIONS: int = 125
|
|
165
|
+
"""Delta after each iteration for the unplan units parameter."""
|
|
166
|
+
SOLVE_SOLVER_UNPLANUNITS_MAXVALUE: int = -1
|
|
167
|
+
"""Maximum value for the unplan units parameter."""
|
|
168
|
+
SOLVE_SOLVER_UNPLANUNITS_MINVALUE: int = 2
|
|
169
|
+
"""Minimum value for the unplan units parameter."""
|
|
170
|
+
SOLVE_SOLVER_UNPLANUNITS_SNAPBACKAFTERIMPROVEMENT: bool = True
|
|
171
|
+
"""Snap back to start value after improvement of best solution for the unplan units parameter."""
|
|
172
|
+
SOLVE_SOLVER_UNPLANUNITS_STARTVALUE: int = 2
|
|
173
|
+
"""Start value for the unplan units parameter."""
|
|
174
|
+
SOLVE_SOLVER_UNPLANUNITS_ZIGZAG: bool = True
|
|
175
|
+
"""Zigzag between min and max value like a jig saw for the unplan units parameter."""
|
|
176
|
+
SOLVE_SOLVER_UNPLANWEIGHTS: str = "Vehicle:3,Island:1,Location:293"
|
|
177
|
+
"""Unplan heuristic weights parameter."""
|
|
146
178
|
SOLVE_STARTSOLUTIONS: int = -1
|
|
147
179
|
"""
|
|
148
180
|
Number of solutions to generate on top of those passed in; one solution
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: nextroute
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.12.3
|
|
4
4
|
Summary: Nextroute is an engine for solving Vehicle Routing Problems (VRPs).
|
|
5
5
|
Author-email: Nextmv <tech@nextmv.io>
|
|
6
6
|
Maintainer-email: Nextmv <tech@nextmv.io>
|
|
@@ -109,6 +109,7 @@ Requires-Python: >=3.8
|
|
|
109
109
|
Description-Content-Type: text/markdown
|
|
110
110
|
License-File: LICENSE
|
|
111
111
|
Requires-Dist: pydantic>=2.5.2
|
|
112
|
+
Dynamic: license-file
|
|
112
113
|
|
|
113
114
|
# Nextroute
|
|
114
115
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
nextroute/__about__.py,sha256=
|
|
1
|
+
nextroute/__about__.py,sha256=saO0FMzizEmvWgtyJZLhnrbHtXYJQTvxUQm2sGT6y7s,60
|
|
2
2
|
nextroute/__init__.py,sha256=Ai-wDfMB-Yd8WsI42vjuQKlNOA7bYZpqTIArtXWfdPY,547
|
|
3
3
|
nextroute/base_model.py,sha256=dKv6OdyXcZm83NhDAS1eTKMDUyKJVUP6EKX8cDJDe_M,565
|
|
4
|
-
nextroute/options.py,sha256=
|
|
4
|
+
nextroute/options.py,sha256=CbRte3asYMZcAYzwhT-0g-CU2vZltSsq1d73yDdO8Fw,10540
|
|
5
5
|
nextroute/solve.py,sha256=UWBKh1884aper0dAK--cDsbfNuuc8TJGE4tfhom9844,4337
|
|
6
6
|
nextroute/version.py,sha256=2vL_WuVQA76en7WJTbof4cJbHOTljpCA5nL7DGbgFvU,337
|
|
7
|
-
nextroute/bin/nextroute.exe,sha256=
|
|
7
|
+
nextroute/bin/nextroute.exe,sha256=AVJ2Q2vzcLMc65b9srk4eXfoQ_wUHuTICDQkBEio4_A,14828544
|
|
8
8
|
nextroute/check/__init__.py,sha256=KCNtywi2e8jQeDyfEkg_Vo4Mu11lYC2CxwntC1JEZjY,1331
|
|
9
9
|
nextroute/check/schema.py,sha256=ue5Xb4gohz_DQSHWZ61i-IK6DRMppsVYKmilcsxcs9Q,5998
|
|
10
10
|
nextroute/schema/__init__.py,sha256=AHzMPxEel3udVhKzVRwV3642qLarZohfc31xhovofDw,1196
|
|
@@ -14,13 +14,13 @@ nextroute/schema/output.py,sha256=46nvLAw3QXSgYUCVE13_fGn5wHXpDpGZGuf7YxsLmmk,49
|
|
|
14
14
|
nextroute/schema/statistics.py,sha256=ICbCa7V0X2bHGEj_yDMq6NV9euG1qOYOYNH-ZosEzto,3749
|
|
15
15
|
nextroute/schema/stop.py,sha256=LU4-i4cWaZVg_86bgVBRbX2CRPrW715BRy_I7eKw3cI,2264
|
|
16
16
|
nextroute/schema/vehicle.py,sha256=K_mAgM6p6Ef0HXcDC2g7AbvNPxxhnSbjduGsVV4Eazg,2607
|
|
17
|
+
nextroute-1.12.3.dist-info/licenses/LICENSE,sha256=4jrNU-0mMZDGEdwQi9vJ7w-Ep59Kqc7XcOLhDkQbCnM,4194
|
|
17
18
|
tests/schema/__init__.py,sha256=UrdqXQHUHkSG7vHemeoeJtUm2_afa6-KFo0Fs2l9zG8,33
|
|
18
19
|
tests/schema/test_input.py,sha256=qYdr9d5WDoBFcTK1JKtY12akB_Z3L7HpxOD2dsCH38U,1910
|
|
19
20
|
tests/schema/test_output.py,sha256=L_zeFroI_0wpwsxvhfL69N-kmcYB2Gu9IktAmq4vQIY,11897
|
|
20
21
|
tests/solve_golden/__init__.py,sha256=UrdqXQHUHkSG7vHemeoeJtUm2_afa6-KFo0Fs2l9zG8,33
|
|
21
22
|
tests/solve_golden/main.py,sha256=Hh7IsGKnWOH3IQsI__H5diKNy-4rQ5PS7X40E_xG0B0,1788
|
|
22
|
-
nextroute-1.
|
|
23
|
-
nextroute-1.
|
|
24
|
-
nextroute-1.
|
|
25
|
-
nextroute-1.
|
|
26
|
-
nextroute-1.11.4.dist-info/RECORD,,
|
|
23
|
+
nextroute-1.12.3.dist-info/METADATA,sha256=Vz7x59IRuqo7oqibM2E8y8EIqJRcFIn9-ZhIRfG_8ac,15894
|
|
24
|
+
nextroute-1.12.3.dist-info/WHEEL,sha256=XkFE14KmFh7mutkkb-qn_ueuH2lwfT8rLdfc5xpQ7wE,99
|
|
25
|
+
nextroute-1.12.3.dist-info/top_level.txt,sha256=KNsuo1j7tr-QvBFS_ELmo68OmJ-orEZiOXqstGLJDXA,16
|
|
26
|
+
nextroute-1.12.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|