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.
19 lines
438 B
19 lines
438 B
#include <iostream>
|
|
//#include "all_cases.h"
|
|
#include "basic_ranges.h"
|
|
|
|
#include <thread>
|
|
|
|
int main() {
|
|
std::thread t1(BasicRanges::build_basic_ranges);
|
|
std::thread t2(BasicRanges::build_basic_ranges);
|
|
std::thread t3(BasicRanges::build_basic_ranges);
|
|
t1.join();
|
|
t2.join();
|
|
t3.join();
|
|
|
|
// BasicRanges::build_basic_ranges();
|
|
std::cout << BasicRanges::get_basic_ranges()->size() << std::endl;
|
|
|
|
return 0;
|
|
}
|
|
|