Bug fix in Eigen_sparse_matrix

This commit is contained in:
Andreas Fabri 2024-04-23 08:44:25 +01:00
parent eb07187e7d
commit b98c628045
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ public:
{
CGAL_precondition(rows > 0);
CGAL_precondition(columns > 0);
if(m_is_symmetric)
if(is_symmetric)
{
CGAL_precondition(rows == columns);
}