reverted the default behavior of "jacobi3()". By default it now sorts the eigenvalues again.

This commit is contained in:
Andrew Jewett
2020-09-08 21:58:54 -07:00
parent 6ade5dd740
commit 56b1300fd3

View File

@ -240,7 +240,7 @@ namespace MathEigen {
Jacobi<double,double*,double**,double const*const*>::
SortCriteria sort_criteria =
Jacobi<double,double*,double**,double const*const*>::
DO_NOT_SORT
SORT_DECREASING_EVALS
);
@ -258,7 +258,7 @@ namespace MathEigen {
Jacobi<double,double*,double(*)[3],double const(*)[3]>::
SortCriteria sort_criteria =
Jacobi<double,double*,double(*)[3],double const(*)[3]>::
DO_NOT_SORT
SORT_DECREASING_EVALS
);