From: ntakahas Date: Wed, 1 Jul 2009 06:29:12 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=bbc431c9f6a2581c03d66911f1fde4493043c426;p=m17n%2Fm17n-lib-cs.git *** empty log message *** --- diff --git a/sensitive.cs b/sensitive.cs index 98abd90..55d0d96 100644 --- a/sensitive.cs +++ b/sensitive.cs @@ -86,7 +86,6 @@ public class Test int[] prop2 = new int[LENGTH], end2 = new int[LENGTH]; MSymbol[] value2 = new MSymbol[LENGTH]; - DebugDump (0); // sensitivity for deletion if (from > 0 && prop[from - 1] == prop[from] && prop[from] != -1) { @@ -102,7 +101,6 @@ public class Test prop[i] = -1; } - DebugDump (1); // copy for (i = from; i < to; i++) { @@ -116,7 +114,6 @@ public class Test prop2[i - from] = -1; } - DebugDump (2); // delete for (i = to; i < LENGTH; i++) { @@ -131,7 +128,6 @@ public class Test } prop[LENGTH - l] = -1; - DebugDump (3); // sensitivity for insertion if (from2 > 0 && prop[from2 - 1] == prop[from2] && prop[from2] != -1) { @@ -140,7 +136,6 @@ public class Test prop[i] = -1; } - DebugDump (4); // move for (i = LENGTH - 1; i >= from2 + l; i--) { @@ -154,7 +149,6 @@ public class Test prop[i] = -1; } - DebugDump (5); // insert for (i = from2; i < from2 + l; i++) { @@ -167,7 +161,6 @@ public class Test else prop[i] = -1; } - DebugDump (6); MText mt2 = mt.Dup (); mt.Del (from, to); @@ -223,9 +216,9 @@ public class Test Console.Write ("\n"); } + /* static void DebugDump (int n) { - /* int i; Console.Write ("\n#{0}\n ", n); @@ -264,8 +257,8 @@ public class Test Console.Write (" "); } Console.Write ("\n"); - */ } + */ public static void Main (string[] args) {