Skip to content

Commit 75bb7ff

Browse files
author
Thomas Tschager
committed
javadoc
1 parent c3e5454 commit 75bb7ff

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

jgrapht-core/src/main/java/org/jgrapht/alg/CliqueMinimalSeparatorDecomposition.java

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public class CliqueMinimalSeparatorDecomposition<V, E>
106106
/**
107107
* Setup a clique minimal separator decomposition on graph <code>g</code>.
108108
*
109-
* @param g
109+
* @param g The graph to decompose.
110110
*/
111111
public CliqueMinimalSeparatorDecomposition(SimpleGraph<V, E> g)
112112
{
@@ -205,7 +205,7 @@ public void computeMinimalTriangulation()
205205
* Get the vertex with the maximal label.
206206
*
207207
* @param vertexLabels Map that gives a label for each vertex.
208-
* @return
208+
* @return Vertex with the maximal label.
209209
*/
210210
private V getMaxLabelVertex(Map<V, Integer> vertexLabels)
211211
{
@@ -348,7 +348,7 @@ public boolean isChordal()
348348
/**
349349
* Get the fill edges generated by the triangulation.
350350
*
351-
* @return
351+
* @return Set of fill edges.
352352
*/
353353
public Set<E> getFillEdges()
354354
{
@@ -359,9 +359,9 @@ public Set<E> getFillEdges()
359359
}
360360

361361
/**
362-
* Get the minimal triangulation.
362+
* Get the minimal triangulation of the graph.
363363
*
364-
* @return
364+
* @return Triangulated graph.
365365
*/
366366
public Graph<V, E> getMinimalTriangulation()
367367
{
@@ -375,7 +375,7 @@ public Graph<V, E> getMinimalTriangulation()
375375
* Get the generators of the separators of the triangulated graph, i.e.
376376
* all vertices that generate a minimal separator of triangulated graph.
377377
*
378-
* @return
378+
* @return List of generators.
379379
*/
380380
public List<V> getGenerators()
381381
{
@@ -388,7 +388,7 @@ public List<V> getGenerators()
388388
/**
389389
* Get the minimal elimination ordering produced by the triangulation.
390390
*
391-
* @return
391+
* @return The minimal elimination ordering.
392392
*/
393393
public LinkedList<V> getMeo()
394394
{
@@ -414,7 +414,8 @@ public Map<Set<V>, Integer> getFullComponentCount()
414414
/**
415415
* Get the atoms generated by the decomposition.
416416
*
417-
* @return
417+
* @return Set of atoms, where each atom is described as the set of its
418+
* vertices.
418419
*/
419420
public Set<Set<V>> getAtoms()
420421
{
@@ -427,7 +428,8 @@ public Set<Set<V>> getAtoms()
427428
/**
428429
* Get the clique minimal separators.
429430
*
430-
* @return
431+
* @return Set of separators, where each separator is described as the set
432+
* of its vertices.
431433
*/
432434
public Set<Set<V>> getSeparators()
433435
{
@@ -440,7 +442,7 @@ public Set<Set<V>> getSeparators()
440442
/**
441443
* Get the original graph.
442444
*
443-
* @return
445+
* @return Original graph.
444446
*/
445447
public SimpleGraph<V, E> getGraph()
446448
{

0 commit comments

Comments
 (0)