diff options
author | Moritz Lenz <moritz@faui2k3.org> | 2009-06-17 11:55:57 +0200 |
---|---|---|
committer | Moritz Lenz <moritz@faui2k3.org> | 2009-06-17 11:55:57 +0200 |
commit | c6e81869d0a4ba18eac387199fd9a5c9ac26e050 (patch) | |
tree | 664eaf4c5b402f13d8c1e04df1166e6646a67f03 /Eigen | |
parent | 627595ad191ffbb2bdab0466d15b951fdce55273 (diff) |
fixed typo in SuperLUSupport.h
Diffstat (limited to 'Eigen')
-rw-r--r-- | Eigen/src/Sparse/SuperLUSupport.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Sparse/SuperLUSupport.h b/Eigen/src/Sparse/SuperLUSupport.h index 629593dab..b4f34f094 100644 --- a/Eigen/src/Sparse/SuperLUSupport.h +++ b/Eigen/src/Sparse/SuperLUSupport.h @@ -425,7 +425,7 @@ bool SparseLU<MatrixType,SuperLU>::solve(const MatrixBase<BDerived> &b, case SvTranspose : m_sluOptions.Trans = TRANS; break; case SvAdjoint : m_sluOptions.Trans = CONJ; break; default: - std::cerr << "Eigen: tranpsiotion option \"" << transposed << "\" not supported by the SuperLU backend\n"; + std::cerr << "Eigen: transposition option \"" << transposed << "\" not supported by the SuperLU backend\n"; m_sluOptions.Trans = NOTRANS; } |