diff src/alice/test/codesegment/local/bitonicsort/OddPhase.java @ 200:099bb3afd74f working

no use managerKey
author sugi
date Sat, 23 Mar 2013 16:58:13 +0900
parents caee170e6cfa
children
line wrap: on
line diff
--- a/src/alice/test/codesegment/local/bitonicsort/OddPhase.java	Thu Mar 21 16:48:26 2013 +0900
+++ b/src/alice/test/codesegment/local/bitonicsort/OddPhase.java	Sat Mar 23 16:58:13 2013 +0900
@@ -16,7 +16,7 @@
 	public OddPhase(String key0 ,String key1 ,int index,String key6){
 		info0.setKey(key0);
 		info1 = ids.create(CommandType.TAKE);
-		info1.setKey("local",key1,index);
+		info1.setKey(key1,index);
 		info3.setKey("block_num");
 		info5.setKey("sort_count");
 		info6.setKey(key6);
@@ -25,9 +25,9 @@
 	public OddPhase(String key0,String key1,String key2,int index,String key6){
 		info0.setKey(key0);
 		info1 = ids.create(CommandType.TAKE);
-		info1.setKey("local",key1,index);
+		info1.setKey(key1,index);
 		info2 = ids.create(CommandType.TAKE);
-		info2.setKey("local",key2,index);
+		info2.setKey(key2,index);
 		info3.setKey("block_num");
 		info5.setKey("sort_count");
 		info6.setKey(key6);
@@ -89,7 +89,7 @@
 				new EvenPhase(info0.key,(info.range-1)+"b",info.range+"f",count,info6.key);
 			}
 		}
-		ods.update("local", info6.key, count+1);
+		ods.update(info6.key, count+1);
 	}
 	
 }