42 #include "Triplet.hpp"
46 #include "CS_Triplet.hpp"
55 static std::vector< Triplet< double > >
parse( std::string filename );
57 static std::vector< Triplet< double > >
parse( std::string filename, ULI &m, ULI &n );
59 static std::vector< Triplet< double > >
parse( std::string filename, ULI &m, ULI &n,
unsigned long int &nnz );
63 static std::vector< CS_Triplet< double > > cs_parse( std::string filename );
65 static std::vector< CS_Triplet< double > > cs_parse( std::string filename, ULI &m, ULI &n );
67 static std::vector< CS_Triplet< double > > cs_parse( std::string filename, ULI &m, ULI &n,
unsigned long int &nnz );
static std::vector< Triplet< double > > parse(std::string filename)
Parses a matrix-market input file.
Definition: FileToVT.cpp:36
Class responsible for reading in matrix market files and converting them to vector< Triplet > format...
Definition: FileToVT.hpp:50