diff options
| author | Kirill Petrashin <kirill8201@yandex.ru> | 2026-04-17 22:45:52 +0300 |
|---|---|---|
| committer | Kirill Petrashin <kirill8201@yandex.ru> | 2026-04-17 22:45:52 +0300 |
| commit | e597d1de8ef37a93aeb9576a2f077d792edfbb2d (patch) | |
| tree | 754b9bcb5f32f5fe207172366e0abaa8bc4b1c86 /priority_queue.c | |
| parent | 89fa6474af46fef1545ebf4b6e5f0c550ae278f2 (diff) | |
| download | astar-e597d1de8ef37a93aeb9576a2f077d792edfbb2d.tar.xz | |
Remove ppq_reprioritize()
Diffstat (limited to 'priority_queue.c')
| -rw-r--r-- | priority_queue.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/priority_queue.c b/priority_queue.c index 7a1fa19..a28cbc5 100644 --- a/priority_queue.c +++ b/priority_queue.c @@ -102,11 +102,6 @@ void ppq_remove(PositionPQ **ppq, Position pos) { } } -void ppq_reprioritize(PositionPQ *ppq, Position pos, size_t priority) { - (void)ppq, (void)pos, (void)priority; - todo(); -} - void ppq_print(PositionPQ *ppq) { if (ppq == NULL) { printf("ppq is NULL\n"); |
