summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/PriorityQueue.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/PriorityQueue.lua')
-rw-r--r--Master/texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/PriorityQueue.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/PriorityQueue.lua b/Master/texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/PriorityQueue.lua
index 3fd29cdb748..378800fbf5b 100644
--- a/Master/texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/PriorityQueue.lua
+++ b/Master/texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/lib/PriorityQueue.lua
@@ -107,7 +107,7 @@ end
--- Internals: An implementation of Fibonacci heaps.
+-- Internals: An implementation of fibonacci heaps.
FibonacciHeap.__index = FibonacciHeap
@@ -200,7 +200,7 @@ function FibonacciHeap:decreaseValue(node, value)
assert(value <= node.value)
node.value = value
-
+
if node.value < node.parent.value then
local parent = node.parent
self:cutFromParent(node)
@@ -231,7 +231,7 @@ end
function FibonacciHeap:linkRoots(root, child)
child.root = root
child.parent = root
-
+
child = self:removeTableElement(self.trees, child)
table.insert(root.children, child)