diff --git a/RandBLAS/base.hh b/RandBLAS/base.hh index 41ba86f..e85af1e 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,