mirror of https://github.com/dnomd343/klotski.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
501 B
20 lines
501 B
#include <iostream>
|
|
|
|
#include "all_cases/all_cases.h"
|
|
|
|
using klotski::cases::BasicRanges;
|
|
|
|
int main() {
|
|
auto start = clock();
|
|
|
|
// std::cout << BasicRanges::Instance().IsAvailable() << std::endl;
|
|
// BasicRanges::Instance().Build();
|
|
// std::cout << BasicRanges::Instance().IsAvailable() << std::endl;
|
|
for (auto x : BasicRanges::Instance().Fetch()) {
|
|
printf("%08X\n", x);
|
|
}
|
|
|
|
std::cerr << ((clock() - start) * 1000 / CLOCKS_PER_SEC) << "ms" << std::endl;
|
|
|
|
return 0;
|
|
}
|
|
|