diff --git a/README.html b/README.html index 4b85b22bb89..116fdf30b42 100644 --- a/README.html +++ b/README.html @@ -352,6 +352,8 @@

History

contributed by Andreas Schnaiter and Owen Jacobson. Add source/target vertices to edge events to fix sf.net bug 3486775, spotted by Frank Mori Hess. + Add EdmondsBlossomShrinking algorithm, contributed by + Alejandro R. Lopez del Huerto.
  • version 0.8.3 (20-Jan-2012): fix regression in @@ -606,6 +608,8 @@

    Contributors

  • Yuriy Nakonechnyy
  • +
  • Alejandro R. Lopez del Huerto
  • +

    (if we have missed your name on this list, please email us to get it diff --git a/jgrapht-core/src/test/java/org/jgrapht/alg/AllAlgTests.java b/jgrapht-core/src/test/java/org/jgrapht/alg/AllAlgTests.java index 80634e57b23..816f135456d 100644 --- a/jgrapht-core/src/test/java/org/jgrapht/alg/AllAlgTests.java +++ b/jgrapht-core/src/test/java/org/jgrapht/alg/AllAlgTests.java @@ -90,6 +90,7 @@ public static Test suite() suite.addTest(new TestSuite(HamiltonianCycleTest.class)); suite.addTest(new TestSuite(KruskalMinimumSpanningTreeTest.class)); suite.addTest(new TestSuite(StoerWagnerMinimumCutTest.class)); + suite.addTest(new TestSuite(EdmondsBlossomShrinkingTest.class)); // $JUnit-END$ return suite;