nextroute 1.11.1.dev0__tar.gz → 1.11.4.dev0__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.
Potentially problematic release.
This version of nextroute might be problematic. Click here for more details.
- {nextroute-1.11.1.dev0/src/nextroute.egg-info → nextroute-1.11.4.dev0}/PKG-INFO +1 -1
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/pyproject.toml +0 -1
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/src/nextroute/__about__.py +1 -1
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/src/nextroute/bin/nextroute.exe +0 -0
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/src/nextroute/options.py +3 -0
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0/src/nextroute.egg-info}/PKG-INFO +1 -1
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/LICENSE +0 -0
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/README.md +0 -0
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/setup.cfg +0 -0
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/setup.py +0 -0
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/src/nextroute/__init__.py +0 -0
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/src/nextroute/base_model.py +0 -0
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/src/nextroute/check/__init__.py +0 -0
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/src/nextroute/check/schema.py +0 -0
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/src/nextroute/schema/__init__.py +0 -0
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/src/nextroute/schema/input.py +0 -0
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/src/nextroute/schema/location.py +0 -0
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/src/nextroute/schema/output.py +0 -0
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/src/nextroute/schema/statistics.py +0 -0
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/src/nextroute/schema/stop.py +0 -0
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/src/nextroute/schema/vehicle.py +0 -0
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/src/nextroute/solve.py +0 -0
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/src/nextroute/version.py +0 -0
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/src/nextroute.egg-info/SOURCES.txt +0 -0
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/src/nextroute.egg-info/dependency_links.txt +0 -0
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/src/nextroute.egg-info/requires.txt +0 -0
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/src/nextroute.egg-info/top_level.txt +0 -0
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/src/tests/schema/__init__.py +0 -0
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/src/tests/schema/test_input.py +0 -0
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/src/tests/schema/test_output.py +0 -0
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/src/tests/solve_golden/__init__.py +0 -0
- {nextroute-1.11.1.dev0 → nextroute-1.11.4.dev0}/src/tests/solve_golden/main.py +0 -0
|
Binary file
|
|
@@ -17,6 +17,7 @@ _DURATIONS_ARGS = [
|
|
|
17
17
|
"-check.duration",
|
|
18
18
|
"-solve.duration",
|
|
19
19
|
"-solve.plateau.duration",
|
|
20
|
+
"-solve.plateau.delay",
|
|
20
21
|
]
|
|
21
22
|
|
|
22
23
|
# Arguments that require a string enum.
|
|
@@ -130,6 +131,8 @@ class Options(BaseModel):
|
|
|
130
131
|
Maximum number of parallel runs, -1 results in using all available
|
|
131
132
|
resources.
|
|
132
133
|
"""
|
|
134
|
+
SOLVE_PLATEAU_DELAY: float = 0.0
|
|
135
|
+
"""Delay before starting to monitor for a plateau."""
|
|
133
136
|
SOLVE_PLATEAU_ABSOLUTETHRESHOLD: float = -1
|
|
134
137
|
"""Absolute threshold for significant improvement."""
|
|
135
138
|
SOLVE_PLATEAU_DURATION: float = 0.0
|
|
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
|