From 23319c77d2859efccbd4f1b64a52543ef3af07dd Mon Sep 17 00:00:00 2001 From: josh Date: Sat, 27 Sep 2008 14:23:33 +0000 Subject: [PATCH] removed debug info from sequential git-svn-id: svn://anubis/gvsu@174 45c1a28c-8058-47b2-ae61-ca45b979098e --- cs677/pa2/sequential.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cs677/pa2/sequential.cc b/cs677/pa2/sequential.cc index 47e6077..2e0d24b 100644 --- a/cs677/pa2/sequential.cc +++ b/cs677/pa2/sequential.cc @@ -51,9 +51,9 @@ bool readFile(char * fileName, vector & v) if (in.eof()) break; v.push_back(chr); - cout << "0x" << hex << (int) chr << " (" << chr << ") "; +// cout << "0x" << hex << (int) chr << " (" << chr << ") "; } - cout << endl; +// cout << endl; return true; } @@ -103,6 +103,7 @@ void similarityMatrix(vector & s, vector & t) } } } +#if 0 cout << "Matrix: " << s_size+1 << " x " << t_size+1 << endl; for (int i = 0; i <= s_size; i++) { @@ -112,6 +113,7 @@ void similarityMatrix(vector & s, vector & t) } printf("\n"); } +#endif cout << "Maximum value is " << max_val << " at position (" << max_x << ", " << max_y << ")" << endl; }