Skip to content

Commit

Permalink
make page build work; rename lowpass_oracle_ai.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
luk036 committed Sep 9, 2023
1 parent 7a659bb commit 3c71e17
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 14 deletions.
5 changes: 1 addition & 4 deletions docs/authors.md
5 changes: 1 addition & 4 deletions docs/changelog.md
5 changes: 1 addition & 4 deletions docs/readme.md
3 changes: 1 addition & 2 deletions lowpass_oracle.cpp → lowpass_oracle_ai.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ class LowpassOracle {
this->Lpsq = Lpsq;
this->Upsq = Upsq;
this->more_alt = true;
this->i_A = 0;
this->count = 0;
}

Expand All @@ -38,7 +37,7 @@ class LowpassOracle {

// case 2, passband constraints
int N = A.size();
for (int k = 0; k < nwpass; k++) {
for (int k = 0; k < this->nwpass; k++) {
double v = 0;
for (int j = 0; j < n; j++) {
v += A[k][j] * x[j];
Expand Down

0 comments on commit 3c71e17

Please sign in to comment.