diff options
| -rw-r--r-- | priority_queue.c | 5 | ||||
| -rw-r--r-- | priority_queue.h | 4 |
2 files changed, 0 insertions, 9 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"); 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); |
