comparison liboctave/numeric/sparse-chol.h @ 21186:7f35125714b4

don't install some internal headers and template sources * sparse-chol-inst.cc: Delete. Instantiate needed classes and functions in sparse-chol.cc. * sparse-lu-inst.cc: Delete. Instantiate needed classes and functions in sparse-lu.cc. * sparse-qr-inst.cc: Delete. Instantiate needed classes and functions in sparse-qr.cc. * sighandlers.h: Include sys/types.h. Don't include syswait.h or siglist.h * sparse-chol.h, sparse-qr.h: Don't include oct-sparse.h. * symbfact.cc, sparse-dmsolve.cc: Include oct-sparse.h. * octave.cc: Include siglist.h. * liboctave/numeric/module.mk: Don't install sparse-chol.cc, sparse-lu.cc, or sparse-qr.cc with header files. * liboctave/util/module.mk: Don't install oct-sparse.h. * liboctave/system/module.mk: Don't install pathlen.h, sysdir.h, or syswait.h header files.
author John W. Eaton <jwe@octave.org>
date Wed, 03 Feb 2016 23:44:49 -0500
parents a10f60e13243
children 1473547f50f5
comparison
equal deleted inserted replaced
21185:c784207fe0b6 21186:7f35125714b4
26 #define octave_sparse_chol_h 1 26 #define octave_sparse_chol_h 1
27 27
28 #include "CSparse.h" 28 #include "CSparse.h"
29 #include "dColVector.h" 29 #include "dColVector.h"
30 #include "dSparse.h" 30 #include "dSparse.h"
31 #include "oct-sparse.h"
32 31
33 // If the sparse matrix classes become templated on the element type 32 // 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 33 // (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 34 // template parameter of this class also be the element type instead
36 // of the matrix type. 35 // of the matrix type.