mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-25 19:46:55 +08:00
20 lines
329 B
C++
20 lines
329 B
C++
#ifndef _SFEN_PACKER_H_
|
|
#define _SFEN_PACKER_H_
|
|
|
|
#include "types.h"
|
|
|
|
#include "packed_sfen.h"
|
|
|
|
#include <cstdint>
|
|
|
|
class Position;
|
|
struct StateInfo;
|
|
class Thread;
|
|
|
|
namespace Tools {
|
|
|
|
int set_from_packed_sfen(Position& pos, const PackedSfen& sfen, StateInfo* si, Thread* th);
|
|
PackedSfen sfen_pack(Position& pos);
|
|
}
|
|
|
|
#endif |