mirror of https://github.com/dnomd343/klotski.git
Dnomd343
3 months ago
8 changed files with 122 additions and 79 deletions
@ -0,0 +1,27 @@ |
|||
#include <BS_thread_pool.hpp> |
|||
|
|||
#include "codec.h" |
|||
|
|||
void head_parallel(std::function<void(uint64_t head)> &&func) { |
|||
BS::thread_pool pool; |
|||
// TODO: skip invalid head
|
|||
pool.detach_sequence(0, 16, [func = std::move(func)](const uint64_t head) { |
|||
if (head == 3 || head == 7 || head == 11 || head == 15) { |
|||
return; |
|||
} |
|||
func(head); |
|||
}); |
|||
pool.wait(); |
|||
} |
|||
|
|||
std::vector<uint64_t> all_common_codes() { |
|||
// TODO: using `std::ranges`
|
|||
std::vector<uint64_t> common_codes; |
|||
common_codes.reserve(ALL_CASES_NUM_); |
|||
for (uint64_t head = 0; head < 16; ++head) { |
|||
for (auto range : AllCases::instance().fetch()[head]) { |
|||
common_codes.emplace_back(head << 32 | range); |
|||
} |
|||
} |
|||
return common_codes; |
|||
} |
@ -0,0 +1,14 @@ |
|||
#pragma once |
|||
|
|||
#include <functional> |
|||
|
|||
#include "all_cases/all_cases.h" |
|||
|
|||
using klotski::cases::AllCases; |
|||
using klotski::cases::ALL_CASES_NUM_; |
|||
|
|||
/// Build all valid CommonCodes.
|
|||
std::vector<uint64_t> all_common_codes(); |
|||
|
|||
/// Spawn all valid klotski headers in parallel.
|
|||
void head_parallel(std::function<void(uint64_t head)> &&func); |
@ -0,0 +1,36 @@ |
|||
#pragma once |
|||
|
|||
#include <string> |
|||
#include <cstdint> |
|||
|
|||
// ----------------------------------------------------------------------------------------- //
|
|||
|
|||
/// Valid klotski RawCode
|
|||
constexpr uint64_t TEST_R_CODE = 0x0603'EDF5'CAFF'F5E2; |
|||
|
|||
/// Valid klotski ShortCode
|
|||
constexpr uint32_t TEST_S_CODE = 4091296; |
|||
const std::string TEST_S_CODE_STR = "4WVE1"; // TODO: using `std::string_view`
|
|||
#define TEST_S_CODE_STR_RV std::string(TEST_S_CODE_STR) // TODO: remove r-value
|
|||
|
|||
/// Valid klotski CommonCode
|
|||
constexpr uint64_t TEST_C_CODE = 0x1'A9BF'0C00; |
|||
const std::string TEST_C_CODE_STR = "1A9BF0C00"; |
|||
#define TEST_C_CODE_STR_RV std::string(TEST_C_CODE_STR) // TODO: remove r-value
|
|||
|
|||
// ----------------------------------------------------------------------------------------- //
|
|||
|
|||
/// Invalid klotski RawCode
|
|||
constexpr uint64_t TEST_R_CODE_ERR = 0x1603'ED00'CAFF'F5E2; |
|||
|
|||
/// Invalid klotski ShortCode
|
|||
constexpr uint32_t TEST_S_CODE_ERR = 1234564323; |
|||
const std::string TEST_S_CODE_STR_ERR = "ZZZZZZ"; |
|||
#define TEST_S_CODE_STR_ERR_RV std::string(TEST_S_CODE_STR_ERR) // TODO: remove r-value
|
|||
|
|||
/// Invalid klotski CommonCode
|
|||
constexpr uint64_t TEST_C_CODE_ERR = 0x3'A9BF'0C00; |
|||
const static std::string TEST_C_CODE_STR_ERR = "0123456789"; |
|||
#define TEST_C_CODE_STR_ERR_RV std::string(TEST_C_CODE_STR_ERR) // TODO: remove r-value
|
|||
|
|||
// ----------------------------------------------------------------------------------------- //
|
@ -1,54 +0,0 @@ |
|||
#pragma once |
|||
|
|||
#include <string> |
|||
#include <cstdint> |
|||
|
|||
#include "all_cases/all_cases.h" |
|||
|
|||
// ----------------------------------------------------------------------------------------- //
|
|||
|
|||
// Valid RawCode
|
|||
const uint64_t TEST_R_CODE = 0x0603'EDF5'CAFF'F5E2; |
|||
|
|||
// Valid ShortCode
|
|||
const uint32_t TEST_S_CODE = 4091296; |
|||
const std::string TEST_S_CODE_STR = "4WVE1"; |
|||
#define TEST_S_CODE_STR_RV std::string(TEST_S_CODE_STR) // r-value
|
|||
|
|||
// Valid CommonCode
|
|||
const uint64_t TEST_C_CODE = 0x1'A9BF'0C00; |
|||
const std::string TEST_C_CODE_STR = "1A9BF0C00"; |
|||
#define TEST_C_CODE_STR_RV std::string(TEST_C_CODE_STR) // r-value
|
|||
|
|||
// ----------------------------------------------------------------------------------------- //
|
|||
|
|||
// Invalid RawCode
|
|||
const static uint64_t TEST_R_CODE_ERR = 0x1603'ED00'CAFF'F5E2; |
|||
|
|||
// Invalid ShortCode
|
|||
const static uint32_t TEST_S_CODE_ERR = 1234564323; |
|||
const static std::string TEST_S_CODE_STR_ERR = "ZZZZZZ"; |
|||
#define TEST_S_CODE_STR_ERR_RV std::string(TEST_S_CODE_STR_ERR) // r-value
|
|||
|
|||
// Invalid CommonCode
|
|||
const static uint64_t TEST_C_CODE_ERR = 0x3'A9BF'0C00; |
|||
const static std::string TEST_C_CODE_STR_ERR = "0123456789"; |
|||
#define TEST_C_CODE_STR_ERR_RV std::string(TEST_C_CODE_STR_ERR) // r-value
|
|||
|
|||
// ----------------------------------------------------------------------------------------- //
|
|||
|
|||
using klotski::cases::AllCases; |
|||
using klotski::cases::ALL_CASES_NUM_; |
|||
|
|||
inline std::vector<uint64_t> all_common_codes() { |
|||
std::vector<uint64_t> common_codes; |
|||
common_codes.reserve(ALL_CASES_NUM_); |
|||
for (uint64_t head = 0; head < 16; ++head) { |
|||
for (auto range : AllCases::instance().fetch()[head]) { |
|||
common_codes.emplace_back(head << 32 | range); |
|||
} |
|||
} |
|||
return common_codes; |
|||
} |
|||
|
|||
// ----------------------------------------------------------------------------------------- //
|
Loading…
Reference in new issue