Seth Bromberger

Results 270 comments of Seth Bromberger

I'm not aware of any efforts to implement new modularity functions, but I'll leave this open in case there's interest.

Sorry - what's the specific problem here?

It seems as if you're trying to use a bitvec / vector of boolean where `true` values indicate inclusion in the induced subgraph. That's not (currently) how it works: the...

I think that at this point you'd probably be better off reviving Graphs.jl. It did all of this. I'm pretty sure consecutive one-based vertices are assumed in a few core...

> I think that as long as we are iterating over the paths and not realizing them all in memory, it is a fine addition. I draw that distinction because...

I am very ok with this as long as it passes @simonschoelly 's muster. Thank you.

Hi all, Thanks for the PR and for the comprehensive review! I'm tracking - let me know when it's ready for a final review and merge.

OK, let's see if this helps clear things up: `SimpleGraph`s are unweighted. That is, each edge has a unit weight of 1. You. cannot change this - it is a...

Ah, you're talking about `SimpleWeightedGraph`s. The reason `adjacency_matrix` returns the weights there is twofold: 1) it's super efficient. 2) it's probably incorrect. That is, we really should be doing a...