Skip to content

Commit

Permalink
change parameter name in dyadic_change_stats_func_t
Browse files Browse the repository at this point in the history
so as to not be confusing (the parmeters are node indices i,j)
  • Loading branch information
stivalaa committed Dec 13, 2021
1 parent 4322ca7 commit 1b16ad0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/changeStatisticsDirected.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ typedef double (attr_change_stats_func_t)(digraph_t *g, uint_t i, uint_t j, uint
/* version for change statistics with dyadic covariate */
/* for the moment just hte same as change_stats_func_t as treated specially,
only used for GeoDistance for now */
typedef double (dyadic_change_stats_func_t)(digraph_t *g, uint_t i, uint_t a);
typedef double (dyadic_change_stats_func_t)(digraph_t *g, uint_t i, uint_t j);

/* change statistics with pairs of nodal attributes (attribute interactions) */
typedef double (attr_interaction_change_stats_func_t)(digraph_t *g, uint_t i, uint_t j, uint_t a, uint_t b);
Expand Down

0 comments on commit 1b16ad0

Please sign in to comment.