jung icon indicating copy to clipboard operation
jung copied to clipboard

JUNG: Java Universal Network/Graph Framework

Results 44 jung issues
Sort by recently updated
recently updated
newest added

Including: - [x] Remove `BasicMapEntry` - superseded by `AbstractMap.SimpleImmutableEntry`. - [x] Add braces to all `if/else/for/while` statements. - [ ] Run IntelliJ inspections and fix the ones deemed appropriate. -...

Hi, I'm using Gephi to debug my generated graphs. Therefore I export the graph to the GraphML format with the GraphMLWriter. It would be nice if each data key can...

In https://github.com/jrtom/jung/issues/236, @wumpz reported a problem where, if I understand correctly, Spotless and Git don't agree on what sort of line endings they should both use; Git thinks it should...

See comments in #47: - The constructors should be able to share almost all their code. - The init() method should be more defensive in design: right now it will...

I'm opening this issue in response to https://github.com/jrtom/jung/pull/185#discussion_r161384379, where the idea came from initially.

As a quick fix, I moved all the classes in graph-impl to an own `impl `package. Unfortunately, this will force some users to adapt their code but I don't see...

TreeLayout requires a non-null graph as an argument to its constructor. Thus the `setGraph()` method can only be intended for changing the graph post initialization. This clearly entails cleaning out...

Hey there, the implementation of jung.algorithms.scoring.BetweennessCentrality seems to be wrong. Initially, I came across this because I was so surprised that the JUNG implementation is so much faster than my...

bug

Hello, I want to save my common.graph.Network to some persistent storage. Is there any way I could do that? Thanks, Atul.

I was interested by a recent discussion on JGraphT (https://github.com/jgrapht/jgrapht/issues/645) where they discovered that for a certain algorithm, a different sort of heap performed better than the pre-existing one, which...