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.
15 lines
289 B
15 lines
289 B
#include <iostream>
|
|
#include "all_cases.h"
|
|
|
|
int main() {
|
|
|
|
auto a = AllCases();
|
|
|
|
std::cout << "basic range size: " << a.get_basic_ranges()->size() << std::endl;
|
|
|
|
for (const auto &temp : *a.get_all_cases()) {
|
|
std::cout << temp.size() << std::endl;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|