docs: small wording change

This commit is contained in:
Daniel S. 2019-08-31 23:43:52 +02:00
parent 3cab492a59
commit 377991164b

View file

@ -30,8 +30,8 @@ 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 |
@ -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