From 377991164b35726f2b19db90b988ba6bc5ea3557 Mon Sep 17 00:00:00 2001 From: Daniel Seiller Date: Sat, 31 Aug 2019 23:43:52 +0200 Subject: [PATCH] docs: small wording change --- docs/src/ed-lrr.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/src/ed-lrr.md b/docs/src/ed-lrr.md index 7a4a234..90af66b 100644 --- a/docs/src/ed-lrr.md +++ b/docs/src/ed-lrr.md @@ -29,15 +29,15 @@ toc-own-page: false ### Columns -| Name | Content | -| --------- | ------------------------------------------------------------------- | -| id | unique ID-Number (not to be confused with EDSM id or id64) | -| star_type | Type of Star | -| system | Name of System | -| body | Name of Star | +| Name | Content | +| --------- | ------------------------------------------------------------ | +| id | unique ID-Number (not equal to id or id64, just a sequential number) | +| star_type | Type of Star | +| system | Name of System | +| body | Name of Star | | mult | Jump Range Multiplier (1.5 for White Dwarfs, 4.0 for Neutron Stars) | -| distance | Distance from arrival in Ls | -| x,y,z | Position in Galactic Coordinates with Sol at (0,0,0) | +| distance | Distance from arrival in Ls | +| x,y,z | Position in Galactic Coordinates with Sol at (0,0,0) | ## `stars.idx` format @@ -53,7 +53,7 @@ Standard Breadth-First Search, always finds the shortest route ### A*-Search -Modified A-Star search with tunable "greediness". Candidates weighted by $\text{number of jumps from start system} + (\text{estimated number of jumps to target system} * \text{greediness})$ +Modified A*-Search with adjustable "greediness". Priority Queue weighted by $\text{number of jumps from start system} + (\text{estimated number of jumps to target system} * \text{greediness})$ A greediness of 0 is equivalent to BFS and a greediness of $\infty$ is equivalent to Greedy-Search