Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id CB6449B5E for ; Wed, 7 Mar 2012 14:31:53 +0000 (UTC) Received: (qmail 1960 invoked by uid 500); 7 Mar 2012 14:31:53 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 1556 invoked by uid 500); 7 Mar 2012 14:31:51 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 1534 invoked by uid 99); 7 Mar 2012 14:31:51 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Mar 2012 14:31:51 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Mar 2012 14:31:49 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 3029B2388C91 for ; Wed, 7 Mar 2012 14:31:29 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1297978 [2/2] - in /commons/sandbox/graph/branches/drop-marker-interfaces-feature/src: main/java/org/apache/commons/graph/ main/java/org/apache/commons/graph/coloring/ main/java/org/apache/commons/graph/connectivity/ main/java/org/apache/c... Date: Wed, 07 Mar 2012 14:31:25 -0000 To: commits@commons.apache.org From: simonetripodi@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120307143129.3029B2388C91@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Modified: commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/scc/CheriyanMehlhornGabowTestCase.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/scc/CheriyanMehlhornGabowTestCase.java?rev=1297978&r1=1297977&r2=1297978&view=diff ============================================================================== --- commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/scc/CheriyanMehlhornGabowTestCase.java (original) +++ commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/scc/CheriyanMehlhornGabowTestCase.java Wed Mar 7 14:31:22 2012 @@ -21,7 +21,6 @@ package org.apache.commons.graph.scc; import static org.apache.commons.graph.CommonsGraph.findStronglyConnectedComponent; import static org.apache.commons.graph.CommonsGraph.newDirectedMutableGraph; -import static org.apache.commons.graph.CommonsGraph.newDirectedMutableWeightedGraph; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; @@ -34,7 +33,6 @@ import org.apache.commons.graph.model.Ba import org.apache.commons.graph.model.BaseLabeledVertex; import org.apache.commons.graph.model.BaseLabeledWeightedEdge; import org.apache.commons.graph.model.DirectedMutableGraph; -import org.apache.commons.graph.model.DirectedMutableWeightedGraph; import org.junit.Test; /** Modified: commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/scc/KosarajuSharirTestCase.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/scc/KosarajuSharirTestCase.java?rev=1297978&r1=1297977&r2=1297978&view=diff ============================================================================== --- commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/scc/KosarajuSharirTestCase.java (original) +++ commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/scc/KosarajuSharirTestCase.java Wed Mar 7 14:31:22 2012 @@ -33,7 +33,6 @@ import org.apache.commons.graph.model.Ba import org.apache.commons.graph.model.BaseLabeledVertex; import org.apache.commons.graph.model.BaseLabeledWeightedEdge; import org.apache.commons.graph.model.DirectedMutableGraph; -import org.apache.commons.graph.model.DirectedMutableWeightedGraph; import org.junit.Test; /** Modified: commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/scc/TarjanTestCase.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/scc/TarjanTestCase.java?rev=1297978&r1=1297977&r2=1297978&view=diff ============================================================================== --- commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/scc/TarjanTestCase.java (original) +++ commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/scc/TarjanTestCase.java Wed Mar 7 14:31:22 2012 @@ -21,7 +21,6 @@ package org.apache.commons.graph.scc; import static org.apache.commons.graph.CommonsGraph.findStronglyConnectedComponent; import static org.apache.commons.graph.CommonsGraph.newDirectedMutableGraph; -import static org.apache.commons.graph.CommonsGraph.newDirectedMutableWeightedGraph; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; @@ -34,7 +33,6 @@ import org.apache.commons.graph.model.Ba import org.apache.commons.graph.model.BaseLabeledVertex; import org.apache.commons.graph.model.BaseLabeledWeightedEdge; import org.apache.commons.graph.model.DirectedMutableGraph; -import org.apache.commons.graph.model.DirectedMutableWeightedGraph; import org.junit.Test; /** Modified: commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/AStarTestCase.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/AStarTestCase.java?rev=1297978&r1=1297977&r2=1297978&view=diff ============================================================================== --- commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/AStarTestCase.java (original) +++ commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/AStarTestCase.java Wed Mar 7 14:31:22 2012 @@ -27,13 +27,9 @@ import java.util.HashMap; import java.util.Map; import org.apache.commons.graph.Path; -import org.apache.commons.graph.Vertex; -import org.apache.commons.graph.WeightedEdge; -import org.apache.commons.graph.WeightedGraph; import org.apache.commons.graph.model.BaseLabeledVertex; import org.apache.commons.graph.model.BaseLabeledWeightedEdge; import org.apache.commons.graph.model.InMemoryWeightedPath; -import org.apache.commons.graph.model.UndirectedMutableWeightedGraph; import org.apache.commons.graph.weight.primitive.DoubleWeightBaseOperations; import org.junit.Test; Modified: commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/BellmannFordTestCase.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/BellmannFordTestCase.java?rev=1297978&r1=1297977&r2=1297978&view=diff ============================================================================== --- commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/BellmannFordTestCase.java (original) +++ commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/BellmannFordTestCase.java Wed Mar 7 14:31:22 2012 @@ -23,15 +23,10 @@ import static junit.framework.Assert.ass import static org.apache.commons.graph.CommonsGraph.findShortestPath; import static org.junit.Assert.fail; -import org.apache.commons.graph.Vertex; -import org.apache.commons.graph.WeightedEdge; -import org.apache.commons.graph.WeightedGraph; import org.apache.commons.graph.WeightedPath; import org.apache.commons.graph.model.BaseLabeledVertex; import org.apache.commons.graph.model.BaseLabeledWeightedEdge; -import org.apache.commons.graph.model.DirectedMutableWeightedGraph; import org.apache.commons.graph.model.InMemoryWeightedPath; -import org.apache.commons.graph.model.UndirectedMutableWeightedGraph; import org.apache.commons.graph.weight.primitive.DoubleWeightBaseOperations; import org.junit.Test; Modified: commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/DijkstraTestCase.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/DijkstraTestCase.java?rev=1297978&r1=1297977&r2=1297978&view=diff ============================================================================== --- commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/DijkstraTestCase.java (original) +++ commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/DijkstraTestCase.java Wed Mar 7 14:31:22 2012 @@ -23,14 +23,9 @@ import static junit.framework.Assert.ass import static org.apache.commons.graph.CommonsGraph.findShortestPath; import org.apache.commons.graph.Path; -import org.apache.commons.graph.Vertex; -import org.apache.commons.graph.WeightedEdge; -import org.apache.commons.graph.WeightedGraph; import org.apache.commons.graph.model.BaseLabeledVertex; import org.apache.commons.graph.model.BaseLabeledWeightedEdge; -import org.apache.commons.graph.model.DirectedMutableWeightedGraph; import org.apache.commons.graph.model.InMemoryWeightedPath; -import org.apache.commons.graph.model.UndirectedMutableWeightedGraph; import org.apache.commons.graph.weight.primitive.DoubleWeightBaseOperations; import org.junit.Test; Modified: commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/FloydWarshallTestCase.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/FloydWarshallTestCase.java?rev=1297978&r1=1297977&r2=1297978&view=diff ============================================================================== --- commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/FloydWarshallTestCase.java (original) +++ commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/shortestpath/FloydWarshallTestCase.java Wed Mar 7 14:31:22 2012 @@ -26,15 +26,10 @@ import static org.apache.commons.graph.C import org.apache.commons.graph.MutableGraph; import org.apache.commons.graph.UndirectedGraph; -import org.apache.commons.graph.Vertex; -import org.apache.commons.graph.WeightedEdge; -import org.apache.commons.graph.WeightedGraph; import org.apache.commons.graph.WeightedPath; import org.apache.commons.graph.model.BaseLabeledVertex; import org.apache.commons.graph.model.BaseLabeledWeightedEdge; -import org.apache.commons.graph.model.DirectedMutableWeightedGraph; import org.apache.commons.graph.model.InMemoryWeightedPath; -import org.apache.commons.graph.model.UndirectedMutableWeightedGraph; import org.apache.commons.graph.weight.primitive.DoubleWeightBaseOperations; import org.junit.Test; Modified: commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/BoruvkaTestCase.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/BoruvkaTestCase.java?rev=1297978&r1=1297977&r2=1297978&view=diff ============================================================================== --- commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/BoruvkaTestCase.java (original) +++ commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/BoruvkaTestCase.java Wed Mar 7 14:31:22 2012 @@ -23,14 +23,9 @@ import static junit.framework.Assert.ass import static junit.framework.Assert.fail; import static org.apache.commons.graph.CommonsGraph.minimumSpanningTree; -import org.apache.commons.graph.SpanningTree; -import org.apache.commons.graph.Vertex; -import org.apache.commons.graph.WeightedEdge; -import org.apache.commons.graph.WeightedGraph; import org.apache.commons.graph.model.BaseLabeledVertex; import org.apache.commons.graph.model.BaseLabeledWeightedEdge; import org.apache.commons.graph.model.MutableSpanningTree; -import org.apache.commons.graph.model.UndirectedMutableWeightedGraph; import org.apache.commons.graph.weight.primitive.DoubleWeightBaseOperations; import org.junit.Test; Modified: commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/KruskalTestCase.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/KruskalTestCase.java?rev=1297978&r1=1297977&r2=1297978&view=diff ============================================================================== --- commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/KruskalTestCase.java (original) +++ commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/KruskalTestCase.java Wed Mar 7 14:31:22 2012 @@ -23,14 +23,9 @@ import static junit.framework.Assert.ass import static junit.framework.Assert.fail; import static org.apache.commons.graph.CommonsGraph.minimumSpanningTree; -import org.apache.commons.graph.SpanningTree; -import org.apache.commons.graph.Vertex; -import org.apache.commons.graph.WeightedEdge; -import org.apache.commons.graph.WeightedGraph; import org.apache.commons.graph.model.BaseLabeledVertex; import org.apache.commons.graph.model.BaseLabeledWeightedEdge; import org.apache.commons.graph.model.MutableSpanningTree; -import org.apache.commons.graph.model.UndirectedMutableWeightedGraph; import org.apache.commons.graph.weight.primitive.DoubleWeightBaseOperations; import org.junit.Test; Modified: commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/PrimTestCase.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/PrimTestCase.java?rev=1297978&r1=1297977&r2=1297978&view=diff ============================================================================== --- commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/PrimTestCase.java (original) +++ commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/PrimTestCase.java Wed Mar 7 14:31:22 2012 @@ -23,14 +23,9 @@ import static junit.framework.Assert.ass import static junit.framework.Assert.fail; import static org.apache.commons.graph.CommonsGraph.minimumSpanningTree; -import org.apache.commons.graph.SpanningTree; -import org.apache.commons.graph.Vertex; -import org.apache.commons.graph.WeightedEdge; -import org.apache.commons.graph.WeightedGraph; import org.apache.commons.graph.model.BaseLabeledVertex; import org.apache.commons.graph.model.BaseLabeledWeightedEdge; import org.apache.commons.graph.model.MutableSpanningTree; -import org.apache.commons.graph.model.UndirectedMutableWeightedGraph; import org.apache.commons.graph.weight.primitive.DoubleWeightBaseOperations; import org.junit.Test; Modified: commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/ReverseDeleteTestCase.java URL: http://svn.apache.org/viewvc/commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/ReverseDeleteTestCase.java?rev=1297978&r1=1297977&r2=1297978&view=diff ============================================================================== --- commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/ReverseDeleteTestCase.java (original) +++ commons/sandbox/graph/branches/drop-marker-interfaces-feature/src/test/java/org/apache/commons/graph/spanning/ReverseDeleteTestCase.java Wed Mar 7 14:31:22 2012 @@ -22,14 +22,9 @@ package org.apache.commons.graph.spannin import static junit.framework.Assert.assertEquals; import static org.apache.commons.graph.CommonsGraph.minimumSpanningTree; -import org.apache.commons.graph.SpanningTree; -import org.apache.commons.graph.Vertex; -import org.apache.commons.graph.WeightedEdge; -import org.apache.commons.graph.WeightedGraph; import org.apache.commons.graph.model.BaseLabeledVertex; import org.apache.commons.graph.model.BaseLabeledWeightedEdge; import org.apache.commons.graph.model.MutableSpanningTree; -import org.apache.commons.graph.model.UndirectedMutableWeightedGraph; import org.apache.commons.graph.weight.primitive.DoubleWeightBaseOperations; import org.junit.Test;