1#ifndef COIN_COMMON_FUNCTIONS_H
2#define COIN_COMMON_FUNCTIONS_H
5#include "CoinPackedMatrix.hpp"
8void fill_rows_from_COIN_matrix(
const CoinPackedMatrix &matrix,
int *mstart,
9 int *mclind,
double *dmatval,
int *nels,
12void fill_row_type_from_row_bounds(
const double *rowLower,
13 const double *rowUpper,
char *qrtype,
16void fill_rhs_from_bounds(
const double *rowLower,
const double *rowUpper,
17 double *rhs,
int first,
int last);
18void fill_row_bounds_from_new_rows_data(std::vector<double> &rowLower,
19 std::vector<double> &rowUpper,
20 int newrows,
const char *qrtype,