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/15 13:31:33 UTC

svn commit: r1135998 - in /commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph: model/ model/InMemoryPath.java shortestpath/Dijkstra.java shortestpath/InMemoryPath.java

Author: simonetripodi
Date: Wed Jun 15 11:31:33 2011
New Revision: 1135998

URL: http://svn.apache.org/viewvc?rev=1135998&view=rev
Log:
InMemoryPath moved to a proper package that will contains memory-based data structures implementations

Added:
    commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/model/
    commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/model/InMemoryPath.java   (contents, props changed)
      - copied, changed from r1135840, commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/shortestpath/InMemoryPath.java
Removed:
    commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/shortestpath/InMemoryPath.java
Modified:
    commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/shortestpath/Dijkstra.java

Copied: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/model/InMemoryPath.java (from r1135840, commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/shortestpath/InMemoryPath.java)
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/model/InMemoryPath.java?p2=commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/model/InMemoryPath.java&p1=commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/shortestpath/InMemoryPath.java&r1=1135840&r2=1135998&rev=1135998&view=diff
==============================================================================
--- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/shortestpath/InMemoryPath.java (original)
+++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/model/InMemoryPath.java Wed Jun 15 11:31:33 2011
@@ -1,4 +1,4 @@
-package org.apache.commons.graph.shortestpath;
+package org.apache.commons.graph.model;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -35,7 +35,7 @@ import org.apache.commons.graph.Weighted
  * @param <V> the Graph vertices type
  * @param <WE> the Graph weighted edges type
  */
-final class InMemoryPath<V extends Vertex, WE extends WeightedEdge<V>>
+public final class InMemoryPath<V extends Vertex, WE extends WeightedEdge<V>>
     implements WeightedPath<V, WE>
 {
 

Propchange: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/model/InMemoryPath.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/model/InMemoryPath.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/model/InMemoryPath.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/shortestpath/Dijkstra.java
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/shortestpath/Dijkstra.java?rev=1135998&r1=1135997&r2=1135998&view=diff
==============================================================================
--- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/shortestpath/Dijkstra.java (original)
+++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/shortestpath/Dijkstra.java Wed Jun 15 11:31:33 2011
@@ -31,6 +31,7 @@ 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.InMemoryPath;
 
 /**
  *