-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This release focuses on refactorings to simplify API, code usage, extendability and overall maintainability. It contains a lot of internal changes and has overall significant improvements. * examples how to extend the library (`vrp-core/examples`) * GitHub sponsors functionality * experimental `async-evolution` feature * NSGA-II implementation and its usage * dependency on `hashbrown` crate * state keys * Fix issue in `fast-service` objective (#144) * fix clippy warnings * minor refactorings * increase limits for ruin methods * tweak rosomaxa algorithm * tweak job index * tweak infeasible search heuristic * refactor route intervals and multi trip enablers * refactor feature objective trait * refactor dimensions/extras approach to avoid using strings as keys * how the goal of optimization is defined * flatten objectives in the pragmatic format
- Loading branch information
1 parent
ce132f0
commit 8135ff7
Showing
7 changed files
with
20 additions
and
18 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.23.0" | ||
version = "1.24.0" | ||
authors = ["Ilya Builuk <[email protected]>"] | ||
license = "Apache-2.0" | ||
keywords = ["vrp", "optimization"] | ||
|
@@ -25,18 +25,18 @@ edition = "2021" | |
|
||
[workspace.dependencies] | ||
# internal dependencies | ||
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" } | ||
rosomaxa = { path = "rosomaxa", version = "0.8.0" } | ||
vrp-core = { path = "vrp-core", version = "1.24.0" } | ||
vrp-scientific = { path = "vrp-scientific", version = "1.24.0" } | ||
vrp-pragmatic = { path = "vrp-pragmatic", version = "1.24.0" } | ||
vrp-cli = { path = "vrp-cli", version = "1.24.0" } | ||
|
||
# external dependencies | ||
serde = { version = "1.0.204", features = ["derive"] } | ||
serde_json = "1.0.120" | ||
rand = { version = "0.8.5", features = ["small_rng"] } | ||
rayon = "1.10.0" | ||
rustc-hash = "1.1.0" | ||
rustc-hash = "2.0.0" | ||
paste = "1.0.15" | ||
|
||
[profile.release] | ||
|
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.23.0") | ||
.version("1.24.0") | ||
.author("Ilya Builuk <[email protected]>") | ||
.about("A command line interface to Vehicle Routing Problem solver") | ||
.subcommand(get_analyze_app()) | ||
|