From 30a5ed3347f647ac899361be8abada71929c3f1b Mon Sep 17 00:00:00 2001 From: Jeremiah Morgan Date: Wed, 20 Nov 2024 19:37:08 +0000 Subject: [PATCH] s --- libopenage/datastructure/pairing_heap.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/libopenage/datastructure/pairing_heap.h b/libopenage/datastructure/pairing_heap.h index d7b2d745ab..acec3acc99 100644 --- a/libopenage/datastructure/pairing_heap.h +++ b/libopenage/datastructure/pairing_heap.h @@ -234,7 +234,6 @@ class PairingHeap final { * also known as delete_min. * _________ * Ω(log log n), O(2^(2*√log log n')) - * caller must eventually either add node back to heap or delete it */ T pop() { if (this->root_node == nullptr) { @@ -316,7 +315,6 @@ class PairingHeap final { return data; } - /** * Returns the smallest item on the heap. * O(1) @@ -619,7 +617,6 @@ class PairingHeap final { #endif } - /** * insert a node into the heap. */