You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hama.apache.org by ed...@apache.org on 2014/12/22 01:12:53 UTC

svn commit: r1647227 - in /hama/trunk/examples/src: main/java/org/apache/hama/examples/BipartiteMatching.java test/java/org/apache/hama/examples/BipartiteMatchingTest.java

Author: edwardyoon
Date: Mon Dec 22 00:12:53 2014
New Revision: 1647227

URL: http://svn.apache.org/r1647227
Log:
quick fix small bug.

Modified:
    hama/trunk/examples/src/main/java/org/apache/hama/examples/BipartiteMatching.java
    hama/trunk/examples/src/test/java/org/apache/hama/examples/BipartiteMatchingTest.java

Modified: hama/trunk/examples/src/main/java/org/apache/hama/examples/BipartiteMatching.java
URL: http://svn.apache.org/viewvc/hama/trunk/examples/src/main/java/org/apache/hama/examples/BipartiteMatching.java?rev=1647227&r1=1647226&r2=1647227&view=diff
==============================================================================
--- hama/trunk/examples/src/main/java/org/apache/hama/examples/BipartiteMatching.java (original)
+++ hama/trunk/examples/src/main/java/org/apache/hama/examples/BipartiteMatching.java Mon Dec 22 00:12:53 2014
@@ -135,9 +135,9 @@ public final class BipartiteMatching {
    * 
    * Input graph is given as<br/>
    * <Vertex> <component value>:<edge 1> <edge 2> ..<br/>
-   * A L:B D<br/>
+   * A L:B<br/>
    * B R:A<br/>
-   * C L:B<br/>
+   * C L:D<br/>
    * D R:A C<br/>
    */
   public static class BipartiteMatchingVertexReader extends

Modified: hama/trunk/examples/src/test/java/org/apache/hama/examples/BipartiteMatchingTest.java
URL: http://svn.apache.org/viewvc/hama/trunk/examples/src/test/java/org/apache/hama/examples/BipartiteMatchingTest.java?rev=1647227&r1=1647226&r2=1647227&view=diff
==============================================================================
--- hama/trunk/examples/src/test/java/org/apache/hama/examples/BipartiteMatchingTest.java (original)
+++ hama/trunk/examples/src/test/java/org/apache/hama/examples/BipartiteMatchingTest.java Mon Dec 22 00:12:53 2014
@@ -42,7 +42,7 @@ import org.junit.Test;
 
 public class BipartiteMatchingTest extends TestCase {
 
-  private String[] input = { "A L:B", "B R:A", "C L:B D", "D R:A C" };
+  private String[] input = { "A L:B", "B R:A", "C L:D", "D R:A C" };
 
   private final static String DELIMETER = "\t";