MCPcopy Create free account
hub / github.com/ERGO-Code/HiGHS / assessMatrix

Function assessMatrix

highs/util/HighsMatrixUtils.cpp:20–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18#include "util/HighsHash.h"
19
20HighsStatus assessMatrix(const HighsLogOptions& log_options,
21 const std::string& matrix_name, const HighsInt vec_dim,
22 const HighsInt num_vec, vector<HighsInt>& matrix_start,
23 vector<HighsInt>& matrix_index,
24 vector<double>& matrix_value,
25 const double small_matrix_value,
26 const double large_matrix_value,
27 const bool sum_duplicates) {
28 vector<HighsInt> matrix_p_end;
29 const bool partitioned = false;
30 return assessMatrix(log_options, matrix_name, vec_dim, num_vec, partitioned,
31 matrix_start, matrix_p_end, matrix_index, matrix_value,
32 small_matrix_value, large_matrix_value, sum_duplicates);
33}
34
35HighsStatus assessMatrix(const HighsLogOptions& log_options,
36 const std::string& matrix_name, const HighsInt vec_dim,

Callers 2

assessHessianFunction · 0.85
assessMethod · 0.85

Calls 7

assessMatrixDimensionsFunction · 0.85
highsLogUserFunction · 0.85
c_strMethod · 0.80
findMethod · 0.45
endMethod · 0.45
insertMethod · 0.45
clearMethod · 0.45

Tested by

no test coverage detected