summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'btl/actions/LAPACK/action_LUdecomp.hpp')
-rw-r--r--btl/actions/LAPACK/action_LUdecomp.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/btl/actions/LAPACK/action_LUdecomp.hpp b/btl/actions/LAPACK/action_LUdecomp.hpp
index 09a161e..1369017 100644
--- a/btl/actions/LAPACK/action_LUdecomp.hpp
+++ b/btl/actions/LAPACK/action_LUdecomp.hpp
@@ -76,7 +76,7 @@ public:
Interface::TriMatrixMatrix('u', _size, _size, &A_work[0], &eye_work[0]);
- // FIXME: hard-coded unitary diagonal
+ // Hard-coded unitary diagonal
for (int r = 0; r < _size; ++r)
A_work[r+_size*r] = 1.;