diff options
Diffstat (limited to 'priority_queue.h')
| -rw-r--r-- | priority_queue.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/priority_queue.h b/priority_queue.h index 45252a8..0dbd161 100644 --- a/priority_queue.h +++ b/priority_queue.h @@ -21,7 +21,7 @@ PositionPQ ppq_new(Position pos, size_t priority); void ppq_insert(PositionPQ ppq, Position pos, size_t priority); /* Remove and return the position with the lowest priority */ -Position ppq_remove(PositionPQ ppq); +Position ppq_pop(PositionPQ ppq); /* 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 */ |
