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 2012/06/28 11:46:26 UTC

svn commit: r1354886 - /commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/collections/FibonacciHeap.java

Author: simonetripodi
Date: Thu Jun 28 09:46:24 2012
New Revision: 1354886

URL: http://svn.apache.org/viewvc?rev=1354886&view=rev
Log:
just added the nothe that the provided FibonacciHeap implementation is not thread safe

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

Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/collections/FibonacciHeap.java
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/collections/FibonacciHeap.java?rev=1354886&r1=1354885&r2=1354886&view=diff
==============================================================================
--- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/collections/FibonacciHeap.java (original)
+++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/collections/FibonacciHeap.java Thu Jun 28 09:46:24 2012
@@ -38,6 +38,8 @@ import java.util.Set;
  * <a href="http://staff.ustc.edu.cn/~csli/graduate/algorithms/book6/chap21.htm">University of Science and Technology of
  * China</a> lesson.
  *
+ * <b>Note</b>: this class is NOT thread safe!
+ *
  * @param <E> the type of elements held in this collection.
  */
 public final class FibonacciHeap<E>