Well, is there a high-performance graph library for working with primitivies, without those generics/autoboxing overheads? For double lists you may use trove, for linear algebra you may use netlib-java (examples for you to better understand the point of my interest in this question).

As for Graphs/Networks: all the libs I've found use generics and should be not that performant. I may as well do some tests for that, but I believe that heap-managed network link weights would be inferior to double[] with some bit offsets to get the index for i and j. The usage scenario: there're hundreds of such networks (most of them sparse) of size 4k*4k, there's some genetic optimization running over that set of networks, which do some flow/min route estimations for each specimen.

So, there're: JGraphT, JUNG, ANNAS, JDSL (the links lead to the APIs/code samples which expose the miserable Java Generics/Object wrappers in all of them). Are there any Trove-ish alternatives? I'd already created some simplistic implementation, but just decided to look around to avoid inventing the proper bicycle...

Any opinions, suggestions?

Thanks, Anton

PS: Please don't start on performance of generics-laden Java code, at least without linking to some decent benchmark, ok? ;)

link|improve this question

feedback

2 Answers

Have you looked at neo4j? - http://neo4j.org/

link|improve this answer
Well, thanks for the reference. I don't think that this code is any better than of libraries above: double power = 0; for (Relationship r : node.getRelationships()) { power += r.getProperty("weight", 0); } Also, I have to toss lots of networks around w/o persisting them actually. I have a network of networks in-memory so to say... – Anton S. Kraievoy Feb 23 '11 at 6:58
feedback
up vote 0 down vote accepted

You may use some sparse matrix with row compression. Not best and not specialized, but you may build upon it.

Well, there're some generic sparse matrix implementations which do not mess with generics and one rather solid performance benchmark: java-matrix-benchmark on google code ujmp related overview

The most convincing is MTJ's sparse matrix.

Please add answers to the question if you have any suggestions or updates. I'll accept any better ideas. Thanks.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.