From 63e988f37f42e91e24ad512f3a8f99f545f3c4ba Mon Sep 17 00:00:00 2001 From: Riley Murray Date: Thu, 12 Sep 2024 11:37:11 -0400 Subject: [PATCH] remove commented-out code --- RandBLAS/base.hh | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/RandBLAS/base.hh b/RandBLAS/base.hh index 41ba86f0..e85af1e2 100644 --- a/RandBLAS/base.hh +++ b/RandBLAS/base.hh @@ -129,24 +129,6 @@ struct RNGState { }; - -// template -// RNGState::RNGState( -// const RNGState &s -// ) { -// std::memcpy(this->counter.v, s.counter.v, this->len_c * sizeof(ctr_uint)); -// std::memcpy(this->key.v, s.key.v, this->len_k * sizeof(key_uint)); -// } - -// template -// RNGState &RNGState::operator=( -// const RNGState &s -// ) { -// std::memcpy(this->counter.v, s.counter.v, this->len_c * sizeof(ctr_uint)); -// std::memcpy(this->key.v, s.key.v, this->len_k * sizeof(key_uint)); -// return *this; -// } - template std::ostream &operator<<( std::ostream &out,