Rename nrows/ncols args for try_from_*_data functions for consistency

This commit is contained in:
Fabian Loeschner 2021-11-09 10:31:50 +01:00
parent 40d8a904a3
commit 2a3e657b56
2 changed files with 10 additions and 18 deletions

View File

@ -156,19 +156,15 @@ impl<T> CscMatrix<T> {
/// An error is returned if the data given does not conform to the CSC storage format. /// An error is returned if the data given does not conform to the CSC storage format.
/// See the documentation for [CscMatrix](struct.CscMatrix.html) for more information. /// See the documentation for [CscMatrix](struct.CscMatrix.html) for more information.
pub fn try_from_csc_data( pub fn try_from_csc_data(
num_rows: usize, nrows: usize,
num_cols: usize, ncols: usize,
col_offsets: Vec<usize>, col_offsets: Vec<usize>,
row_indices: Vec<usize>, row_indices: Vec<usize>,
values: Vec<T>, values: Vec<T>,
) -> Result<Self, SparseFormatError> { ) -> Result<Self, SparseFormatError> {
let pattern = SparsityPattern::try_from_offsets_and_indices( let pattern =
num_cols, SparsityPattern::try_from_offsets_and_indices(ncols, nrows, col_offsets, row_indices)
num_rows, .map_err(pattern_format_error_to_csc_error)?;
col_offsets,
row_indices,
)
.map_err(pattern_format_error_to_csc_error)?;
Self::try_from_pattern_and_values(pattern, values) Self::try_from_pattern_and_values(pattern, values)
} }

View File

@ -156,19 +156,15 @@ impl<T> CsrMatrix<T> {
/// An error is returned if the data given does not conform to the CSR storage format. /// An error is returned if the data given does not conform to the CSR storage format.
/// See the documentation for [CsrMatrix](struct.CsrMatrix.html) for more information. /// See the documentation for [CsrMatrix](struct.CsrMatrix.html) for more information.
pub fn try_from_csr_data( pub fn try_from_csr_data(
num_rows: usize, nrows: usize,
num_cols: usize, ncols: usize,
row_offsets: Vec<usize>, row_offsets: Vec<usize>,
col_indices: Vec<usize>, col_indices: Vec<usize>,
values: Vec<T>, values: Vec<T>,
) -> Result<Self, SparseFormatError> { ) -> Result<Self, SparseFormatError> {
let pattern = SparsityPattern::try_from_offsets_and_indices( let pattern =
num_rows, SparsityPattern::try_from_offsets_and_indices(nrows, ncols, row_offsets, col_indices)
num_cols, .map_err(pattern_format_error_to_csr_error)?;
row_offsets,
col_indices,
)
.map_err(pattern_format_error_to_csr_error)?;
Self::try_from_pattern_and_values(pattern, values) Self::try_from_pattern_and_values(pattern, values)
} }