chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:36:30 +08:00
commit 55ab4e4a73
473 changed files with 72932 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#pragma once
#include "../../common/common.h"
py::object _dijkstra_multisource(py::object G, py::object sources, py::object weight, py::object target);
// py::object _dijkstra(py::object G, py::object sources, py::object weight, py::object target);
py::object _spfa(py::object G, py::object source, py::object weight);
py::object Floyd(py::object G,py::object weight);
py::object Prim(py::object G,py::object weight);
py::object Kruskal(py::object G,py::object weight);
py::object average_shortest_path_length(py::object G, py::object weight, py::object method);
py::object eccentricity(py::object G, py::object v, py::object sp);