This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-graph.git


    from e795895  Update .asf.yaml
     new 783a9c5  Normalize test method names
     new 178a2fa  Sort members

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../graph/scc/SCCAlgorithmBenchmarkTestCase.java   |  16 +-
 .../UniVsBiDijkstraBenchmarkTestCase.java          |  46 +-
 .../MinimumSpanningTreeBenchmarkTestCase.java      |  36 +-
 .../org/apache/commons/graph/CommonsGraph.java     | 150 ++---
 .../org/apache/commons/graph/DirectedGraph.java    |  20 +-
 src/main/java/org/apache/commons/graph/Graph.java  |  76 +--
 .../org/apache/commons/graph/GraphException.java   |  14 +-
 .../org/apache/commons/graph/MutableGraph.java     |  28 +-
 .../commons/graph/SynchronizedDirectedGraph.java   |  16 +-
 .../apache/commons/graph/SynchronizedGraph.java    |  78 +--
 .../commons/graph/SynchronizedMutableGraph.java    |  16 +-
 .../java/org/apache/commons/graph/VertexPair.java  |  44 +-
 .../graph/builder/AbstractGraphConnection.java     |  48 +-
 .../commons/graph/builder/DefaultGrapher.java      |  12 +-
 .../commons/graph/builder/GraphConnector.java      |  18 +-
 .../commons/graph/collections/DisjointSet.java     |  54 +-
 .../commons/graph/collections/DisjointSetNode.java |  34 +-
 .../commons/graph/collections/FibonacciHeap.java   | 608 ++++++++++-----------
 .../graph/collections/FibonacciHeapNode.java       | 112 ++--
 .../commons/graph/coloring/ColoredVertices.java    |  24 +-
 .../graph/coloring/ColoringAlgorithmsSelector.java |  14 +-
 .../DefaultColoringAlgorithmsSelector.java         |  66 +--
 .../graph/connectivity/ConnectivityBuilder.java    |  10 +-
 .../connectivity/DefaultConnectivityBuilder.java   |  12 +-
 .../org/apache/commons/graph/elo/Category.java     |  12 +-
 .../commons/graph/elo/DefaultKFactorBuilder.java   |  46 +-
 .../commons/graph/export/AbstractExporter.java     |  88 +--
 .../apache/commons/graph/export/DotExporter.java   | 120 ++--
 .../commons/graph/export/GraphMLExporter.java      | 140 ++---
 .../flow/DefaultMaxFlowAlgorithmSelector.java      | 116 ++--
 .../commons/graph/flow/FlowNetworkHandler.java     | 110 ++--
 .../graph/flow/MaxFlowAlgorithmSelector.java       |  12 +-
 .../org/apache/commons/graph/model/BaseGraph.java  | 176 +++---
 .../commons/graph/model/BaseMutableGraph.java      |  88 +--
 .../commons/graph/model/DirectedMutableGraph.java  |  54 +-
 .../apache/commons/graph/model/InMemoryPath.java   | 148 ++---
 .../commons/graph/model/InMemoryWeightedPath.java  |  52 +-
 .../commons/graph/model/MutableSpanningTree.java   |  16 +-
 .../apache/commons/graph/model/RevertedGraph.java  |  54 +-
 .../graph/model/UndirectedMutableGraph.java        |  18 +-
 .../graph/scc/CheriyanMehlhornGabowAlgorithm.java  |  58 +-
 .../graph/scc/DefaultSccAlgorithmSelector.java     |  30 +-
 .../commons/graph/scc/KosarajuSharirAlgorithm.java | 100 ++--
 .../commons/graph/scc/SccAlgorithmSelector.java    |  12 +-
 .../apache/commons/graph/scc/TarjanAlgorithm.java  |  74 +--
 .../commons/graph/scc/TarjanVertexMetaInfo.java    |  10 +-
 .../shortestpath/AllVertexPairsShortestPath.java   |  28 +-
 .../shortestpath/DefaultPathSourceSelector.java    |  18 +-
 .../DefaultShortestPathAlgorithmSelector.java      | 118 ++--
 .../NegativeWeightedCycleException.java            |   8 +-
 .../graph/shortestpath/ShortestDistances.java      |  50 +-
 .../ShortestPathAlgorithmSelector.java             |   8 +-
 .../DefaultSpanningTreeSourceSelector.java         |  38 +-
 .../commons/graph/spanning/ReverseDeleteGraph.java |  64 +--
 .../commons/graph/spanning/ShortestEdges.java      |  74 +--
 .../graph/spanning/SpanningTreeSourceSelector.java |  30 +-
 .../apache/commons/graph/spanning/SuperVertex.java |  44 +-
 .../org/apache/commons/graph/utils/Assertions.java |  60 +-
 .../org/apache/commons/graph/utils/Objects.java    |  20 +-
 .../commons/graph/visit/BaseGraphVisitHandler.java |  14 +-
 .../visit/DefaultVisitAlgorithmsSelector.java      |   8 +-
 .../commons/graph/visit/GraphVisitHandler.java     |  34 +-
 .../graph/visit/VisitAlgorithmsSelector.java       |  12 +-
 .../commons/graph/visit/VisitGraphBuilder.java     |  20 +-
 .../org/apache/commons/graph/weight/Monoid.java    |  14 +-
 .../primitive/BigDecimalWeightBaseOperations.java  |  24 +-
 .../primitive/BigIntegerWeightBaseOperations.java  |  24 +-
 .../primitive/DoubleWeightBaseOperations.java      |  24 +-
 .../primitive/FloatWeightBaseOperations.java       |  24 +-
 .../primitive/IntegerWeightBaseOperations.java     |  24 +-
 .../weight/primitive/LongWeightBaseOperations.java |  24 +-
 .../graph/builder/GraphBuilderTestCase.java        |   2 +-
 .../graph/collections/FibonacciHeapTestCase.java   | 140 ++---
 .../graph/coloring/AbstractColoringTest.java       |  42 +-
 .../GraphColoringBackTrackingTestCase.java         | 120 ++--
 .../graph/coloring/GraphColoringTestCase.java      | 118 ++--
 .../FindConnectedComponetTestCase.java             |  86 +--
 .../org/apache/commons/graph/elo/EloTestCase.java  |   2 +-
 .../commons/graph/elo/SimplePlayersRank.java       |  10 +-
 .../commons/graph/export/ExportTestCase.java       |   6 +-
 .../commons/graph/flow/EdmondsKarpTestCase.java    |  98 ++--
 .../commons/graph/flow/FordFulkersonTestCase.java  | 110 ++--
 .../commons/graph/model/BaseLabeledEdge.java       |  34 +-
 .../commons/graph/model/BaseLabeledVertex.java     |  34 +-
 .../graph/model/BaseLabeledWeightedEdge.java       |  34 +-
 .../graph/model/BaseMutableGraphTestCase.java      | 346 ++++++------
 .../graph/model/GraphSerializationTestCase.java    | 184 +++----
 .../graph/scc/CheriyanMehlhornGabowTestCase.java   |  16 +-
 .../commons/graph/scc/KosarajuSharirTestCase.java  |  30 +-
 .../apache/commons/graph/scc/TarjanTestCase.java   |  14 +-
 .../commons/graph/shortestpath/AStarTestCase.java  | 220 ++++----
 .../graph/shortestpath/BellmannFordTestCase.java   | 158 +++---
 .../graph/shortestpath/BidirDijkstraTestCase.java  | 242 ++++----
 .../graph/shortestpath/DijkstraTestCase.java       | 128 ++---
 .../graph/shortestpath/FloydWarshallTestCase.java  |  86 +--
 .../commons/graph/spanning/BoruvkaTestCase.java    |  44 +-
 .../commons/graph/spanning/KruskalTestCase.java    | 250 ++++-----
 .../commons/graph/spanning/PrimTestCase.java       |  78 +--
 .../graph/spanning/ReverseDeleteTestCase.java      |  40 +-
 .../org/apache/commons/graph/utils/GraphUtils.java |  58 +-
 .../graph/utils/MultiThreadedTestRunner.java       |  16 +-
 .../org/apache/commons/graph/utils/TestRunner.java |  14 +-
 .../apache/commons/graph/visit/VisitTestCase.java  |   4 +-
 103 files changed, 3328 insertions(+), 3328 deletions(-)

Reply via email to