Skip to content

Commit

Permalink
clarified README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jewettaij committed Mar 19, 2020
1 parent cc9aa2a commit d2b841e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ diagonalizing dense, square, real, symmetric matrices.

The matrices themselves can be implemented as X\*\* (pointer-to-pointer),
vector\<vector\<X\>\>&, fixed-size arrays,
or any other C or C++ object which supports \[\]\[\].
or any other C or C++ object which supports \[i\]\[j\] indexing.
(Here **X** is any real numeric type. Complex numbers are not supported.)

*(Memory allocation on the heap is avoided except during instantiation.)*
Expand Down
1 change: 0 additions & 1 deletion include/jacobi.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,6 @@ MaxEntry(Scalar const *const *M, int& i_max, int& j_max) const {
//for (int i = 0; i < nm1; i++)
// for (int j = i+1; j < n; j++)
// assert(std::abs(M[i][j]) <= max_entry);
//// --
//#endif
}

Expand Down

0 comments on commit d2b841e

Please sign in to comment.