[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
Attached patch fixes a typo in an error message.
Cheers,
Moritz
# HG changeset patch
# User Moritz Lenz <moritz@xxxxxxxxxxx>
# Date 1245232557 -7200
# Node ID 68dfd033bb61a4cde4c1c07af3637f4eba41a562
# Parent 62b1aefeaadba3bfa5fa5bb93d2dae0e918439e9
fixed typo in SuperLUSupport.h
diff -r 62b1aefeaadb -r 68dfd033bb61 Eigen/src/Sparse/SuperLUSupport.h
--- a/Eigen/src/Sparse/SuperLUSupport.h Wed Jun 10 11:20:30 2009 +0200
+++ b/Eigen/src/Sparse/SuperLUSupport.h Wed Jun 17 11:55:57 2009 +0200
@@ -425,7 +425,7 @@
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;
}