Force-based algorithms

Force-based algorithms

Force-based or force-directed algorithms are a class of algorithms for drawing graphs in an aesthetically pleasing way. Their purpose is to position the nodes of a graph in two dimensional or three dimensional space so that all the edges are of more or less equal length and there are as few crossing edges as possible.

The force-directed algorithms achieve this by assigning forces amongst the set of edges and the set of nodes; the most straightforward method is to assign forces as if the edges were springs (see Hooke's law) and the nodes were electrically charged particles (see Coulomb's law). The entire graph is then simulated as if it were a physical system. The forces are applied to the nodes, pulling them closer together or pushing them further apart. This is repeated iteratively until the system comes to an equilibrium state; i.e., their relative positions do not change anymore from one iteration to the next. At that moment, the graph is drawn. The physical interpretation of this equilibrium state is that all the forces are in mechanical equilibrium.

An alternative model considers a spring-like force for every pair of nodes (i,j) where the ideal length delta_{ij} of each spring is proportional to the graph-theoretic distance between nodes "i" and "j". In this model there is no need for a separate repulsive force. Note that minimizing the difference (usually the squared difference) between euclidean and ideal distances between nodes is then equivalent to a metric multidimensional scaling problem. Stress majorization gives a very well-behaved (i.e. monotonically convergent) and mathematically elegant way to minimise these differences and hence find a good layout for the graph.

A force-directed graph can involve forces other than mechanical springs and electrical repulsion; examples include logarithmic springs (as opposed to linear springs) and magnetic or gravitational fields.

The results of this class of algorithm often look very good. In the case of spring-and-charged-particle graphs, the edges tend to have uniform length (because of the spring forces), and nodes that are not connected by an edge tend to be drawn further apart (because of the electrical repulsion).

While graph drawing is a difficult problem, force-directed algorithms, being physical simulations, usually require no special knowledge about graph theory such as planarity.

It is also possible to employ mechanisms that search more directly for energy minima, either instead of or in conjunction with physical simulation. Such mechanisms, which are examples of general global optimization methods, include simulated annealing and genetic algorithms.

Advantages

The following are among the most important advantages of force-directed algorithms:

* Good quality results: at least for graphs of medium size (up to 50-100 vertices), the results obtained have usually very good aesthetic properties. In particular, they are good at achieving the following aesthetic criteria: uniform edge length, uniform vertex distribution and showing symmetry. This last criterion is among the most important ones and is hard to achieve with any other type of algorithm.

* Flexibility: force-directed algorithms can be easily adapted and extended to fulfill additional aesthetic criteria. This makes them the most versatile class of graph drawing algorithms. Examples of existing extensions include the ones for directed graphs, 3D graph drawing, cluster graph drawing, constrained graph drawing and dynamic graph drawing.

* Intuitive: since they are based on physical analogies of common objects, like springs, the behavior of the algorithms is relatively easy to predict and understand. This is not the case with other types of graph-drawing algorithms.

* Simplicity: typical force-directed algorithms are simple and can be implemented in a few lines of code. Other classes of graph-drawing algorithms, like the ones for orthogonal layouts, are usually much more involved.

* Interactivity: another advantage of this class of algorithm is the interactive aspect. By drawing the intermediate stages of the graph, the user can follow how the graph evolves, seeing it unfold from a tangled mess into a good-looking configuration. In some interactive graph drawing tools, the user can pull one or more nodes out of their equilibrium state and watch them migrate back into position. This makes them a preferred choice for dynamic and online graph drawing systems.

* Strong theoretical foundations: while simple "ad-hoc" force-directed algorithms (such as the one given in pseudo-code in this article) often appear in the literature and in practice (because they are relatively easy to understand), more reasoned approaches are starting to gain traction. Statisticians have been solving similar problems in multidimensional scaling (MDS) since the 1930s and physicists also have a long history of working with related n-body problems - so extremely mature approaches exist. As an example, the stress majorization approach to metric MDS can be applied to graph drawing as described above. This has been proven to converge monotonically [de Leeuw, J. "Convergence of the majorization method for multidimensional scaling", Journal of Classification 5(2), Springer New York, pp. 163--180, 1988] . Monotonic convergence, the property that the algorithm will at each iteration decrease the stress or cost of the layout, is important because it guarantees that the layout will eventually reach a local minimum and stop. Damping schedules such as the one used in the pseudo-code below, cause the algorithm to stop, but cannot guarantee that a true local minimum is reached.

Disadvantages

The main disadvantages of force-directed algorithms include the following:
* High running time: the typical force-directed algorithms are generally "considered" to have a running time equivalent to O(V3), where V is the number of nodes of the input graph. This is because the number of iterations is estimated to be O(V), and in every iteration, all pairs of nodes need to be visited and their mutual repulsive forces computed. This is related to the N-body problem in physics. However, since repulsive forces are local in nature the graph can be partitioned such that only neighboring vertices are considered. Common techniques used by algorithms for determining the layout of large graphs include high-dimensional embedding [Harel D., Koren Y., Graph Drawing by High-Dimensional Embedding, Proceedings of the 9th International Symposium on Graph Drawing, 207 - 219] , multi-layer drawing and other methods related to N-body simulation. For example the Barnes-Hut simulation based method FADE [Quigley A., Eades P. (2001), FADE: Graph Drawing, Clustering, and Visual Abstraction, Proceedings of the 8th International Symposium on Graph Drawing, 197--210] can improve running time to n*log(n) per iteration. Using the paper " [http://www.cs.ucd.ie/staff/aquigley/home/downloads/aq-gd2000.pdf FADE: Graph Drawing, Clustering, and Visual Abstraction] " as a rough guide, in a few seconds you can expect to draw at most 1,000 nodes with a standard n² per iteration technique, and 100,000 with a n*log(n) per iteration technique.

* Poor local minima: it is easy to see that force-directed algorithms produce a graph with minimal energy, in particular one whose total energy is only a local minimum. The local minimum found can be, in many cases, considerably worse than a global minimum, which is translated into a low-quality drawing. For many algorithms, especially the ones that allow only "down-hill" moves of the vertices, the final result can be strongly influenced by the initial layout, that in most cases is randomly generated. The problem of poor local minima becomes more important as the number of vertices of the graph increases. A combined application of different algorithms is helpful to solve this problem (e.g. Kamada-Kawai [Kamada, T. & Kawai, S. (1989). An algorithm for drawing general undirected graphs. Information Processing Letters, 31, 7-15.] for quickly generating an advantageous initial layout and Fruchterman-Reingold [Fruchterman, T. M. J., & Reingold, E. M. (1991). Graph Drawing by Force-Directed Placement. Software: Practice and Experience, 21(11).] for a visually more significant placement of neighbored nodes).

Pseudocode

Each node has x,y position and dx,dy velocity and mass m. There is usually a spring constant, s, and damping: 0 < damping < 1. The force toward and away from nodes is calculated according to Hooke's Law and Coulomb's law or similar as discussed above.

set up initial node velocities to (0,0) set up initial node positions randomly "// make sure no 2 nodes are in exactly the same position loop total_kinetic_energy := 0 "// running sum of total kinetic energy over all particles for each node net-force := (0, 0) "// running sum of total force on this particular node " for each other node net-force := net-force + Coulomb_repulsion( this_node, other_node ) next node " for each spring connected to this node net-force := net-force + Hooke_attraction( this_node, spring ) next spring " // without damping, it moves forever this_node.velocity := (this_node.velocity + timestep * net-force) * damping this_node.position := this_node.position + timestep * this_node.velocity total_kinetic_energy := total_kinetic_energy + this_node.mass * (this_node.velocity)^2 next node until total_kinetic_energy is less than some small number " //the simulation has stopped moving

References

* Giuseppe Di Battista, Peter Eades, Roberto Tamassia, Ioannis G. Tollis. Graph Drawing: Algorithms for the Visualization of Graphs. Prentice Hall, 1999.
* Michael Kaufmann and Dorothea Wagner, editors. Drawing graphs: methods and models, volume 2025 of Lecture Notes in Computer Science. Springer-Verlag, 2001.

External links

* [http://www.cs.usyd.edu.au/~aquigley/3dfade/ Aaron Quigley's page on large-scale force-directed layout]
* [http://search.cpan.org/~pasky/Graph-Layderer-0.02/lib/Graph/Layouter/Spring.pm Graph Layderer's spring algorithm: Perl source code]
* [http://www.aisee.com/cgi-bin/examples?topic=2 Examples of spring-based layouts]
* [http://www.aisee.com/manual/unix/56.htm aiSee's force-directed layout]
* [http://www.cs.usyd.edu.au/%7Eaquigley/avi/spring.avi Video of Spring Algorithm]
* [http://www.cercia.ac.uk/our_services/software/ Colin Frayn's Force-Based Visualisation Suite at Cercia.ac.uk]
* [https://nwb.slis.indiana.edu/community/?n=VisualizeData.Kamada-Kawaii Short explanation of the Kamada-Kawai spring-based graph layout algorithm featuring a picture]
* [https://nwb.slis.indiana.edu/community/?n=VisualizeData.Fruchterman-Rheingold Short explanation of Fruchterman-Reingold algorithm. The algorithm implements a variable step width (“temperature”) to guarantee that the system reaches equilibrium state]
* [http://www.cs.cmu.edu/~quixote/#Graph%20Layout Daniel Tunkelang's dissertation (with source code) on force-directed graph layout]


Wikimedia Foundation. 2010.

Игры ⚽ Нужен реферат?

Look at other dictionaries:

  • Force-based layout — Les algorithmes de dessin basé sur les forces (Force based ou Force directed algorithms) permettent de positionner les nœuds d un graphe pour faciliter sa visualisation en utilisant un système de force appliqués entre les nœuds et les arcs.… …   Wikipédia en Français

  • List of terms relating to algorithms and data structures — The [http://www.nist.gov/dads/ NIST Dictionary of Algorithms and Data Structures] is a reference work maintained by the U.S. National Institute of Standards and Technology. It defines a large number of terms relating to algorithms and data… …   Wikipedia

  • Brute-force attack — The EFF s US$250,000 DES cracking machine contained over 1,800 custom chips and could brute force a DES key in a matter of days. The photograph shows a DES Cracker circuit board fitted with 32 Deep Crack chips and some control chips. In… …   Wikipedia

  • Brute force attack — In cryptanalysis, a brute force attack is a method of defeating a cryptographic scheme by trying a large number of possibilities; for example, possible keys in order to decrypt a message. In most schemes, the theoretical possibility of a brute… …   Wikipedia

  • Ground-Based Midcourse Defense — (GMD) is a component of the national missile defense strategy of the United States administered by the U.S. Missile Defense Agency. Previously known as National Missile Defense (NMD), the name was changed in 2002 to differentiate it from other… …   Wikipedia

  • Cache algorithms — This article is about general cache algorithms. For detailed algorithms specific to paging, see page replacement algorithm. For detailed algorithms specific to the cache between a CPU and RAM, see CPU cache. In computing, cache algorithms (also… …   Wikipedia

  • Zero-based numbering — is numbering in which the initial element of a sequence is assigned the index 0, rather than the index 1 as is typical in everyday circumstances. Under zero based numbering, the initial element is sometimes termed the zeroth element, rather than… …   Wikipedia

  • Centrifugal force (planar motion) — In classical mechanics, centrifugal force (from Latin centrum center and fugere to flee ) is one of the three so called inertial forces or fictitious forces that enter the equations of motion when Newton s laws are formulated in a non inertial… …   Wikipedia

  • Time-based One-time Password Algorithm — TOTP (Time based One Time Password Algorithm, RFC 6238.) OATH алгоритм создания одноразовых паролей для защищенной аутентификации, являющийся улучшением HOTP (HMAC Based One Time Password Algorithm). Является алгоритмом односторонней… …   Википедия

  • List of mathematics articles (F) — NOTOC F F₄ F algebra F coalgebra F distribution F divergence Fσ set F space F test F theory F. and M. Riesz theorem F1 Score Faà di Bruno s formula Face (geometry) Face configuration Face diagonal Facet (mathematics) Facetting… …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”