-
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.
added: * python binding with pyo3 * example how to use library with maturin changed: * cleaned area leftovers * update dependencies * update rust version on dev environment to 1.68 * fix clippy warnings * bug fix in capacity feature * gsom compaction logic and adapt rosomaxa
- Loading branch information
1 parent
92ad353
commit feef015
Showing
11 changed files
with
25 additions
and
21 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
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.19.1" | ||
version = "1.19.2" | ||
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
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 = "rosomaxa" | ||
version = "0.2.6" | ||
version = "0.3.0" | ||
edition = "2021" | ||
authors = ["Ilya Builuk <[email protected]>"] | ||
license = "Apache-2.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "vrp-cli" | ||
version = "1.19.1" | ||
version = "1.19.2" | ||
authors = ["Ilya Builuk <[email protected]>"] | ||
license = "Apache-2.0" | ||
keywords = ["vrp", "optimization"] | ||
|
@@ -22,16 +22,16 @@ name = "vrp_cli" | |
crate-type = ["cdylib", "lib"] | ||
|
||
[dependencies] | ||
vrp-core = { path = "../vrp-core", version = "1.19.1" } | ||
vrp-scientific = { path = "../vrp-scientific", optional = true, version = "1.19.1" } | ||
vrp-pragmatic = { path = "../vrp-pragmatic", version = "1.19.1" } | ||
vrp-core = { path = "../vrp-core", version = "1.19.2" } | ||
vrp-scientific = { path = "../vrp-scientific", optional = true, version = "1.19.2" } | ||
vrp-pragmatic = { path = "../vrp-pragmatic", version = "1.19.2" } | ||
|
||
csv = { version = "1.2.1", optional = true } | ||
serde_json = "1.0.94" | ||
serde = { version = "1.0.157", features = ["derive"] } | ||
serde = { version = "1.0.158", features = ["derive"] } | ||
|
||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] | ||
clap = "4.1.10" | ||
clap = "4.1.11" | ||
ctrlc = { version = "3.2.5", features = ["termination"] } | ||
num_cpus = "1.15.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "vrp-core" | ||
version = "1.19.1" | ||
version = "1.19.2" | ||
authors = ["Ilya Builuk <[email protected]>"] | ||
license = "Apache-2.0" | ||
keywords = ["vrp", "optimization"] | ||
|
@@ -12,7 +12,7 @@ edition = "2021" | |
description = "A core algorithms to solve a Vehicle Routing Problem" | ||
|
||
[dependencies] | ||
rosomaxa = { path = "../rosomaxa", version = "0.2.6" } | ||
rosomaxa = { path = "../rosomaxa", version = "0.3.0" } | ||
|
||
rayon = "1.7.0" | ||
rand = { version = "0.8.5", features = ["small_rng"] } | ||
|
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.19.1" | ||
version = "1.19.2" | ||
authors = ["Ilya Builuk <[email protected]>"] | ||
license = "Apache-2.0" | ||
keywords = ["vrp", "optimization"] | ||
|
@@ -12,9 +12,9 @@ edition = "2021" | |
description = "An extension logic for solving rich VRP" | ||
|
||
[dependencies] | ||
vrp-core = { path = "../vrp-core", version = "1.19.1" } | ||
vrp-core = { path = "../vrp-core", version = "1.19.2" } | ||
|
||
serde = { version = "1.0.157", features = ["derive"] } | ||
serde = { version = "1.0.158", features = ["derive"] } | ||
serde_json = "1.0.94" | ||
|
||
time = { version = "0.3.20", features = ["parsing", "formatting"] } | ||
|
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.19.1" | ||
version = "1.19.2" | ||
authors = ["Ilya Builuk <[email protected]>"] | ||
license = "Apache-2.0" | ||
keywords = ["vrp", "optimization"] | ||
|
@@ -12,4 +12,4 @@ edition = "2021" | |
description = "An extension logic for solving scientific VRP" | ||
|
||
[dependencies] | ||
vrp-core = { path = "../vrp-core", version = "1.19.1" } | ||
vrp-core = { path = "../vrp-core", version = "1.19.2" } |