[Polycasso-commit] SF.net SVN: polycasso:[88] trunk/polycasso/src/com/mebigfatguy/polycasso/ ImageG
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2009-11-28 19:51:47
|
Revision: 88
http://polycasso.svn.sourceforge.net/polycasso/?rev=88&view=rev
Author: dbrosius
Date: 2009-11-28 19:51:38 +0000 (Sat, 28 Nov 2009)
Log Message:
-----------
surprisingly, you get a lot of ties, so remove the <= for progress
Modified Paths:
--------------
trunk/polycasso/src/com/mebigfatguy/polycasso/ImageGenerator.java
Modified: trunk/polycasso/src/com/mebigfatguy/polycasso/ImageGenerator.java
===================================================================
--- trunk/polycasso/src/com/mebigfatguy/polycasso/ImageGenerator.java 2009-11-28 05:51:48 UTC (rev 87)
+++ trunk/polycasso/src/com/mebigfatguy/polycasso/ImageGenerator.java 2009-11-28 19:51:38 UTC (rev 88)
@@ -179,7 +179,7 @@
boolean newBest = false;
synchronized(lock) {
attempt++;
- if (delta <= bestScore) {
+ if (delta < bestScore) {
bestData = data.toArray(new PolygonData[data.size()]);
bestScore = delta;
if (Polycasso.DEBUG)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|