Kyoto Prize Laureate Unsnarls Electronic Networks
An anonymous reader writes "Electronic networks — from wireless cellular to the Internet — are often too big to simulate node-by-node, but new uses of graph theory are unsnarling them, according to former Microsoft Research fellow and electronics-guru Laszlo Lovasz, who spoke at the Kyoto Prize Symposium this week. 'We are identifying what is common to these networks—mathematically—so that even very large networks can be accurately modeled,' said Lovasz. He also showed some very cool methods that anybody can use to make any network--even simple organizational charts--easier to read. And even if you don't use them for real work, they are just fun to play with (his app, for instance, allows you to input a random network, which it then redraws right before your eyes so no connections cross over each other, making them extremely legible)."
in 2008 Laszlo Lovasz was awared the biggest annual award in computer science
As the subject says: yed does not only allow you to lay the connections (I don't like the term "edges". It's counter-intuitive to me.) so that they do not cross
It allows you do set a buttload of parameters and use different algorithms like organic, hierarchical, orthogonal, circle, tree for the nodes and the connections. You can even make it change the laying of connections separately.
It's a fairly mature program too.
Lovasz is a famous mathematician working in areas of combinatorics at the edge of computer science, but describing him as an "electronics guru" is simply weird...
There is something wrong with the summary. An elementary result of graph theory is that some graphs are not planar, i.e. that some graphs cannot be drawn in a plane without any edges crossing.
After all, it deals with a graph whose nodes and connections are already known exactly.
The more interesting part comes when you move to a graph like the link structure or underlying router structure of the internet, which is both orders of magnitude larger and changing rapidly -- even if you could take a perfect snapshot of it, by the time you finished analyzing that snapshot the network would have changed quite a bit in the meantime.
What Lovasz has been doing recently with his work on "graph limits" is providing a framework for analyzing such graphs. You can imagine global properties of the network approaching some sort of fixed equilibrium and hope to analyze that equilibrium without actually knowing the details of how the network is changing. I don't actually know if the work has been used in practical applications yet, but the concept goes far beyond just redrawing planar graphs.
Another great piece of graphing software: Cytoscape.
Before I studied CS (and graph theory) in university, I had gone to college and studied Electronics Engineering for 2 years, then got a job for an electronics design and manufacturing company building industrial control equipment (RTU's, SCADA controllers, magnetic amplifiers (mag amps) for very high power control for petrochemical manufacturers (5000V at 10000 Amps), etc.). One of the bigger problems when laying out a printed circuit board with many chips is where to put the chips so that you have the least number of circuit lines crossing from one side of the board to the other (so as not to short out other lines, etc). Thru holes cost money, and shorter circuit trace lines are more efficient in terms of signal time and current, especially if the fan out of one chip is very close to (but less than) the fan in of another. Some graph theory algorithms are useful for solving this problem, and I wonder if these findings can help make that process faster. Graph Theory: its not just for shortest path ambulance routing, internet packet routing, ship, rail, plane and truck routing, machine tool path efficiency, and shortest set of chemical steps to create medicine anymore!
Single layer PCBs. The free copy of Eagle is much more useful.
Nullius in verba
dot,dotty (now graphvis) beats that by another 10 years....
Indeed, the sample program even comes with at least one graph that forms a star because it can't be uncrossed.
I know Tarjan published a paper on it in the 70s because I once tried to implement it.
TFA is not all that useful in actually mentioning what this guy did. It only mentions Lovazs' local lemma (a way to create existential proofs, which is a proof that something exists that does not show the thing whose existence it proves).
Lovasz on wikipedia
And the guy has an Erdos number of 1, so he's probably a good mathematician.
Existential proofs are sometimes frustrating things as they do not answer the obvious question "well it exists, so what the bloody hell is it ?". Sometimes hundreds of year pass between the finding of an existential proof and a constructive one, meaning that constructive math is generally perceived to be more limited in scope than non-constructive mathematics. But this has not been proven, and over the years constructivist math has sometimes caught up, sometimes lost ground. An example is that there has been long disagreement between constructivist and non-constructivists about whether the square root of 2 existed. An existential proof of irrationality is easy to come by, in dozens of versions, and only much later it became known how to represent the actual number.
I know Tarjan published a paper on it in the 70s because I once tried to implement it.
He did (Hopcroft and Tarjan, 1973). There are some more recent approaches, too. I've read, and should try implementing, one by Boyer and Myrvold (2004). I really suffer from "not-invented-here" syndrome as I know of at least one implementation in the language I want it in :)
Ha! Also, on actually RTFA, I notice that the link to the "rubber band" software is called "Tutte.zip" - presumably it is this Tutte. I think it involves fixing a cycle of the graph as an outer face, and applying a kind of simulated annealing (optimisation) approach to layout the other vertices.
I wonder where we can take a look at this app. Anybody know?
You can find yEd at http://www.yworks.com./ You can find Graphviz at http://www.graphviz.org./