-
-
Notifications
You must be signed in to change notification settings - Fork 203
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
inconsistent behaviour of get.adjacency.dense and get.adjacency.sparse for weighted multigraphs #1551
Comments
Yes, the weights should be added up. Thanks for catching this! IMO the best solution here is to call the C core, which is not happening now. Relying on the C core ensures consistency and reduces code duplication. The C core does not support Boolean adjacency matrices, so it is to be decided what to do with that. Options are to implement this in R, or to convert logical values to numeric, then convert back again. It's also a question whether logicals should be supported. One argument in favour is that it's not too difficult to do so. |
So what's your take on PR #1518? |
@szhorvat friendly reminder about @schochastics' question above. Is the conversion of sparse matrices from C to R and vice versa still a blocker for this? |
related (I think?) #1137 |
What happens, and what did you expect instead?
The internal functions
get.adjacency.dense()
andget.adjacency.sparse()
return different results for weighted multigraphs.get.adjacency.sparse()
aggregates weights for multi edges andget.adjacency.dense()
reports the weight of the last edge. In my opinion, the behavior ofget.adjacency.sparse()
is correct. The PR #1518 coincidentally fixes this.Given this is indeed a bug, then the following test should be fixed either in a new PR or the existing PR #1518 (see also the discussion there)
rigraph/tests/testthat/test-conversion.R
Lines 175 to 183 in 0d96334
To reproduce
igraph 2.0.3
Created on 2024-10-10 with reprex v2.1.1
System information
No response
The text was updated successfully, but these errors were encountered: