i hate this
parent
8641a3aa64
commit
9633f8bb71
|
@ -1,5 +1,5 @@
|
||||||
cmake_minimum_required(VERSION 3.25)
|
cmake_minimum_required(VERSION 3.25)
|
||||||
project(image-gp-6 VERSION 0.0.17)
|
project(image-gp-6 VERSION 0.0.18)
|
||||||
|
|
||||||
include(FetchContent)
|
include(FetchContent)
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,8 @@ inline constexpr size_t log2(size_t n) // NOLINT
|
||||||
return ((n < 2) ? 1 : 1 + log2(n / 2));
|
return ((n < 2) ? 1 : 1 + log2(n / 2));
|
||||||
}
|
}
|
||||||
|
|
||||||
inline const blt::u64 SEED = std::random_device()();
|
//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_SIZE = 128;
|
||||||
inline constexpr blt::size_t IMAGE_PADDING = 16;
|
inline constexpr blt::size_t IMAGE_PADDING = 16;
|
||||||
inline constexpr blt::size_t POP_SIZE = 64;
|
inline constexpr blt::size_t POP_SIZE = 64;
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 3af4676c8342ab3722bc58d8f8b5414ba016aa1d
|
Subproject commit 29521703d31121460750815727d5f8ecde34db25
|
Loading…
Reference in New Issue