Skip to content

Commit c3d3b74

Browse files
committed
modified test file
1 parent 50804c4 commit c3d3b74

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

pydatastructs/trees/fenwich_tree.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
__all__ = [
2+
'fenwich_tree'
3+
]
4+
15
class fenwich_tree:
26
"""
37
Implementation of Fenwich tree/Binary Indexed Tree

pydatastructs/trees/tests/test_fenwich_tree.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import unittest
2-
from pydatastructs import fenwich_tree
2+
from pydatastructs.trees.fenwich_tree import fenwich_tree
33

44
class TestFenwickTree(unittest.TestCase):
55

pydatastructs/utils/misc_util.py

+2
Original file line numberDiff line numberDiff line change
@@ -623,3 +623,5 @@ def summation(x_y):
623623
return x if y is None else y
624624

625625
return x + y
626+
627+

0 commit comments

Comments
 (0)