Skip to content

Commit

Permalink
whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
afabri committed May 17, 2024
1 parent fa3a505 commit 405abea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
5 changes: 1 addition & 4 deletions Solver_interface/include/CGAL/Accelerate_sparse_matrix.h
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ struct Accelerate_sparse_matrix
{
m_matrix.solve(B.data(), X.data());
}

/// \cond SKIP_IN_MANUAL
friend Accelerate_sparse_matrix
operator*(const T& c, const Accelerate_sparse_matrix& M)
Expand Down Expand Up @@ -237,9 +237,6 @@ struct Accelerate_sparse_matrix

}; // Accelerate_sparse_matrix




} //namespace CGAL

#endif // CGAL_SOLVER_INTERFACE_ACCELERATE_SPARSE_MATRIX_H
6 changes: 3 additions & 3 deletions Solver_interface/include/CGAL/Accelerate_vector.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class Accelerate_vector
{
m_vec[i] = v;
}

/// Return the vector's number of coefficients.
int dimension() const { return static_cast<int>(m_vec.size()); }

Expand All @@ -72,7 +72,7 @@ class Accelerate_vector
m_vec[i] = m_svec.get(i);
}
}

const NT& operator[](int row) const
{
return m_vec[row];
Expand All @@ -92,7 +92,7 @@ class Accelerate_vector
}
return m_svec;
}

Vec& data() {
for(int i = 0; i < m_vec.size(); i++){
m_svec.set(i,m_vec[i]);
Expand Down

0 comments on commit 405abea

Please sign in to comment.