From 39a8ff7c31bb7cc68d2a33200b16bb3f93f9e187 Mon Sep 17 00:00:00 2001 From: conrad Date: Fri, 14 Jun 2024 11:21:54 +1000 Subject: [PATCH] cleanup --- include/armadillo_bits/SpMat_bones.hpp | 3 -- include/armadillo_bits/SpMat_meat.hpp | 42 -------------------------- 2 files changed, 45 deletions(-) diff --git a/include/armadillo_bits/SpMat_bones.hpp b/include/armadillo_bits/SpMat_bones.hpp index 3d19dbba..b0246c40 100644 --- a/include/armadillo_bits/SpMat_bones.hpp +++ b/include/armadillo_bits/SpMat_bones.hpp @@ -142,9 +142,6 @@ class SpMat : public SpBase< eT, SpMat > template inline SpMat& operator/=(const Op& expr); template inline SpMat& operator%=(const Op& expr); - // template inline SpMat(const SpToDOp< T1, op_type>& expr); - // template inline SpMat(const mtSpToDOp& expr); - //! construction of complex matrix out of two non-complex matrices template inline explicit SpMat(const SpBase& A, const SpBase& B); diff --git a/include/armadillo_bits/SpMat_meat.hpp b/include/armadillo_bits/SpMat_meat.hpp index 85786f94..1d782744 100644 --- a/include/armadillo_bits/SpMat_meat.hpp +++ b/include/armadillo_bits/SpMat_meat.hpp @@ -787,48 +787,6 @@ SpMat::operator/=(const SpMat& x) -// template -// template -// inline -// SpMat::SpMat(const SpToDOp& expr) -// : n_rows(0) -// , n_cols(0) -// , n_elem(0) -// , n_nonzero(0) -// , vec_state(0) -// , values(nullptr) -// , row_indices(nullptr) -// , col_ptrs(nullptr) -// { -// arma_debug_sigprint_this(this); -// -// arma_type_check(( is_same_type< eT, typename T1::elem_type >::no )); -// -// (*this) = Mat(expr); -// } - - - -// template -// template -// inline -// SpMat::SpMat(const mtSpToDOp& expr) -// : n_rows(0) -// , n_cols(0) -// , n_elem(0) -// , n_nonzero(0) -// , vec_state(0) -// , values(nullptr) -// , row_indices(nullptr) -// , col_ptrs(nullptr) -// { -// arma_debug_sigprint_this(this); -// -// (*this) = Mat(expr); -// } - - - // Construct a complex matrix out of two non-complex matrices template template