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 2008/08/11 13:40:16 UTC

svn commit: r684720 - in /incubator/hama/trunk/src/java/org/apache/hama: AbstractBase.java Constants.java

Author: edwardyoon
Date: Mon Aug 11 04:40:14 2008
New Revision: 684720

URL: http://svn.apache.org/viewvc?rev=684720&view=rev
Log: (empty)

Modified:
    incubator/hama/trunk/src/java/org/apache/hama/AbstractBase.java
    incubator/hama/trunk/src/java/org/apache/hama/Constants.java

Modified: incubator/hama/trunk/src/java/org/apache/hama/AbstractBase.java
URL: http://svn.apache.org/viewvc/incubator/hama/trunk/src/java/org/apache/hama/AbstractBase.java?rev=684720&r1=684719&r2=684720&view=diff
==============================================================================
--- incubator/hama/trunk/src/java/org/apache/hama/AbstractBase.java (original)
+++ incubator/hama/trunk/src/java/org/apache/hama/AbstractBase.java Mon Aug 11 04:40:14 2008
@@ -29,4 +29,5 @@
   public byte[] getColumnIndex(int b) {
     return Bytes.toBytes(Constants.COLUMN + String.valueOf(b));
   }
+  
 }

Modified: incubator/hama/trunk/src/java/org/apache/hama/Constants.java
URL: http://svn.apache.org/viewvc/incubator/hama/trunk/src/java/org/apache/hama/Constants.java?rev=684720&r1=684719&r2=684720&view=diff
==============================================================================
--- incubator/hama/trunk/src/java/org/apache/hama/Constants.java (original)
+++ incubator/hama/trunk/src/java/org/apache/hama/Constants.java Mon Aug 11 04:40:14 2008
@@ -33,30 +33,9 @@
   public final static Text METADATA_COLUMNS = new Text("metadata:columns");
   /** The type of the matrix */
   public final static Text METADATA_TYPE = new Text("metadata:type");
-
-  /** plus operator */
-  public final static String PLUS = "+";
-  /** minus operator */
-  public final static String MINUS = "-";
-
   /** Default columnfamily name */
   public final static String COLUMN = "column:";
-  /** The numerator version of the fraction matrix */
-  public final static Text NUMERATOR = new Text("numerator:");
-  /** The denominator version of the fration matrix */
-  public final static Text DENOMINATOR = new Text("denominator:");
-  /** The original version of the fraction matrix */
-  public final static Text ORIGINAL = new Text("original:");
-  /** The lower matrix version of the triangular matrix */
-  public final static Text LOWER = new Text("lower:");
-  /** The upper matrix version of the triangular matrix */
-  public final static Text UPPER = new Text("upper:");
-
-  /** A determinant value record */
-  public final static Text DETERMINANT = new Text("determinant");
 
-  /** Temporary random matices name-head */
+  /** Temporary random matices name prefix */
   public final static String RANDOM = "rand";
-  /** Temporary result matices name-head */
-  public final static String RESULT = "result";
 }