Skip to content

Add C++ Backend for BFS and Use std::variant for Graph Node Data #684

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Jun 28, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
bug fix
  • Loading branch information
Prerak Singh authored and Prerak Singh committed Jun 14, 2025
commit b33e290b1e8810a0f947de7dd0fc2029a940889e
4 changes: 1 addition & 3 deletions pydatastructs/graphs/_extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,4 @@

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", "-stdlib=libc++"])]

extensions = [Extension(graph, sources=graph_sources,include_dirs=[include_dir], language="c++", extra_compile_args=["-std=c++17"])]
Loading