removed debug info from sequential

git-svn-id: svn://anubis/gvsu@174 45c1a28c-8058-47b2-ae61-ca45b979098e
This commit is contained in:
josh 2008-09-27 14:23:33 +00:00
parent abe2707c1f
commit 23319c77d2

View File

@ -51,9 +51,9 @@ bool readFile(char * fileName, vector<char> & v)
if (in.eof()) if (in.eof())
break; break;
v.push_back(chr); v.push_back(chr);
cout << "0x" << hex << (int) chr << " (" << chr << ") "; // cout << "0x" << hex << (int) chr << " (" << chr << ") ";
} }
cout << endl; // cout << endl;
return true; return true;
} }
@ -103,6 +103,7 @@ void similarityMatrix(vector<char> & s, vector<char> & t)
} }
} }
} }
#if 0
cout << "Matrix: " << s_size+1 << " x " << t_size+1 << endl; cout << "Matrix: " << s_size+1 << " x " << t_size+1 << endl;
for (int i = 0; i <= s_size; i++) for (int i = 0; i <= s_size; i++)
{ {
@ -112,6 +113,7 @@ void similarityMatrix(vector<char> & s, vector<char> & t)
} }
printf("\n"); printf("\n");
} }
#endif
cout << "Maximum value is " << max_val << " at position (" cout << "Maximum value is " << max_val << " at position ("
<< max_x << ", " << max_y << ")" << endl; << max_x << ", " << max_y << ")" << endl;
} }