diff src/alice/test/codesegment/local/bitonicsort/Sort.java @ 243:c70cd1b2caca

remove word_count bug
author sugi
date Wed, 08 May 2013 15:43:49 +0900
parents 9eaaca2b8a57
children d2a448133bbd
line wrap: on
line diff
--- a/src/alice/test/codesegment/local/bitonicsort/Sort.java	Tue Apr 16 18:26:07 2013 +0900
+++ b/src/alice/test/codesegment/local/bitonicsort/Sort.java	Wed May 08 15:43:49 2013 +0900
@@ -11,7 +11,7 @@
 		int end = data.table.length-1; // index is up to length-1
 		while(true){
 			while(begin < end){
-				if (end-begin< 150){
+				if (end-begin< 40){
 					bubbleSort(data,begin,end);
 					break;
 				} else {