Program Listing for File rlenvs_consts.h

Return to documentation for file (src/rlenvs/rlenvs_consts.h)

#ifndef GYMFCPP_CONSTS_H
#define GYMFCPP_CONSTS_H
#include "rlenvs/rlenvs_types_v2.h"
#include <string>

namespace rlenvscpp {
    namespace consts{

        inline const uint_t INVALID_ID = static_cast<uint_t>(-1);

        inline const std::string INVALID_STR = std::string("INVALID");

        inline const real_t TOLERANCE = 1.0e-8;

        namespace maths{

            inline const real_t PI = 3.14159265359;

            inline const real_t G = 9.82;
        }

    }

}

#endif // GYMFCPP_CONSTS_H