123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- // Copyright 2008-2016 Conrad Sanderson (http://conradsanderson.id.au)
- // Copyright 2008-2016 National ICT Australia (NICTA)
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- // ------------------------------------------------------------------------
- //! \addtogroup strip
- //! @{
- template<typename T1>
- struct strip_diagmat
- {
- typedef T1 stored_type;
-
- inline
- strip_diagmat(const T1& X)
- : M(X)
- {
- arma_extra_debug_sigprint();
- }
-
- static const bool do_diagmat = false;
-
- const T1& M;
- };
- template<typename T1>
- struct strip_diagmat< Op<T1, op_diagmat> >
- {
- typedef T1 stored_type;
-
- inline
- strip_diagmat(const Op<T1, op_diagmat>& X)
- : M(X.m)
- {
- arma_extra_debug_sigprint();
- }
-
- static const bool do_diagmat = true;
-
- const T1& M;
- };
- template<typename T1>
- struct strip_inv
- {
- typedef T1 stored_type;
-
- inline
- strip_inv(const T1& X)
- : M(X)
- {
- arma_extra_debug_sigprint();
- }
-
- const T1& M;
-
- static const bool do_inv = false;
- static const bool do_inv_sympd = false;
- };
- template<typename T1>
- struct strip_inv< Op<T1, op_inv> >
- {
- typedef T1 stored_type;
-
- inline
- strip_inv(const Op<T1, op_inv>& X)
- : M(X.m)
- {
- arma_extra_debug_sigprint();
- }
-
- const T1& M;
-
- static const bool do_inv = true;
- static const bool do_inv_sympd = false;
- };
- template<typename T1>
- struct strip_inv< Op<T1, op_inv_sympd> >
- {
- typedef T1 stored_type;
-
- inline
- strip_inv(const Op<T1, op_inv_sympd>& X)
- : M(X.m)
- {
- arma_extra_debug_sigprint();
- }
-
- const T1& M;
-
- static const bool do_inv = true;
- static const bool do_inv_sympd = true;
- };
- template<typename T1>
- struct strip_trimat
- {
- typedef T1 stored_type;
-
- const T1& M;
-
- static const bool do_trimat = false;
- static const bool do_triu = false;
- static const bool do_tril = false;
-
- inline
- strip_trimat(const T1& X)
- : M(X)
- {
- arma_extra_debug_sigprint();
- }
- };
- template<typename T1>
- struct strip_trimat< Op<T1, op_trimat> >
- {
- typedef T1 stored_type;
-
- const T1& M;
-
- static const bool do_trimat = true;
- const bool do_triu;
- const bool do_tril;
-
- inline
- strip_trimat(const Op<T1, op_trimat>& X)
- : M(X.m)
- , do_triu(X.aux_uword_a == 0)
- , do_tril(X.aux_uword_a == 1)
- {
- arma_extra_debug_sigprint();
- }
- };
- //! @}
|