Re: Network Visual Layout Algorithm

2012-06-01 Thread atucker
Spectral Graph Theory? http://cs-www.cs.yale.edu/homes/spielman/TALKS/haifa1.pdf On Thursday, 31 May 2012 14:37:21 UTC+1, Sean Devlin wrote: > > Hey folks, > I'm looking for help demonstrating Clojure's superiority to Scala :) > > I have a contest going with a colleague, where we each have to rend

Re: Network Visual Layout Algorithm

2012-05-31 Thread Boris V. Schmid
I did some network visualization a long time ago, and for big networks I found it fast to call toxiclib from clojure for calculating the layout, and use repulsive springs to generate my network, and once its relatively stable, add additional repulsive springs between overlapping nodes, so that

Re: Network Visual Layout Algorithm

2012-05-31 Thread Sean Devlin
This should work great. You guys rock :) On Thursday, May 31, 2012 9:48:28 AM UTC-4, daveray wrote: > > Lacij (https://github.com/pallix/lacij) and Vijual > (https://github.com/drcode/vijual) both implement graph layout > algorithms in Clojure. > > Dave > > On Thu, May 31, 2012 at 6:42 AM, Ul

Re: Network Visual Layout Algorithm

2012-05-31 Thread Dave Ray
Lacij (https://github.com/pallix/lacij) and Vijual (https://github.com/drcode/vijual) both implement graph layout algorithms in Clojure. Dave On Thu, May 31, 2012 at 6:42 AM, Ulises wrote: >> I have a contest going with a colleague, where we each have to render a >> network layout in SVG.  My gu

Re: Network Visual Layout Algorithm

2012-05-31 Thread Ulises
> I have a contest going with a colleague, where we each have to render a > network layout in SVG.  My gut says that Synthetic Annealing is the right > tool for the job here. I haven't heard of synthetic annealing (I have heard of simulated annealing though) but if you're looking to draw a network

Network Visual Layout Algorithm

2012-05-31 Thread Sean Devlin
Hey folks, I'm looking for help demonstrating Clojure's superiority to Scala :) I have a contest going with a colleague, where we each have to render a network layout in SVG. My gut says that Synthetic Annealing is the right tool for the job here. 1. Does anyone have a better thought than s