-
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.
- add maximize value objective - build multiple initial solutions
- Loading branch information
1 parent
002c9ec
commit bdeef36
Showing
10 changed files
with
30 additions
and
19 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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "json-pragmatic" | ||
version = "1.9.0" | ||
version = "1.9.1" | ||
authors = ["Ilya Builuk <[email protected]>"] | ||
license = "Apache-2.0" | ||
keywords = ["vrp", "optimization"] | ||
|
@@ -13,7 +13,7 @@ description = "An examples for solving rich VRP" | |
publish = false | ||
|
||
[dependencies] | ||
vrp-pragmatic = { path = "../../vrp-pragmatic", version = "1.9.0" } | ||
vrp-pragmatic = { path = "../../vrp-pragmatic", version = "1.9.1" } | ||
|
||
[dev-dependencies] | ||
criterion = "0.3.4" | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "vrp-cli" | ||
version = "1.9.0" | ||
version = "1.9.1" | ||
authors = ["Ilya Builuk <[email protected]>"] | ||
license = "Apache-2.0" | ||
keywords = ["vrp", "optimization"] | ||
|
@@ -23,9 +23,9 @@ name = "vrp_cli" | |
crate-type = ["cdylib", "lib"] | ||
|
||
[dependencies] | ||
vrp-core = { path = "../vrp-core", version = "1.9.0" } | ||
vrp-scientific = { path = "../vrp-scientific", version = "1.9.0", optional = true } | ||
vrp-pragmatic = { path = "../vrp-pragmatic", version = "1.9.0" } | ||
vrp-core = { path = "../vrp-core", version = "1.9.1" } | ||
vrp-scientific = { path = "../vrp-scientific", version = "1.9.1", optional = true } | ||
vrp-pragmatic = { path = "../vrp-pragmatic", version = "1.9.1" } | ||
|
||
csv = { version = "1.1.5", optional = true } | ||
serde_json = "1.0.61" | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "vrp-core" | ||
version = "1.9.0" | ||
version = "1.9.1" | ||
authors = ["Ilya Builuk <[email protected]>"] | ||
license = "Apache-2.0" | ||
keywords = ["vrp", "optimization"] | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "vrp-pragmatic" | ||
version = "1.9.0" | ||
version = "1.9.1" | ||
authors = ["Ilya Builuk <[email protected]>"] | ||
license = "Apache-2.0" | ||
keywords = ["vrp", "optimization"] | ||
|
@@ -12,7 +12,7 @@ edition = "2018" | |
description = "An extension logic for solving rich VRP" | ||
|
||
[dependencies] | ||
vrp-core = { path = "../vrp-core", version = "1.9.0" } | ||
vrp-core = { path = "../vrp-core", version = "1.9.1" } | ||
|
||
serde = { version = "1.0.123", features = ["derive"] } | ||
serde_json = "1.0.61" | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "vrp-scientific" | ||
version = "1.9.0" | ||
version = "1.9.1" | ||
authors = ["Ilya Builuk <[email protected]>"] | ||
license = "Apache-2.0" | ||
keywords = ["vrp", "optimization"] | ||
|
@@ -13,4 +13,4 @@ description = "An extension logic for solving scientific VRP" | |
|
||
|
||
[dependencies] | ||
vrp-core = { path = "../vrp-core", version = "1.9.0" } | ||
vrp-core = { path = "../vrp-core", version = "1.9.1" } |