Skip to content

Commit

Permalink
version 1.9.8
Browse files Browse the repository at this point in the history
  • Loading branch information
bdezonia committed May 5, 2022
1 parent 3d3b9c6 commit 072377d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.bdezonia</groupId>
<artifactId>zorbage</artifactId>
<version>1.9.8-SNAPSHOT</version>
<version>1.9.8</version>
<packaging>jar</packaging>
<name>Zorbage</name>
<description>Algebraic data types and algorithms for use in numeric processing</description>
Expand Down
1 change: 0 additions & 1 deletion src/main/java/nom/bdezonia/zorbage/algorithm/InvFFT2D.java
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@ DimensionedDataSource<U> compute(T complexAlg, V realAlg, DimensionedDataSource<
InvFFT.compute(complexAlg, realAlg, inPiped, tmpCol);
}


// for each row of temp data do a 1-d FFT and store as a row in output

for (long r = 0; r < sz; r++) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ public StorageConstruction storageType() {
return data.storageType();
}

// TODO: this routine is never out of bounds in my testing. Why?

@Override
public void set(long index, N value) {

Expand All @@ -66,6 +68,8 @@ public void set(long index, N value) {
}
}

// TODO: this routine is never out of bounds in my testing. Why?

@Override
public void get(long index, N value) {

Expand Down

0 comments on commit 072377d

Please sign in to comment.