Teuchos - Trilinos Tools Package
Version of the Day
|
Coordinate-format sparse matrix data reader. More...
#include <Teuchos_MatrixMarket_CoordDataReader.hpp>
Public Member Functions | |
CoordDataReader (const Teuchos::RCP< Callback > &adder) | |
Constructor with "adder" argument. More... | |
CoordDataReader () | |
No-argument constructor. More... | |
virtual | ~CoordDataReader () |
Virtual destructor for safety and happy compilers. More... | |
Public Member Functions inherited from Teuchos::MatrixMarket::CoordDataReaderBase< Callback, Ordinal > | |
CoordDataReaderBase (const Teuchos::RCP< Callback > &adder) | |
Constructor with "adder" argument. More... | |
CoordDataReaderBase () | |
No-argument constructor. More... | |
virtual | ~CoordDataReaderBase () |
Virtual destructor for safety and happy compilers. More... | |
void | setAdder (const Teuchos::RCP< Callback > &adder) |
Set the Adder object. More... | |
virtual std::pair< bool, std::vector< size_t > > | read (std::istream &in, const size_t startingLineNumber, const bool tolerant, const bool debug=false) |
Read in all the data from the given input stream. More... | |
std::pair< Teuchos::Tuple < Ordinal, 3 >, bool > | readDimensions (std::istream &in, size_t &lineNumber, const bool tolerant=false) |
Read (numRows, numCols, numNonzeros). More... | |
Protected Member Functions | |
bool | readLine (const std::string &theLine, const size_t lineNumber, const bool tolerant) |
Read in the data from a single line of the input stream. More... | |
Additional Inherited Members | |
Protected Attributes inherited from Teuchos::MatrixMarket::CoordDataReaderBase< Callback, Ordinal > | |
Teuchos::RCP< Callback > | adder_ |
Closure that knows how to add entries to the sparse graph or matrix. More... | |
Coordinate-format sparse matrix data reader.
Use this class to read in sparse matrix data and add it to the sparse matrix using your Callback implementation (see the documentation of CoordDataReaderBase).
Callback | Same as in CoordDataReaderBase. Its operator() takes three arguments: the row index, the column index, and the matrix value. The indices are all one-based. |
Ordinal | Same as in CoordDataReaderBase. The type of indices in the sparse matrix. |
Scalar | The type of entries of the sparse matrix. For a real Scalar type (isComplex=false), any type for which a Teuchos::ScalarTraits specialization exists is valid. If Scalar is complex (isComplex=true), then Scalar's operator= must accept an std::complex<typename Teuchos::ScalarTraits<Scalar>::magnitudeType> input. |
isComplex | Whether Scalar is a complex-valued type or a real-valued type. The default value here is fine for most users. |
This class completes the implementation of CoordDataReaderBase for sparse matrices. We provide two partial specializations: one for real-valued data (isComplex=false), and the other for complex-valued data (isComplex=true).
If you have an existing sparse matrix implementation to which you want to add entries, you'll either have to make it implement Callback's three-argument operator(), or write your own Callback implementation that wraps the sparse matrix.
Definition at line 461 of file Teuchos_MatrixMarket_CoordDataReader.hpp.
Teuchos::MatrixMarket::CoordDataReader< Callback, Ordinal, Scalar, isComplex >::CoordDataReader | ( | const Teuchos::RCP< Callback > & | adder | ) |
Constructor with "adder" argument.
This is the favored way to construct an instance of this type. Only use the no-argument constructor if you have a "chicken-and-egg" problem, where in order to create the Callback instance, you need the matrix dimensions. This is the case if your Callback wraps Tpetra::CrsMatrix, for example.
adder | [in/out] Closure (a.k.a. callback) whose operator() adds an entry to the sparse graph or matrix on each invocation. |
Teuchos::MatrixMarket::CoordDataReader< Callback, Ordinal, Scalar, isComplex >::CoordDataReader | ( | ) |
No-argument constructor.
We offer this option in case the adder's constructor needs the matrix dimensions, so that it's necessary to call readDimensions() first before constructing the adder. You should call setAdder() with a non-null argument before calling read() or readLine().
|
virtual |
Virtual destructor for safety and happy compilers.
|
protectedvirtual |
Read in the data from a single line of the input stream.
theLine | [in] The line read in from the input stream. |
adder | [in/out] The callback to invoke for adding an entry to the sparse matrix. |
lineNumber | [in] Current line number of the file. We use this for generating informative exception messages. |
tolerant | [in] Whether to parse tolerantly. |
Subclasses must implement this method in order to read one entry of the sparse graph or matrix. Implementations should use the callback (adder_
) to add the entry.
Implements Teuchos::MatrixMarket::CoordDataReaderBase< Callback, Ordinal >.