Commit 37799116 authored by Daniel Seiller's avatar Daniel Seiller 🤘🏻
Browse files

docs: small wording change

parent 3cab492a
Loading
Loading
Loading
Loading
+9 −9
Original line number Diff line number Diff line
@@ -30,8 +30,8 @@ toc-own-page: false
### Columns

| 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                                                 |
| system    | Name of System                                               |
| body      | Name of Star                                                 |
@@ -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