You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/06/11 16:08:24 UTC

svn commit: r1134644 - /commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/UndirectedGraph.java

Author: simonetripodi
Date: Sat Jun 11 14:08:23 2011
New Revision: 1134644

URL: http://svn.apache.org/viewvc?rev=1134644&view=rev
Log:
fixed UndirectedGraph description, kindly borrowed from Wikipedia

Modified:
    commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/UndirectedGraph.java

Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/UndirectedGraph.java
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/UndirectedGraph.java?rev=1134644&r1=1134643&r2=1134644&view=diff
==============================================================================
--- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/UndirectedGraph.java (original)
+++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/UndirectedGraph.java Sat Jun 11 14:08:23 2011
@@ -17,7 +17,8 @@ package org.apache.commons.graph;
  */
 
 /**
- * Description of the Interface
+ * An {@code UndirectedGraph} is a graph in which edges have no orientation, i.e., they are not ordered pairs,
+ * but sets <code>{u, v}</code> (or 2-multisets) of vertices.
  */
 public interface UndirectedGraph
      extends Graph