- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Immutable graph libraries and alternative structures
Sat, 2011-12-31, 11:08
Hi
I know there has been more than one go at writing graph libraries. I
have a single specific usage intended for which I need immutable graph
structures of fairly modest size (a few hundred to about 4000 nodes).
I'm looking for advice on suitable libraries.
The other unusual thing about my graphs are they are typically highly
disconnected - representing activities of vehicles and drivers (it's a
VRP problem) across a period of time. Edges are activities and drivers
and vehicles do not normally interact with other drivers and vehicles
- so I get lots of chains of activities that are almost (but not
quite) lists. Branches do occur - when drivers swap to another vehicle
for example, or when the driver takes a break while someone else
offloads the truck.
The graphs are also directed and not cyclic.
So I'm looking for a library that will support that sort of structure
efficiently and immutably - though I'm not unhappy doing one by hand.
I do know about Graph4Scala (am actively looking at it) but I wondered
if there were any suggested alternatives or suggested best ways of
using it given my particular requirements.
Thanks
Tim
Hi Tim,
>I know there has been more than one go at writing graph libraries.
Do you mean Scala graph libraries? As I began work on Graph4Scala
roughly one year ago, EPFL backed the idea of my contribution because
there was no general purpose Scala alternative.
>… I need immutable graph structures of fairly modest size (a few hundred to about 4000 nodes)… they are typically highly disconnected… The graphs are also directed and not cyclic. So I'm looking for a library that will support that sort of structure
efficiently and immutably - though I'm not unhappy doing one by hand.
Graph4Scala does meet your above requirements. If you wanted even
automatic maintenance of acyclicity for your graph instances you could
rely on this feature of the next Graph4Scala release. But I assume
that’s not your point.
Certainly you may have a lot of other, including non-technical reasons
to prefer an individual implementation(?).
If you still considered Graph4Scala, the next step would be to make
thoughts about how to integrate your algorithms and which node/edge
layout to select to achieve an optimal solution with minimal efforts.
Peter