-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVertexBoundaryBetweennessCast.pxd
62 lines (47 loc) · 1.79 KB
/
VertexBoundaryBetweennessCast.pxd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Copyright (c) 2023-2024 The Regents of the University of Michigan.
# This file is from the StructuralGT project, released under the BSD 3-Clause
# License.
#
# This file is from the StructuralGT project, released under the BSD 3-Clause
# License.
#
# This file is from the StructuralGT project, released under the BSD 3-Clause
# License.
#
# This file is from the StructuralGT project, released under the BSD 3-Clause
# License.
#
# This file is from the StructuralGT project, released under the BSD 3-Clause License.
#
# This file is from the StructuralGT project, released under the BSD 3-Clause License.
#
# This file is from the StructuralGT project, released under the BSD 3-Clause License.
#
# This file is from the StructuralGT project, released under the BSD 3-Clause License.
#
# This file is from the StructuralGT project, released under the BSD 3-Clause License.
#
# This file is from the StructuralGT project, released under the BSD 3-Clause License.
#
# This file is from the StructuralGT project, released under the BSD 3-Clause License.
#
# This file is from the StructuralGT project, released under the BSD 3-Clause License.
from libcpp.vector cimport vector
cdef extern from "VertexBoundaryBetweennessCast.cpp":
pass
# Declare the class with cdef
cdef extern from "VertexBoundaryBetweennessCast.h" namespace "interface":
cdef cppclass VertexBoundaryBetweennessCast:
void* G_ptr
long long* sources_ptr
long long* targets_ptr
#vector[long long] sources
#vector[long long] targets
double* weights_ptr
int sources_len
int targets_len
vector[float] betweennesses
int num_edges
int num_vertices
VertexBoundaryBetweennessCast() except +
void vertex_boundary_betweenness_compute() except +