Skip to content

Commit a6c43ae

Browse files
authored
Merge pull request ERGO-Code#2314 from ERGO-Code/fix-2312
Fixed docstrings
2 parents 75ddbe0 + 99869b1 commit a6c43ae

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

highs/interfaces/highs_c_api.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1164,15 +1164,15 @@ HighsInt Highs_getBasisTransposeSolve(const void* highs, const double* rhs,
11641164
* See `Highs_getBasicVariables` for a description of the ``B`` matrix.
11651165
*
11661166
* The arrays `row_vector` and `row_index` must have an allocated length of
1167-
* [num_row]. However, check `row_num_nz` to see how many non-zero elements are
1167+
* [num_col]. However, check `row_num_nz` to see how many non-zero elements are
11681168
* actually stored.
11691169
*
11701170
* @param highs A pointer to the Highs instance.
11711171
* @param row The index of the row to compute.
1172-
* @param row_vector An array of length [num_row] in which to store the
1172+
* @param row_vector An array of length [num_col] in which to store the
11731173
* values of the non-zero elements.
11741174
* @param row_num_nz The number of non-zeros in the row.
1175-
* @param row_index An array of length [num_row] in which to store the
1175+
* @param row_index An array of length [num_col] in which to store the
11761176
* indices of the non-zero elements.
11771177
*
11781178
* @returns A `kHighsStatus` constant indicating whether the call succeeded.

0 commit comments

Comments
 (0)