From 0e995e49b4817847bdab4e749f198aaa48fbcd08 Mon Sep 17 00:00:00 2001 From: James E McClure Date: Mon, 24 Feb 2014 12:35:31 -0500 Subject: [PATCH] Corrected number of spheres to print out in ReadSpherePacking --- common/Domain.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/Domain.h b/common/Domain.h index 9ad23cac..258ecd7d 100755 --- a/common/Domain.h +++ b/common/Domain.h @@ -39,7 +39,7 @@ inline void ReadSpherePacking(int nspheres, double *List_cx, double *List_cy, do List_rad[count] = strtod(line2,&line2); count++; } - cout << "Number of spheres extracted is: " << count/4 << endl; + cout << "Number of spheres extracted is: " << count << endl; INSIST( count==nspheres, "Specified number of spheres is probably incorrect!" ); // ............................................................. }