.. _SparseMatrix: ############ SparseMatrix ############ We provide a simple class that handles the local tensor products that are added to the :ref:`Operator class`. The :ref:`SparseMatrix class` only provides a minimal amount of functionality as all linear algebra routines should be executed by `LAPACK `_ libraries like `MKL `_ or :ref:`Petsc/Slepc` if you want to exploit the sparsity of an :ref:`operator`. The class does **neither** support :ref:`openMP` nor :ref:`MPI`. It only contains three data members, :ref:`dim`, :ref:`range`, and :ref:`data`, that provide full access to the matrix in the following way: .. code-block:: cpp for(uint64_t i = 0UL; i < dim; i++){ for(uint64_t j = range[i]; j < range[i+1]; j++){ std::cout << "Element at (" << i << "," << data[j].first << "): " << data[j].second; } } Class content ------------- .. toctree:: :maxdepth: 2 :titlesonly: SparseMatrix/Members.rst SparseMatrix/Constructors.rst SparseMatrix/Functions.rst SparseMatrix/Autodocs.rst