From 9d9dfa83012c75edc7bc455eba9aab95dbc82e99 Mon Sep 17 00:00:00 2001 From: Nicola Baldo Date: Sun, 16 Oct 2016 22:44:06 +0200 Subject: [PATCH] fixed Bug 1886 - Description of Values::iterator methods is incorrect --- src/spectrum/model/spectrum-value.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/spectrum/model/spectrum-value.h b/src/spectrum/model/spectrum-value.h index 7f4bb0d9e..dd6c7ac55 100644 --- a/src/spectrum/model/spectrum-value.h +++ b/src/spectrum/model/spectrum-value.h @@ -43,8 +43,8 @@ typedef std::vector Values; * R\hspace*{-0.9ex}\rule{0.15ex}{1.5ex}\hspace*{0.9ex}}^N \rightarrow {\sf R\hspace*{-0.9ex}\rule{0.15ex}{1.5ex}\hspace*{0.9ex}} \f$ * * Every instance of this class represent a particular function \f$ g(F) \f$. - * The domain of the function space, i.e., \f$ F \f$, is implemented by SetOfFreq. - * The codomain of the function space is implemented by SetOfValues + * The domain of the function space, i.e., \f$ F \f$, is implemented by Bands. + * The codomain of the function space is implemented by Values. * * To every possible value of \f$ F\f$ corresponds a different Function * Space. @@ -117,14 +117,14 @@ public: /** * * - * @return a const iterator pointing to the beginning of the embedded SpectrumModel + * @return a const iterator pointing to the beginning of the embedded Bands */ Bands::const_iterator ConstBandsBegin () const; /** * * - * @return a const iterator pointing to the end of the embedded SpectrumModel + * @return a const iterator pointing to the end of the embedded Bands */ Bands::const_iterator ConstBandsEnd () const; @@ -132,28 +132,28 @@ public: /** * * - * @return a const iterator pointing to the beginning of the embedded SpectrumModel + * @return a const iterator pointing to the beginning of the embedded Values */ Values::const_iterator ConstValuesBegin () const; /** * * - * @return a const iterator pointing to the end of the embedded SpectrumModel + * @return a const iterator pointing to the end of the embedded Values */ Values::const_iterator ConstValuesEnd () const; /** * * - * @return an iterator pointing to the beginning of the embedded SpectrumModel + * @return an iterator pointing to the beginning of the embedded Values */ Values::iterator ValuesBegin (); /** * * - * @return an iterator pointing to the end of the embedded SpectrumModel + * @return an iterator pointing to the end of the embedded Values */ Values::iterator ValuesEnd ();