comparison liboctave/numeric/sparse-qr.h @ 21177:a10f60e13243

style fixes in liboctave/numeric directory * base-qr.h, randgamma.h, randmtzig.h, randpoisson.h, sparse-chol.cc, sparse-chol.h, sparse-dmsolve.cc, sparse-lu.cc, sparse-lu.h, sparse-qr.cc, sparse-qr.h, oct-sparse.h: Style fixes.
author John W. Eaton <jwe@octave.org>
date Tue, 02 Feb 2016 16:53:01 -0500
parents 791dcb32b657
children 7f35125714b4
comparison
equal deleted inserted replaced
21176:791dcb32b657 21177:a10f60e13243
1 /* 1 /*
2 2
3 Copyright (C) 2016 John W. Eaton
3 Copyright (C) 2005-2015 David Bateman 4 Copyright (C) 2005-2015 David Bateman
4 Copyright (C) 2016 John W. Eaton
5 5
6 This file is part of Octave. 6 This file is part of Octave.
7 7
8 Octave is free software; you can redistribute it and/or modify it 8 Octave is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by the 9 under the terms of the GNU General Public License as published by the
27 #include "dMatrix.h" 27 #include "dMatrix.h"
28 #include "CMatrix.h" 28 #include "CMatrix.h"
29 #include "dSparse.h" 29 #include "dSparse.h"
30 #include "CSparse.h" 30 #include "CSparse.h"
31 #include "oct-sparse.h" 31 #include "oct-sparse.h"
32
33 // If the sparse matrix classes become templated on the element type
34 // (i.e., sparse_matrix<double>), then it might be best to make the
35 // template parameter of this class also be the element type instead
36 // of the matrix type.
32 37
33 template <typename SPARSE_T> 38 template <typename SPARSE_T>
34 class 39 class
35 sparse_qr 40 sparse_qr
36 { 41 {