Skip to content
Prev Previous commit
Next Next commit
bug fix
  • Loading branch information
Prerak Singh authored and Prerak Singh committed Jun 19, 2025
commit b90f161f3046362358eb7b24c1a8135b3a737386
3 changes: 2 additions & 1 deletion pydatastructs/graphs/_extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@
include_dir = os.path.abspath(os.path.join(project, 'utils', '_backend', 'cpp'))

extensions = [Extension(graph, sources=graph_sources,include_dirs=[include_dir], language="c++", extra_compile_args=["-std=c++17"]),
Extension(algorithms, sources=algorithms_sources,include_dirs=[include_dir], language="c++", extra_compile_args=["-std=c++17"])]
Extension(algorithms, sources=algorithms_sources,include_dirs=[include_dir], language="c++", extra_compile_args=["-std=c++17"]),
]
1 change: 1 addition & 0 deletions pydatastructs/graphs/tests/test_algorithms.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
from pydatastructs.utils.raises_util import raises
from pydatastructs.utils.misc_util import AdjacencyListGraphNode, AdjacencyMatrixGraphNode
from pydatastructs.graphs._backend.cpp import _graph
from pydatastructs.graphs._backend.cpp import _algorithms
from pydatastructs.utils.misc_util import Backend

def test_breadth_first_search():
Expand Down
Loading