Skip to content

Commit 348d7de

Browse files
author
Bruce Eckel
committed
Reduce SIZE because of build failures
1 parent bd51614 commit 348d7de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arrays/ParallelPrefix.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import java.util.*;
66

77
public class ParallelPrefix {
8-
static final int SIZE = 20_000_000;
8+
static final int SIZE = 10_000_000;
99
public static void main(String[] args) {
1010
long[] nums = new long[SIZE];
1111
Arrays.setAll(nums, n -> n);

0 commit comments

Comments
 (0)