Class FRLayoutAlgorithm2D<V,E>
java.lang.Object
org.jgrapht.alg.drawing.BaseLayoutAlgorithm2D<V,E>
org.jgrapht.alg.drawing.FRLayoutAlgorithm2D<V,E>
- Type Parameters:
V- the vertex typeE- the edge type
- All Implemented Interfaces:
LayoutAlgorithm2D<V,E>
- Direct Known Subclasses:
IndexedFRLayoutAlgorithm2D
Fruchterman and Reingold Force-Directed Placement Algorithm.
The algorithm belongs in the broad category of
force directed graph
drawing algorithms and is described in the paper:
- Thomas M. J. Fruchterman and Edward M. Reingold. Graph drawing by force-directed placement. Software: Practice and experience, 21(11):1129--1164, 1991.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected classAn inverse linear temperature model.static interfaceA general interface for a temperature model. -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final ToleranceDoubleComparatorstatic final intDefault number of iterationsstatic final doubleDefault normalization factor when calculating optimal distanceprotected intprotected doubleprotected doubleprotected Randomprotected BiFunction<LayoutModel2D<V>, Integer, FRLayoutAlgorithm2D.TemperatureModel> Fields inherited from class BaseLayoutAlgorithm2D
initializer -
Constructor Summary
ConstructorsConstructorDescriptionCreate a new layout algorithmFRLayoutAlgorithm2D(int iterations) Create a new layout algorithmFRLayoutAlgorithm2D(int iterations, double normalizationFactor) Create a new layout algorithmFRLayoutAlgorithm2D(int iterations, double normalizationFactor, BiFunction<LayoutModel2D<V>, Integer, FRLayoutAlgorithm2D.TemperatureModel> temperatureModelSupplier, Random rng) Create a new layout algorithmFRLayoutAlgorithm2D(int iterations, double normalizationFactor, BiFunction<LayoutModel2D<V>, Integer, FRLayoutAlgorithm2D.TemperatureModel> temperatureModelSupplier, Random rng, double tolerance) Create a new layout algorithmFRLayoutAlgorithm2D(int iterations, double normalizationFactor, Random rng) Create a new layout algorithmFRLayoutAlgorithm2D(int iterations, double normalizationFactor, Random rng, double tolerance) Create a new layout algorithm -
Method Summary
Modifier and TypeMethodDescriptionprotected doubleattractiveForce(double distance) Calculate the attractive force.calculateAttractiveForces(Graph<V, E> graph, LayoutModel2D<V> model) Calculate the repulsive forces between vertices connected with edges.calculateRepulsiveForces(Graph<V, E> graph, LayoutModel2D<V> model) Calculate the repulsive forces between verticesvoidLayout a graph.protected doublerepulsiveForce(double distance) Calculate the repulsive force.Methods inherited from class BaseLayoutAlgorithm2D
getInitializer, init, setInitializer
-
Field Details
-
DEFAULT_ITERATIONS
public static final int DEFAULT_ITERATIONSDefault number of iterations- See Also:
-
DEFAULT_NORMALIZATION_FACTOR
public static final double DEFAULT_NORMALIZATION_FACTORDefault normalization factor when calculating optimal distance- See Also:
-
rng
-
optimalDistance
protected double optimalDistance -
normalizationFactor
protected double normalizationFactor -
iterations
protected int iterations -
temperatureModelSupplier
protected BiFunction<LayoutModel2D<V>, Integer, FRLayoutAlgorithm2D.TemperatureModel> temperatureModelSupplier -
comparator
-
-
Constructor Details
-
FRLayoutAlgorithm2D
public FRLayoutAlgorithm2D()Create a new layout algorithm -
FRLayoutAlgorithm2D
public FRLayoutAlgorithm2D(int iterations) Create a new layout algorithm- Parameters:
iterations- number of iterations
-
FRLayoutAlgorithm2D
public FRLayoutAlgorithm2D(int iterations, double normalizationFactor) Create a new layout algorithm- Parameters:
iterations- number of iterationsnormalizationFactor- normalization factor for the optimal distance
-
FRLayoutAlgorithm2D
Create a new layout algorithm- Parameters:
iterations- number of iterationsnormalizationFactor- normalization factor for the optimal distancerng- the random number generator
-
FRLayoutAlgorithm2D
public FRLayoutAlgorithm2D(int iterations, double normalizationFactor, Random rng, double tolerance) Create a new layout algorithm- Parameters:
iterations- number of iterationsnormalizationFactor- normalization factor for the optimal distancerng- the random number generatortolerance- tolerance used when comparing floating point values
-
FRLayoutAlgorithm2D
public FRLayoutAlgorithm2D(int iterations, double normalizationFactor, BiFunction<LayoutModel2D<V>, Integer, FRLayoutAlgorithm2D.TemperatureModel> temperatureModelSupplier, Random rng) Create a new layout algorithm- Parameters:
iterations- number of iterationsnormalizationFactor- normalization factor for the optimal distancetemperatureModelSupplier- a simulated annealing temperature model supplierrng- the random number generator
-
FRLayoutAlgorithm2D
public FRLayoutAlgorithm2D(int iterations, double normalizationFactor, BiFunction<LayoutModel2D<V>, Integer, FRLayoutAlgorithm2D.TemperatureModel> temperatureModelSupplier, Random rng, double tolerance) Create a new layout algorithm- Parameters:
iterations- number of iterationsnormalizationFactor- normalization factor for the optimal distancetemperatureModelSupplier- a simulated annealing temperature model supplierrng- the random number generatortolerance- tolerance used when comparing floating point values
-
-
Method Details
-
layout
Description copied from interface:LayoutAlgorithm2DLayout a graph.- Parameters:
graph- the graphmodel- the layout model to use
-
attractiveForce
protected double attractiveForce(double distance) Calculate the attractive force.- Parameters:
distance- the distance- Returns:
- the force
-
repulsiveForce
protected double repulsiveForce(double distance) Calculate the repulsive force.- Parameters:
distance- the distance- Returns:
- the force
-
calculateRepulsiveForces
-
calculateAttractiveForces
-