summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'btl/actions/LAPACK/action_LeastSquaresSolve.hpp')
-rw-r--r--btl/actions/LAPACK/action_LeastSquaresSolve.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/btl/actions/LAPACK/action_LeastSquaresSolve.hpp b/btl/actions/LAPACK/action_LeastSquaresSolve.hpp
index 4bd7da4..f25c39d 100644
--- a/btl/actions/LAPACK/action_LeastSquaresSolve.hpp
+++ b/btl/actions/LAPACK/action_LeastSquaresSolve.hpp
@@ -35,8 +35,8 @@ private:
public:
// Constructor
- Action_LeastSquaresSolve(int size)
- : _size(size), lc(10),
+ Action_LeastSquaresSolve(int size, int seed=10)
+ : _size(size), lc(seed),
A(lc.fillVector<Scalar>(size*size)), b(lc.fillVector<Scalar>(size)),
A_work(size*size), x_work(size), b_res(size)
{