make method static
authorbdemsky <bdemsky>
Tue, 21 Apr 2009 01:51:55 +0000 (01:51 +0000)
committerbdemsky <bdemsky>
Tue, 21 Apr 2009 01:51:55 +0000 (01:51 +0000)
Robust/src/Benchmarks/SingleTM/KMeans/Normal.java

index ae02cb5e6c3aa15e317dbb97b9824829cadc8583..3426f61e48b95472181a8c0105c1358cae1e498e 100644 (file)
@@ -96,7 +96,8 @@ public class Normal {
    * work
    * =============================================================================
    */
-  public void work(int myId, GlobalArgs args) {
+  public static void work(int myId, GlobalArgs args) {
+    int CHUNK=3;
     double[][] feature = args.feature;
     int nfeatures = args.nfeatures;
     int npoints = args.npoints;