I'm pretty sure that's not it. I'm seeing the same thing when I run it on one of the cluster machines.Is your RAM being the bottleneck by any chance?I'm experimenting with the -parallel flag and finding that using 2 parallel threads is slower than a single thread, and using 3 is slower still. I have 4 cores on my machine, FYI.$ time java -jar HeatBugs.jar -for 10000 -repeat 4 -parallel 1 -quietreal 0m4.514suser 0m6.098ssys 0m0.749s$ time java -jar HeatBugs.jar -for 10000 -repeat 4 -parallel 2 -quietreal 0m4.799suser 0m12.019ssys 0m1.437s$ time java -jar HeatBugs.jar -for 10000 -repeat 4 -parallel 3 -quietreal 0m5.972suser 0m21.190ssys 0m2.933sWhat's the deal here?Joey