Skip to content
Snippets Groups Projects
Commit fa284dcb authored by Joseph Mirabel's avatar Joseph Mirabel Committed by Joseph Mirabel
Browse files

Fix cppcheck warnings.

parent c14832ae
No related branches found
No related tags found
No related merge requests found
...@@ -46,7 +46,7 @@ int main () ...@@ -46,7 +46,7 @@ int main ()
for (size_t i = 0; i < p.size (); i++) for (size_t i = 0; i < p.size (); i++)
if (p[i] - (double)(weight[i] / (double)total_weight) > DBL_EPSILON if (p[i] - (double)(weight[i] / (double)total_weight) > DBL_EPSILON
|| p[i] - (double)(weight[i] / (double)total_weight) > DBL_EPSILON) { || - p[i] + (double)(weight[i] / (double)total_weight) > DBL_EPSILON) {
std::cout << "p[" << i << "] = " << p[i] << std::endl std::cout << "p[" << i << "] = " << p[i] << std::endl
<< "weight[" << i << "] = " << weight[i] << std::endl << "weight[" << i << "] = " << weight[i] << std::endl
<< "Total weight = " << total_weight << std::endl << "Total weight = " << total_weight << std::endl
......
...@@ -35,7 +35,7 @@ class TestBin : public Bin { ...@@ -35,7 +35,7 @@ class TestBin : public Bin {
{ {
os << val << " has :"; os << val << " has :";
for (std::list <double>::const_iterator it = l.begin (); for (std::list <double>::const_iterator it = l.begin ();
it != l.end (); it++) it != l.end (); ++it)
os << " " << *it << std::endl; os << " " << *it << std::endl;
return os << std::endl; return os << std::endl;
} }
...@@ -64,16 +64,22 @@ int main () ...@@ -64,16 +64,22 @@ int main ()
TestStatistics t; TestStatistics t;
double *check = new double [100]; double *check = new double [100];
int status = EXIT_SUCCESS;
for (int i = 0; i < 100; i++) { for (int i = 0; i < 100; i++) {
check[i] = ((double)(rand())/(double)rand()); check[i] = ((double)(rand())/(double)rand());
t.add (i, check[i]); t.add (i, check[i]);
} }
for (int i = 0; i < 100; i++) { for (int i = 0; i < 100; i++) {
TestStatistics::const_iterator it = t.find (i); TestStatistics::const_iterator it = t.find (i);
if (it == t.end ()) if (it == t.end ()) {
return EXIT_FAILURE; status = EXIT_FAILURE;
if (it->l.size () != 1 && check[i] != it->l.front()) break;
return EXIT_FAILURE; }
if (it->l.size () != 1 && check[i] != it->l.front()) {
status = EXIT_FAILURE;
break;
}
} }
return EXIT_SUCCESS; delete[] check;
return status;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment