diff --git a/.idea/vcs.xml b/.idea/vcs.xml index f97570b..2013680 100644 --- a/.idea/vcs.xml +++ b/.idea/vcs.xml @@ -8,6 +8,7 @@ + diff --git a/CMakeLists.txt b/CMakeLists.txt index 4970cc7..8e446c2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.25) -project(image-gp-6 VERSION 0.0.18) +project(image-gp-6 VERSION 0.0.19) include(FetchContent) diff --git a/include/config.h b/include/config.h index 45bee31..5e0646b 100644 --- a/include/config.h +++ b/include/config.h @@ -24,8 +24,8 @@ inline constexpr size_t log2(size_t n) // NOLINT return ((n < 2) ? 1 : 1 + log2(n / 2)); } -//inline const blt::u64 SEED = std::random_device()(); -inline const blt::u64 SEED = 553372510; +inline const blt::u64 SEED = std::random_device()(); +//inline const blt::u64 SEED = 553372510; inline constexpr blt::size_t IMAGE_SIZE = 128; inline constexpr blt::size_t IMAGE_PADDING = 16; inline constexpr blt::size_t POP_SIZE = 64;