Skip to content

Commit a021a26

Browse files
committed
Merge remote master
2 parents fd25574 + 9578846 commit a021a26

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ SET(RLENVSCPP_VERSION_MAJOR 1)
55
SET(RLENVSCPP_VERSION_MINOR 11)
66
SET(RLENVSCPP_VERSION_PATCH 6)
77

8+
89
SET(RLENVSCPP_VERSION "${RLENVSCPP_VERSION_MAJOR}.${RLENVSCPP_VERSION_MINOR}.${RLENVSCPP_VERSION_PATCH}")
910
MESSAGE(STATUS "rlenvscpplib Version ${RLENVSCPP_VERSION}")
1011

src/rlenvs/envs/grid_world/grid_world_env.h

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ namespace detail{
248248
///
249249
/// \brief the Action type
250250
///
251-
typedef typename action_space::space_item_type action_type;
251+
typedef action_space::space_item_type action_type;
252252

253253

254254
///
@@ -351,15 +351,13 @@ class Gridworld final: public EnvBase<TimeStep<detail::board_state_type>,
351351
///
352352
void make(const std::string& version,
353353
const std::unordered_map<std::string, std::any>& options) override final;
354-
355-
354+
356355
///
357356
/// \brief Reset the environment
358357
///
359358
time_step_type reset(uint_t /*seed*/,
360359
const std::unordered_map<std::string, std::any>& /*options*/) override final;
361-
362-
360+
363361
///
364362
/// \brief Create a new copy of the environment with the given
365363
/// copy index

0 commit comments

Comments
 (0)