--- trunk/gadget/maininfo.h 2015/07/23 19:00:38 11 +++ trunk/gadget/maininfo.h 2015/07/24 18:36:24 12 @@ -70,8 +70,6 @@ * \return flag */ int runOptimise() const { return runoptimise; }; - //FIXME doc - int runOmp() const { return runomp; }; /** * \brief This function will return the flag used to determine whether a simulation run should be performed * \return flag @@ -146,14 +144,14 @@ * \brief This function will return the maximum ratio of a stock that can be consumed on any given timestep * \return maxratio */ - double getMaxRatio() const { - return maxratio; - } - unsigned* getSeed() const {return seed;} -// unsigned getSeedM() const {return seedM;} -// unsigned getSeedP() const {return seedP;} - - ; + double getMaxRatio() const { + return maxratio; + } + /** + * \brief This function will return seeds used in SA + * \return seed array of unsigned int with the seeds used in SA + */ + unsigned* getSeed() const {return seed;}; private: @@ -206,8 +204,6 @@ * \brief This is the flag used to denote whether the current simulation has been started using paramin (PVM) or not */ int runnetwork; - //FIXME doc - int runomp; /** * \brief This is the flag used to denote whether the current simulation should print model output or not */ @@ -232,13 +228,11 @@ * \brief This is the maximum ratio of a stock that can be consumed on any given timestep */ double maxratio; - - //FIXME doc - //see[0] = seed; see[1] = seedM; see[2] = seedP; + /** + * \brief vector with the seeds used in SA + * \note see[0] = seed | see[1] = seedM | see[2] = seedP + */ unsigned* seed; -// unsigned seed = 0; -// unsigned seedM = 0; -// unsigned seedP = 0; }; #endif