.. _program_listing_file_src_bitrl_bitrl_consts.h: Program Listing for File bitrl_consts.h ======================================= |exhale_lsh| :ref:`Return to documentation for file ` (``src/bitrl/bitrl_consts.h``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #ifndef GYMFCPP_CONSTS_H #define GYMFCPP_CONSTS_H #include "bitrl/bitrl_types.h" #include #include namespace bitrl { namespace consts{ inline const uint_t INVALID_ID = static_cast(-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 = std::numbers::pi; inline const real_t G = 9.82; } } } #endif // GYMFCPP_CONSTS_H