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.h | |
| parent | 89fa6474af46fef1545ebf4b6e5f0c550ae278f2 (diff) | |
| download | astar-e597d1de8ef37a93aeb9576a2f077d792edfbb2d.tar.xz | |
Remove ppq_reprioritize()
Diffstat (limited to 'priority_queue.h')
| -rw-r--r-- | priority_queue.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/priority_queue.h b/priority_queue.h index f773475..1f54fff 100644 --- a/priority_queue.h +++ b/priority_queue.h @@ -28,10 +28,6 @@ Position ppq_pop(PositionPQ **ppq); /* Remove a given pos fron ppq */ void ppq_remove(PositionPQ **ppq, Position pos); -/* Change the priority of a given pos, moving it to a different place in the - * linked list ("POTENTIALLY NOT NEEDED" since we don't use different weights */ -void ppq_reprioritize(PositionPQ *ppq, Position pos, size_t priority); - void ppq_print(PositionPQ *ppq); void ppq_free(PositionPQ *ppq); |
