docs: small wording change

This commit is contained in:
Daniel S. 2019-08-31 23:43:52 +02:00
parent 3cab492a59
commit 377991164b
1 changed files with 9 additions and 9 deletions

View File

@ -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