-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This release combines many changes, but essentials are: - internal route state api simplification - increased performance - several experimental features - bug fixes * original job place index in activity place to simplify activity-job place matching * `experimental`: a new type of location in pragmatic format to model zero distance/duration from it to any other location. This could be useful to model optional vehicle start location. * allow user to pass alternative objectives in goal context to guide the search * `experimental`: a new `fast-service` objective function to serve jobs as soon as possible * experimental `dispatch` feature * apply code style refactoring * improve selection sampling search * update dependencies * improve a bit documentation * refactor route state * do not use hashmaps to store activity states * double reload assignment when initial solution is used (#126) * unexpected total_order behavior in dynamic heuristic (#128) * improve validation rule for break with time offset (#129) * fix issue with skills (#133) * do not cluster jobs if they are defined in relations (#141)
- Loading branch information
1 parent
19f8257
commit 8460877
Showing
7 changed files
with
18 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ members = [ | |
] | ||
|
||
[workspace.package] | ||
version = "1.22.1" | ||
version = "1.23.0" | ||
authors = ["Ilya Builuk <[email protected]>"] | ||
license = "Apache-2.0" | ||
keywords = ["vrp", "optimization"] | ||
|
@@ -25,11 +25,11 @@ edition = "2021" | |
|
||
[workspace.dependencies] | ||
# internal dependencies | ||
rosomaxa = { path = "rosomaxa", version = "0.7.1" } | ||
vrp-core = { path = "vrp-core", version = "1.22.1" } | ||
vrp-scientific = { path = "vrp-scientific", version = "1.22.1" } | ||
vrp-pragmatic = { path = "vrp-pragmatic", version = "1.22.1" } | ||
vrp-cli = { path = "vrp-cli", version = "1.22.1" } | ||
rosomaxa = { path = "rosomaxa", version = "0.7.2" } | ||
vrp-core = { path = "vrp-core", version = "1.23.0" } | ||
vrp-scientific = { path = "vrp-scientific", version = "1.23.0" } | ||
vrp-pragmatic = { path = "vrp-pragmatic", version = "1.23.0" } | ||
vrp-cli = { path = "vrp-cli", version = "1.23.0" } | ||
|
||
# external dependencies | ||
hashbrown = "0.14.3" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ mod cli { | |
|
||
pub fn get_app() -> Command { | ||
Command::new("Vehicle Routing Problem Solver") | ||
.version("1.22.1") | ||
.version("1.23.0") | ||
.author("Ilya Builuk <[email protected]>") | ||
.about("A command line interface to Vehicle Routing Problem solver") | ||
.subcommand(get_analyze_app()) | ||
|