Skip to content

Commit

Permalink
Renamed heap.py to Heap.py since it caused problems...
Browse files Browse the repository at this point in the history
  • Loading branch information
nbro committed Feb 5, 2017
1 parent 1f9445b commit f0f80f7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ands/ds/MaxHeap.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"""

from ands.ds.heap import BinaryHeap, HeapNode
from ands.ds.Heap import BinaryHeap, HeapNode

__all__ = ["MaxHeap", "is_max_heap"]

Expand Down
2 changes: 1 addition & 1 deletion ands/ds/MinHeap.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
- Chapter 13 of [Introduction to Algorithms (3rd ed.)](https://mitpress.mit.edu/books/introduction-algorithms) by CLRS
"""

from ands.ds.heap import BinaryHeap, HeapNode
from ands.ds.Heap import BinaryHeap, HeapNode

__all__ = ["MinHeap", "is_min_heap"]

Expand Down
2 changes: 1 addition & 1 deletion ands/ds/MinMaxHeap.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
- [http://www.diku.dk/forskning/performance-engineering/Jesper/heaplab/heapsurvey_html/node11.html](http://www.diku.dk/forskning/performance-engineering/Jesper/heaplab/heapsurvey_html/node11.html)
"""

from ands.ds.heap import BinaryHeap, HeapNode
from ands.ds.Heap import BinaryHeap, HeapNode


class MinMaxHeap(BinaryHeap):
Expand Down
2 changes: 1 addition & 1 deletion tests/ds/test_BinaryHeap.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

import unittest

from ands.ds.heap import BinaryHeap
from ands.ds.Heap import BinaryHeap


class TestBinaryHeap(unittest.TestCase):
Expand Down
4 changes: 2 additions & 2 deletions tests/ds/test_HeapNode.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
# Description
Tests for the HeapNode class in heap.py.
Tests for the HeapNode class in Heap.py.
"""

import unittest

from ands.ds.heap import HeapNode
from ands.ds.Heap import HeapNode


class TestHeapNode(unittest.TestCase):
Expand Down

0 comments on commit f0f80f7

Please sign in to comment.