docs: small wording change
This commit is contained in:
parent
3cab492a59
commit
377991164b
1 changed files with 9 additions and 9 deletions
|
@ -29,15 +29,15 @@ toc-own-page: false
|
||||||
|
|
||||||
### Columns
|
### Columns
|
||||||
|
|
||||||
| Name | Content |
|
| Name | Content |
|
||||||
| --------- | ------------------------------------------------------------------- |
|
| --------- | ------------------------------------------------------------ |
|
||||||
| id | unique ID-Number (not to be confused with EDSM id or id64) |
|
| id | unique ID-Number (not equal to id or id64, just a sequential number) |
|
||||||
| star_type | Type of Star |
|
| star_type | Type of Star |
|
||||||
| system | Name of System |
|
| system | Name of System |
|
||||||
| body | Name of Star |
|
| body | Name of Star |
|
||||||
| mult | Jump Range Multiplier (1.5 for White Dwarfs, 4.0 for Neutron Stars) |
|
| mult | Jump Range Multiplier (1.5 for White Dwarfs, 4.0 for Neutron Stars) |
|
||||||
| distance | Distance from arrival in Ls |
|
| distance | Distance from arrival in Ls |
|
||||||
| x,y,z | Position in Galactic Coordinates with Sol at (0,0,0) |
|
| x,y,z | Position in Galactic Coordinates with Sol at (0,0,0) |
|
||||||
|
|
||||||
## `stars.idx` format
|
## `stars.idx` format
|
||||||
|
|
||||||
|
@ -53,7 +53,7 @@ Standard Breadth-First Search, always finds the shortest route
|
||||||
|
|
||||||
### A*-Search
|
### 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
|
A greediness of 0 is equivalent to BFS and a greediness of $\infty$ is equivalent to Greedy-Search
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue