SenK
SenK is a C++ library for high-performance linear solvers.
senk::io Namespace Reference

Contains functions related to inputs and outputs. More...

Enumerations

enum  Shape { Sym , Unsym }
 enum for the shape of matrices. More...
 

Functions

bool ReadMatrixMarket (std::string filename, double **val, int **cind, int **rptr, int *N, int *M, Shape *shape, bool removeZeros)
 Get a matrix in the CSR format from a MatrixMarket file. More...
 

Detailed Description

Contains functions related to inputs and outputs.

Enumeration Type Documentation

◆ Shape

enum for the shape of matrices.

Definition at line 26 of file senk_io.hpp.

Function Documentation

◆ ReadMatrixMarket()

bool senk::io::ReadMatrixMarket ( std::string  filename,
double **  val,
int **  cind,
int **  rptr,
int *  N,
int *  M,
Shape shape,
bool  removeZeros 
)

Get a matrix in the CSR format from a MatrixMarket file.

Parameters
filenamePATH to the input file.
valA pointer of an array for nonzero values in the CSR format.
cindA pointer of an array for column indices in the CSR format.
rptrA pointer of an array for starting position of each row.
NA variable to receive the number of rows.
MA variable to receive the number of columns.
shapeA variable to receive the shape of the matrix.
removeZerosIf true, remove zero elements in the off-diagonal.

Definition at line 41 of file senk_io.hpp.