diff liboctave/numeric/sparse-chol.cc @ 22317:6ca3acf5fad8

move some new numeric classes to namespace octave::math * aepbalance.cc, aepbalance.h, chol.cc, chol.h, gepbalance.cc, gepbalance.h, hess.cc, hess.h, lu.cc, lu.h, qr.cc, qr.h, qrp.cc, qrp.h, schur.cc, schur.h, sparse-chol.cc, sparse-chol.h, sparse-dmsolve.cc,sparse-lu.cc, sparse-lu.h, sparse-qr.cc, sparse-qr.h, svd.cc, svd.h: Move classes to namespace octave::math. * __luinc__.cc, __qp__.cc, balance.cc, hess.cc, lu.cc, qz.cc, schur.cc, sqrtm.cc, svd.cc, chol.cc, dmperm.cc, qr.cc, lex.h, CMatrix.cc, CSparse.cc, dMatrix.cc, dSparse.cc, fCMatrix.cc, fMatrix.cc, eigs-base.cc, oct-norm.cc: Update for new namespaces.
author John W. Eaton <jwe@octave.org>
date Tue, 16 Aug 2016 15:48:22 -0400
parents 5417dad26a25
children bac0d6f07a3e
line wrap: on
line diff
--- a/liboctave/numeric/sparse-chol.cc	Tue Aug 16 20:43:59 2016 +0200
+++ b/liboctave/numeric/sparse-chol.cc	Tue Aug 16 15:48:22 2016 -0400
@@ -34,6 +34,11 @@
 #include "quit.h"
 #include "MatrixType.h"
 
+namespace octave
+{
+namespace math
+{
+
 template <typename chol_type>
 class sparse_chol<chol_type>::sparse_chol_rep
 {
@@ -588,3 +593,6 @@
 
 template SparseComplexMatrix
 chol2inv<SparseComplexMatrix> (const SparseComplexMatrix& r);
+
+}
+}