Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ MESSAGE(STATUS "Using CMake ${CMAKE_VERSION}")

SET(BITRL_VERSION_MAJOR 2)
SET(BITRL_VERSION_MINOR 2)
SET(BITRL_VERSION_PATCH 2)
SET(BITRL_VERSION_PATCH 3)

SET(BITRL_VERSION "${BITRL_VERSION_MAJOR}.${BITRL_VERSION_MINOR}.${BITRL_VERSION_PATCH}")
MESSAGE(STATUS "bitrllib Version ${BITRL_VERSION}")
Expand Down
2 changes: 1 addition & 1 deletion src/bitrl/envs/connect2/connect2_env.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "bitrl/envs/connect2/connect2_env.h"
#include "bitrl/envs/time_step.h"
#include "bitrl/utils/utils.h"
#include "bitrl/utils/bitrl_utils.h"

#include <algorithm>
#include <any>
Expand Down
4 changes: 2 additions & 2 deletions src/bitrl/envs/grid_world/grid_world_env.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include "bitrl/envs/env_base.h"
#include "bitrl/envs/space_type.h"
#include "bitrl/envs/time_step.h"
#include "bitrl/utils/utils.h"
#include "bitrl/utils/bitrl_utils.h"

#ifdef BITRL_DEBUG
#include <cassert>
Expand Down Expand Up @@ -469,7 +469,7 @@ void Gridworld<side_size_>::make(const std::string &version,
// set the version and set the board
// to created
this->set_version_(version);
auto idx = utils::uuid4();
auto idx = bitrl::utils::uuid4();
this->set_idx_(idx);
this->base_type::make(version, options, reset_options);
this->make_created_();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "bitrl/bitrl_consts.h"
#include "bitrl/envs/multi_armed_bandits/multi_armed_bandits.h"
#include "bitrl/envs/time_step_type.h"
#include "bitrl/utils/utils.h"
#include "bitrl/utils/bitrl_utils.h"

#include <algorithm>
#include <exception>
Expand Down
6 changes: 3 additions & 3 deletions src/bitrl/utils/utils.h → src/bitrl/utils/bitrl_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
// Created by alex on 12/13/25.
//

#ifndef UTILS_H
#define UTILS_H
#ifndef BITRL_UTILS_H
#define BITRL_UTILS_H

#include <boost/uuid/uuid.hpp>
//#include <boost/uuid/uuid.hpp>
#include <boost/uuid/uuid_generators.hpp>
#include <boost/uuid/uuid_io.hpp>
#include <string>
Expand Down