--- trunk/gadget/maininfo.h 2014/02/10 17:09:07 1 +++ trunk/gadget/maininfo.h 2015/07/23 19:00:38 11 @@ -70,6 +70,8 @@ * \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 @@ -144,7 +146,16 @@ * \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; }; + double getMaxRatio() const { + return maxratio; + } + unsigned* getSeed() const {return seed;} +// unsigned getSeedM() const {return seedM;} +// unsigned getSeedP() const {return seedP;} + + ; + + private: /** * \brief This function will read input from a file instead of the command line @@ -195,6 +206,8 @@ * \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 */ @@ -219,6 +232,14 @@ * \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; + unsigned* seed; +// unsigned seed = 0; +// unsigned seedM = 0; +// unsigned seedP = 0; }; #endif +