Fix sparse and function size

This commit is contained in:
kradchen
2023-05-29 16:18:27 +08:00
parent eb98e532b9
commit ea3496372f
3 changed files with 6 additions and 5 deletions

View File

@@ -10,7 +10,7 @@ namespace Aurora
{
}
Sparse::Sparse(Matrix& Cols, Matrix& Rows, Matrix& Values,size_t M, size_t N)
Sparse::Sparse(Matrix Cols, Matrix Rows, Matrix Values,size_t M, size_t N)
: mColIdxVector(Cols),
mRowIdxVector(Rows),
mValueVector(Values),