Commits on Source (18)
-
Daniel Seiller authored6365c58b
-
Daniel Seiller authored
Fix formatting
4a4276f3 -
Daniel Seiller authoredf00237cb
-
Daniel Seiller authored662a0be0
-
Daniel Seiller authored
process.py: - Add hint for file download when input files are missing main.rs - Add multi-hop-routing - Add searching for source and destination by name
8e8587a3 -
Daniel Seiller authoredffdd1bb7
-
Daniel Seiller authored
Add A*-Routing with tunable Greedy factor Add Greedy-Routing Add permutation option to find shortest order for systems Update CLI Update README
afae1c08 -
Daniel Seiller authoreded53d5a3
-
Daniel Seiller authored
move stdout flush in Greedy-Search to after print statement
d42121c3 -
Daniel Seiller authored
- Add ed_lrr_pp to preprocess JSON-Dumps into CSV files - Add route-graph-precomputation to ed_lrr - Add option to only route through primary stars
84bc08a2 -
Daniel Seiller authored38e6fc96
-
Daniel Seiller authored38949850
-
Daniel Seiller authoredcaffc40b
-
Daniel Seiller authored
add "+nightly" to cargo commands
5f341ae5 -
Daniel Seiller authored273e5c74
-
Daniel Seiller authored
Accelerate search for multiple systems by id/name by doing a single pass and returning a map
bac5907f -
Daniel Seiller authored
Splite code into modules Merge ed_lrr and ed_lrr_pp into one binary and use subcommands (route and preprocess) Run clippy and fix warnings
5c3cdac8 -
Daniel Seiller authored2b977919
.cargo/config
0 → 100644
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
Cargo.lock
0 → 100644
This diff is collapsed.
Cargo.toml
0 → 100644
[package] | ||
name = "ed_lrr" | ||
version = "0.1.0" | ||
authors = ["Daniel Seiller <earthnuker@gmail.com>"] | ||
edition = "2018" | ||
repository = "https://gitlab.com/Earthnuker/ed_lrr.git" | ||
license = "WTFPL" | ||
[profile.release] | ||
# debug=true | ||
[dependencies] | ||
csv = "1.1.0" | ||
serde = "1.0.94" | ||
serde_derive = "1.0.94" | ||
rstar = {version="0.4.0",features=["serde"]} | ||
humantime = "1.2.0" | ||
structopt = "0.2.18" | ||
permutohedron = "0.2.4" | ||
serde_json = "1.0.39" | ||
indicatif = "0.11.0" | ||
fnv = "1.0.6" | ||
bincode = "1.1.4" | ||
sha3 = "0.8.2" | ||
byteorder = "1.3.2" |
README.md
0 → 100644
dumps/process.py
0 → 100644
dumps/urls.txt
0 → 100644
src/common.rs
0 → 100644
src/lib.rs
0 → 100644
src/main.rs
0 → 100644
src/preprocess.rs
0 → 100644
src/route.rs
0 → 100644
This diff is collapsed.