.. _Miscellaneous: ############# Miscellaneous ############# We are collecting various classes and functions that are mainly used by the :ref:`Operator class`. For example, two possible containers to represent the :ref:`Operator` are: .. toctree:: :maxdepth: 1 :titlesonly: Miscellaneous/SparseMatrix.rst Miscellaneous/ShellMatrix.rst The :ref:`SparseMatrix class` is a simple class that handles sparse matrices. It is used by the :ref:`Operator class` to store and apply local tensor products. :ref:`SparseMatrix` does not support :ref:`MPI` computation as we strongly suggest :ref:`Petsc and Slepc` in this case, see :ref:`here` for an example. The :ref:`ShellMatrix class` is used for **matrix-free** matrix-vector multiplications and supports :ref:`MPI` and :ref:`openMP`. It is utilized when a `MATSHELL `_ is created by :ref:`Petsc`, see :ref:`here`. It can be applied the :ref:`Vector class`: .. toctree:: :maxdepth: 1 :titlesonly: Miscellaneous/Vector.rst This class simply represent a vector using distributed (if :ref:`MPI` is available) or shared memory. It is mainly used by the :ref:`ShellMatrix` to perform linear algebra routines that can be used to compute ground states, see :ref:`here`. Finally, various basic functions and more advanced algorithms like the `Lanczos algorithm `_ are summarized here: .. toctree:: :maxdepth: 1 :titlesonly: Miscellaneous/Functions.rst