Skip to content

Commit

Permalink
remove commented-out code
Browse files Browse the repository at this point in the history
  • Loading branch information
rileyjmurray committed Sep 12, 2024
1 parent 47303eb commit 63e988f
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions RandBLAS/base.hh
Original file line number Diff line number Diff line change
Expand Up @@ -129,24 +129,6 @@ struct RNGState {

};


// template <typename RNG>
// RNGState<RNG>::RNGState(
// const RNGState<RNG> &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 <typename RNG>
// RNGState<RNG> &RNGState<RNG>::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 <typename RNG>
std::ostream &operator<<(
std::ostream &out,
Expand Down

0 comments on commit 63e988f

Please sign in to comment.