You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public static void main(String[] args) {
final int N = 100;
SparseStore<ComplexNumber> Z = SparseStore.makeComplex(N, N);
for (int row = 0; row < N; ++row) {
int col = ThreadLocalRandom.current().nextInt(N);
Z.set(row, col,
ComplexNumber.of(
ThreadLocalRandom.current().nextDouble(10),
ThreadLocalRandom.current().nextDouble(10))
);
Z.multiply(Z); //StackOverflowError here
}
}
}
The text was updated successfully, but these errors were encountered:
Test Case
public class test {
}
The text was updated successfully, but these errors were encountered: