nextroute 1.11.4.dev0__tar.gz → 1.12.1__tar.gz
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-1.11.4.dev0/src/nextroute.egg-info → nextroute-1.12.1}/PKG-INFO +3 -2
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/src/nextroute/__about__.py +1 -1
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/src/nextroute/bin/nextroute.exe +0 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/src/nextroute/options.py +2 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1/src/nextroute.egg-info}/PKG-INFO +3 -2
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/LICENSE +0 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/README.md +0 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/pyproject.toml +0 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/setup.cfg +0 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/setup.py +0 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/src/nextroute/__init__.py +0 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/src/nextroute/base_model.py +0 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/src/nextroute/check/__init__.py +0 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/src/nextroute/check/schema.py +0 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/src/nextroute/schema/__init__.py +0 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/src/nextroute/schema/input.py +0 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/src/nextroute/schema/location.py +0 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/src/nextroute/schema/output.py +0 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/src/nextroute/schema/statistics.py +0 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/src/nextroute/schema/stop.py +0 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/src/nextroute/schema/vehicle.py +0 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/src/nextroute/solve.py +0 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/src/nextroute/version.py +0 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/src/nextroute.egg-info/SOURCES.txt +0 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/src/nextroute.egg-info/dependency_links.txt +0 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/src/nextroute.egg-info/requires.txt +0 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/src/nextroute.egg-info/top_level.txt +0 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/src/tests/schema/__init__.py +0 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/src/tests/schema/test_input.py +0 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/src/tests/schema/test_output.py +0 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/src/tests/solve_golden/__init__.py +0 -0
- {nextroute-1.11.4.dev0 → nextroute-1.12.1}/src/tests/solve_golden/main.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: nextroute
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.12.1
|
|
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
|
|
|
Binary file
|
|
@@ -85,6 +85,8 @@ class Options(BaseModel):
|
|
|
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
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: nextroute
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.12.1
|
|
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
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|