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 BEAAC4918 for ; Wed, 15 Jun 2011 11:31:55 +0000 (UTC) Received: (qmail 51652 invoked by uid 500); 15 Jun 2011 11:31:55 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 51594 invoked by uid 500); 15 Jun 2011 11:31:55 -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 51587 invoked by uid 99); 15 Jun 2011 11:31:55 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Jun 2011 11:31:55 +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, 15 Jun 2011 11:31:54 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id ECA5C23889F7; Wed, 15 Jun 2011 11:31:33 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: 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 Date: Wed, 15 Jun 2011 11:31:33 -0000 To: commits@commons.apache.org From: simonetripodi@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110615113133.ECA5C23889F7@eris.apache.org> 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 the Graph vertices type * @param the Graph weighted edges type */ -final class InMemoryPath> +public final class InMemoryPath> implements WeightedPath { 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; /** *