mirror of https://github.com/dnomd343/klotski.git
Dnomd343
2 years ago
5 changed files with 28 additions and 5 deletions
@ -0,0 +1,9 @@ |
|||||
|
#include <iostream> |
||||
|
#include "raw_code.h" |
||||
|
|
||||
|
void next_step(uint64_t raw_code, uint64_t mask) { |
||||
|
|
||||
|
std::cout << RawCode(raw_code).dump_case(); |
||||
|
printf("mask -> %016lX\n", mask); |
||||
|
|
||||
|
} |
@ -0,0 +1,5 @@ |
|||||
|
#pragma once |
||||
|
|
||||
|
#include <cstdint> |
||||
|
|
||||
|
void next_step(uint64_t raw_code, uint64_t mask); |
Loading…
Reference in new issue