Reduce SIZE because of build failures

This commit is contained in:
Bruce Eckel 2016-07-08 14:13:13 -06:00
parent bd5161473b
commit 348d7de52c

View File

@ -5,7 +5,7 @@
import java.util.*; import java.util.*;
public class ParallelPrefix { public class ParallelPrefix {
static final int SIZE = 20_000_000; static final int SIZE = 10_000_000;
public static void main(String[] args) { public static void main(String[] args) {
long[] nums = new long[SIZE]; long[] nums = new long[SIZE];
Arrays.setAll(nums, n -> n); Arrays.setAll(nums, n -> n);