diff --git a/Numeric/LFSR.hpp b/Numeric/LFSR.hpp index 9802bb893..408ee6725 100644 --- a/Numeric/LFSR.hpp +++ b/Numeric/LFSR.hpp @@ -37,6 +37,9 @@ template <> struct LSFRPolynomial { */ template ::value> class LFSR { public: + /*! + Constructs an LFSR with a random initial value. + */ LFSR() { // Randomise the value, ensuring it doesn't end up being 0. while(!value_) { @@ -48,6 +51,13 @@ template