removed debug prints from the ring finder

Wed, 16 Oct 2013 16:05:51 +0300

author
Santeri Piippo <crimsondusk64@gmail.com>
date
Wed, 16 Oct 2013 16:05:51 +0300
changeset 502
f6534d591f80
parent 501
8f314f3f5054
child 503
bebe09014dd6

removed debug prints from the ring finder

src/misc.cpp file | annotate | diff | comparison | revisions
--- a/src/misc.cpp	Wed Oct 16 16:04:56 2013 +0300
+++ b/src/misc.cpp	Wed Oct 16 16:05:51 2013 +0300
@@ -324,7 +324,6 @@
 {	// Find the scale and number of a ring between r1 and r0.
 	double scale = r1 - r0;
 	double num = r0 / scale;
-	print ("r0: %1, r1: %2, scale: %3, num: %4\n", r0, r1, scale, num);
 
 	// If the ring number is integral, we have found a fitting ring to r0 -> r1!
 	if (isInteger (num))
@@ -336,14 +335,11 @@
 	else
 	{	// If not, find an intermediate <r> between the radii
 		double r = ceil (num) * scale;
-		print ("\tr: %1\n", r);
 
 		// If r is the same as r0 or r1, we simply cannot find any rings between
 		// r0 and r1. Stop and return failure.
 		if (isZero (r0 - r) || isZero (r1 - r))
-		{	print ("failure!\n");
 			return false;
-		}
 
 		// Split this ring into r0 -> r and r -> r1. Recurse to possibly find
 		// the rings for these. If either recurse fails, the entire algorithm

mercurial