Increased chunk count to 6000.

This commit is contained in:
Harrison Deng 2020-04-28 17:13:11 -05:00
parent 61a6bbaa4f
commit b49f50f728

View File

@ -68,7 +68,7 @@ public class UniBiomeIslandGeneratorTest {
@Test
public void testBiomeGenerationMultithread() {
int chunksToDo = 280;
int chunksToDo = 1000;
Runnable g1 = new BiomeGenTask(chunksToDo, 0);
Runnable g2 = new BiomeGenTask(chunksToDo, 1);
Runnable g3 = new BiomeGenTask(chunksToDo, 2);
@ -94,7 +94,7 @@ public class UniBiomeIslandGeneratorTest {
@Test
public void testBiomeGenerationSingleThread() {
Runnable g1 = new BiomeGenTask(1680, 0);
Runnable g1 = new BiomeGenTask(6000, 0);
ExecutorService ex = Executors.newFixedThreadPool(6);
ex.execute(g1);