Skip to content

Commit

Permalink
fix: pass tolerance as double
Browse files Browse the repository at this point in the history
  • Loading branch information
marfanr committed Jan 11, 2025
1 parent 30899c4 commit e329ff4
Show file tree
Hide file tree
Showing 2 changed files with 120 additions and 157 deletions.
2 changes: 1 addition & 1 deletion include/keisan/matrix/matrix.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class Matrix
bool inverse2();

Matrix<N, M> transpose() const;
Matrix<M, N> round(const double & tolerance) const;
Matrix<M, N> round(double tolerance) const;

private:
double data[M * N];
Expand Down
Loading

0 comments on commit e329ff4

Please sign in to comment.