include math_eigen.h, remove it from .gitignore

This commit is contained in:
Axel Kohlmeyer
2020-09-16 14:12:14 -04:00
parent 0931cdd109
commit bd542efa52
3 changed files with 45 additions and 6 deletions

View File

@ -428,11 +428,11 @@ Eigensolver functions
The ``MathEigen`` sub-namespace of the ``LAMMPS_NS`` namespace contains
functions and classes for eigensolvers. Currently only the
:cpp:func:`jacobi3 function <MathEigen::jacobi3(double const *const *mat, double *eval, double **evec)>`
is used in various places in LAMMPS. That function is built on top
of a group of more generic eigensolvers that are maintained in the
``math_eigen_impl.h`` header file. This header contains the implementation
of three template classes:
:cpp:func:`jacobi3 function <MathEigen::jacobi3>` is used in various
places in LAMMPS. That function is built on top of a group of more
generic eigensolvers that are maintained in the ``math_eigen_impl.h``
header file. This header contains the implementation of three template
classes:
#. "Jacobi" calculates all of the eigenvalues and eigenvectors
of a dense, symmetric, real matrix.