Skip to content

Commit 20723e1

Browse files
committed
Remove debug spam
1 parent 9b9cb6a commit 20723e1

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

include/albatross/src/cereal/suitesparse.hpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -439,8 +439,6 @@ inline void load(Archive &ar, cholmod_sparse &m,
439439
}
440440
detail::suitesparse_cereal_realloc(&m.x, m.nzmax, element_size_bytes);
441441

442-
std::cout << "m.p size: " << p_size_bytes << " bytes" << std::endl;
443-
std::cout << "m.ncol + 1: " << m.ncol + 1 << std::endl;
444442
detail::decode_array(ar, "m.p", m.p, (m.ncol + 1) * p_size_bytes);
445443
detail::decode_array(ar, "m.i", m.i, m.nzmax * integer_size_bytes);
446444
if (!m.packed) {

0 commit comments

Comments
 (0)