Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Tiago Peixoto
graph-tool
Commits
a8f2c8fd
Commit
a8f2c8fd
authored
May 23, 2009
by
Tiago Peixoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix missing symbol bug in weighted avg_neighbour_corr()
parent
7505190f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
8 deletions
+6
-8
src/graph/correlations/graph_avg_correlations_imp1.cc
src/graph/correlations/graph_avg_correlations_imp1.cc
+5
-7
src/graph/correlations/graph_correlations.hh
src/graph/correlations/graph_correlations.hh
+1
-1
No files found.
src/graph/correlations/graph_avg_correlations_imp1.cc
View file @
a8f2c8fd
...
...
@@ -31,13 +31,11 @@ using namespace boost;
using
namespace
boost
::
lambda
;
using
namespace
graph_tool
;
void
graph_avg_correlations_imp1
(
GraphInterface
&
g
,
python
::
object
&
avg
,
python
::
object
&
dev
,
python
::
object
&
ret_bins
,
boost
::
any
deg1
,
boost
::
any
deg2
,
boost
::
any
weight
,
const
vector
<
long
double
>&
bins
)
void
graph_avg_corr_imp1
(
GraphInterface
&
g
,
python
::
object
&
avg
,
python
::
object
&
dev
,
python
::
object
&
ret_bins
,
boost
::
any
deg1
,
boost
::
any
deg2
,
boost
::
any
weight
,
const
vector
<
long
double
>&
bins
)
{
typedef
DynamicPropertyMapWrap
<
long
double
,
GraphInterface
::
edge_t
>
wrapped_weight_t
;
...
...
src/graph/correlations/graph_correlations.hh
View file @
a8f2c8fd
...
...
@@ -263,7 +263,7 @@ struct get_avg_correlation
template
<
class
Graph
,
class
DegreeSelector1
,
class
DegreeSelector2
,
class
WeightMap
>
void
operator
()(
Graph
&
g
,
DegreeSelector1
deg1
,
DegreeSelector2
deg2
,
void
operator
()(
Graph
&
g
,
DegreeSelector1
deg1
,
DegreeSelector2
deg2
,
WeightMap
weight
)
const
{
GetDegreePair
put_point
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment