-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* `breaking` replace MDP with multi-armed bandit RL algorithm * change `stops.activity.time.start` not to include waiting time * improve required break functionality * improve managing packages with cargo's workspace * update dependencies * `breaking`: refactor internal models to simplify cost/telemetry handling * `breaking` change required break definition to support time range * change duration in csv import command from minutes to seconds * `breaking` use `GenericError` instead of `String` within `Result` * more experimental plots in `heuristic-research` playground * geojson output if the library is used from interop api
- Loading branch information
1 parent
bcf5505
commit 957b641
Showing
13 changed files
with
56 additions
and
43 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 |
---|---|---|
|
@@ -12,7 +12,7 @@ members = [ | |
] | ||
|
||
[workspace.package] | ||
version = "1.21.1" | ||
version = "1.22.0" | ||
authors = ["Ilya Builuk <[email protected]>"] | ||
license = "Apache-2.0" | ||
keywords = ["vrp", "optimization"] | ||
|
@@ -24,16 +24,16 @@ edition = "2021" | |
|
||
[workspace.dependencies] | ||
# internal dependencies | ||
rosomaxa = { path = "rosomaxa", version = "0.6.0" } | ||
vrp-core = { path = "vrp-core", version = "1.21.1" } | ||
vrp-scientific = { path = "vrp-scientific", version = "1.21.1" } | ||
vrp-pragmatic = { path = "vrp-pragmatic", version = "1.21.1" } | ||
vrp-cli = { path = "vrp-cli", version = "1.21.1" } | ||
rosomaxa = { path = "rosomaxa", version = "0.7.0" } | ||
vrp-core = { path = "vrp-core", version = "1.22.0" } | ||
vrp-scientific = { path = "vrp-scientific", version = "1.22.0" } | ||
vrp-pragmatic = { path = "vrp-pragmatic", version = "1.22.0" } | ||
vrp-cli = { path = "vrp-cli", version = "1.22.0" } | ||
|
||
# external dependencies | ||
hashbrown = "0.14.0" | ||
serde = { version = "1.0.175", features = ["derive"] } | ||
serde_json = "1.0.103" | ||
serde = { version = "1.0.183", features = ["derive"] } | ||
serde_json = "1.0.104" | ||
rand = { version = "0.8.5", features = ["small_rng"] } | ||
rayon = "1.7.0" | ||
rustc-hash = "1.1.0" | ||
|
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
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
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.21.1") | ||
.version("1.22.0") | ||
.author("Ilya Builuk <[email protected]>") | ||
.about("A command line interface to Vehicle Routing Problem solver") | ||
.subcommand(get_analyze_app()) | ||
|
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