diff options
| author | Kirill Petrashin <kirill8201@yandex.ru> | 2026-04-17 22:47:22 +0300 |
|---|---|---|
| committer | Kirill Petrashin <kirill8201@yandex.ru> | 2026-04-17 22:47:22 +0300 |
| commit | adc07d70ba8d3cb7142c51260fe004c757b7a39a (patch) | |
| tree | 748a2a77612210932e57c5168e6c7839000fd281 /priority_queue.h | |
| parent | e597d1de8ef37a93aeb9576a2f077d792edfbb2d (diff) | |
| download | astar-adc07d70ba8d3cb7142c51260fe004c757b7a39a.tar.xz | |
Update a comment
Diffstat (limited to 'priority_queue.h')
| -rw-r--r-- | priority_queue.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/priority_queue.h b/priority_queue.h index 1f54fff..8ad4a26 100644 --- a/priority_queue.h +++ b/priority_queue.h @@ -3,8 +3,7 @@ #include "structs.h" -/* This is basically a sorted linked list - * Pro tip: if you always use the same priority, this becomes a regular queue */ +/* This is basically a sorted linked list */ struct PositionPQNode_s { Position pos; size_t priority; /* Lower is "better" */ |
