AnalysisSystemForRadionucli.../include/armadillo_bits/SpBase_meat.hpp
2024-06-04 15:25:02 +08:00

270 lines
5.4 KiB
C++

// Copyright (C) 2008-2014 National ICT Australia (NICTA)
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
// -------------------------------------------------------------------
//
// Written by Conrad Sanderson - http://conradsanderson.id.au
//! \addtogroup SpBase
//! @{
template<typename elem_type, typename derived>
arma_inline
const derived&
SpBase<elem_type,derived>::get_ref() const
{
return static_cast<const derived&>(*this);
}
template<typename elem_type, typename derived>
inline
const SpOp<derived, spop_htrans>
SpBase<elem_type,derived>::t() const
{
return SpOp<derived,spop_htrans>( (*this).get_ref() );
}
template<typename elem_type, typename derived>
inline
const SpOp<derived, spop_htrans>
SpBase<elem_type,derived>::ht() const
{
return SpOp<derived, spop_htrans>( (*this).get_ref() );
}
template<typename elem_type, typename derived>
inline
const SpOp<derived, spop_strans>
SpBase<elem_type,derived>::st() const
{
return SpOp<derived, spop_strans>( (*this).get_ref() );
}
template<typename elem_type, typename derived>
inline
void
SpBase<elem_type,derived>::print(const std::string extra_text) const
{
const unwrap_spmat<derived> tmp( (*this).get_ref() );
tmp.M.impl_print(extra_text);
}
template<typename elem_type, typename derived>
inline
void
SpBase<elem_type,derived>::print(std::ostream& user_stream, const std::string extra_text) const
{
const unwrap_spmat<derived> tmp( (*this).get_ref() );
tmp.M.impl_print(user_stream, extra_text);
}
template<typename elem_type, typename derived>
inline
void
SpBase<elem_type,derived>::raw_print(const std::string extra_text) const
{
const unwrap_spmat<derived> tmp( (*this).get_ref() );
tmp.M.impl_raw_print(extra_text);
}
template<typename elem_type, typename derived>
inline
void
SpBase<elem_type,derived>::raw_print(std::ostream& user_stream, const std::string extra_text) const
{
const unwrap_spmat<derived> tmp( (*this).get_ref() );
tmp.M.impl_raw_print(user_stream, extra_text);
}
template<typename elem_type, typename derived>
inline
void
SpBase<elem_type, derived>::print_dense(const std::string extra_text) const
{
const unwrap_spmat<derived> tmp( (*this).get_ref() );
tmp.M.impl_print_dense(extra_text);
}
template<typename elem_type, typename derived>
inline
void
SpBase<elem_type, derived>::print_dense(std::ostream& user_stream, const std::string extra_text) const
{
const unwrap_spmat<derived> tmp( (*this).get_ref() );
tmp.M.impl_print_dense(user_stream, extra_text);
}
template<typename elem_type, typename derived>
inline
void
SpBase<elem_type, derived>::raw_print_dense(const std::string extra_text) const
{
const unwrap_spmat<derived> tmp( (*this).get_ref() );
tmp.M.impl_raw_print_dense(extra_text);
}
template<typename elem_type, typename derived>
inline
void
SpBase<elem_type, derived>::raw_print_dense(std::ostream& user_stream, const std::string extra_text) const
{
const unwrap_spmat<derived> tmp( (*this).get_ref() );
tmp.M.impl_raw_print_dense(user_stream, extra_text);
}
//
// extra functions defined in SpBase_eval_SpMat
template<typename elem_type, typename derived>
inline
const derived&
SpBase_eval_SpMat<elem_type, derived>::eval() const
{
arma_extra_debug_sigprint();
return static_cast<const derived&>(*this);
}
//
// extra functions defined in SpBase_eval_expr
template<typename elem_type, typename derived>
inline
SpMat<elem_type>
SpBase_eval_expr<elem_type, derived>::eval() const
{
arma_extra_debug_sigprint();
return SpMat<elem_type>( static_cast<const derived&>(*this) );
}
template<typename elem_type, typename derived>
inline
arma_warn_unused
elem_type
SpBase<elem_type, derived>::min() const
{
return spop_min::min( (*this).get_ref() );
}
template<typename elem_type, typename derived>
inline
arma_warn_unused
elem_type
SpBase<elem_type, derived>::max() const
{
return spop_max::max( (*this).get_ref() );
}
template<typename elem_type, typename derived>
inline
elem_type
SpBase<elem_type, derived>::min(uword& index_of_min_val) const
{
const SpProxy<derived> P( (*this).get_ref() );
return spop_min::min_with_index(P, index_of_min_val);
}
template<typename elem_type, typename derived>
inline
elem_type
SpBase<elem_type, derived>::max(uword& index_of_max_val) const
{
const SpProxy<derived> P( (*this).get_ref() );
return spop_max::max_with_index(P, index_of_max_val);
}
template<typename elem_type, typename derived>
inline
elem_type
SpBase<elem_type, derived>::min(uword& row_of_min_val, uword& col_of_min_val) const
{
const SpProxy<derived> P( (*this).get_ref() );
uword index;
const elem_type val = spop_min::min_with_index(P, index);
const uword local_n_rows = P.get_n_rows();
row_of_min_val = index % local_n_rows;
col_of_min_val = index / local_n_rows;
return val;
}
template<typename elem_type, typename derived>
inline
elem_type
SpBase<elem_type, derived>::max(uword& row_of_max_val, uword& col_of_max_val) const
{
const SpProxy<derived> P( (*this).get_ref() );
uword index;
const elem_type val = spop_max::max_with_index(P, index);
const uword local_n_rows = P.get_n_rows();
row_of_max_val = index % local_n_rows;
col_of_max_val = index / local_n_rows;
return val;
}
//! @}